From de5b6c96696e6f5f5e54a99ed1f0c49fb9cdd3f7 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 21 Jul 2012 20:22:34 +0530 Subject: [PATCH 01/79] new lib file for Operations and PMA_getHtmlForDatabaseComment function implementation --- db_operations.php | 24 +----------------- libraries/db_operations.lib.php | 44 +++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 23 deletions(-) create mode 100644 libraries/db_operations.lib.php diff --git a/db_operations.php b/db_operations.php index d58a8d2f84..e4834ca14e 100644 --- a/db_operations.php +++ b/db_operations.php @@ -411,29 +411,7 @@ if (!$is_information_schema) { /** * database comment */ - ?> -
-
- -
- - '; - } - echo __('Database comment: '); - ?> - - -
-
- -
-
-
-
diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php new file mode 100644 index 0000000000..fdd774865d --- /dev/null +++ b/libraries/db_operations.lib.php @@ -0,0 +1,44 @@ +' + . '
' + . PMA_generate_common_hidden_inputs($GLOBALS['db']) + . '
' + . ''; + if ($GLOBALS['cfg']['PropertiesIconic']) { + $html_output .= ''; + } + $html_output .= __('Database comment: '); + $html_output .= ''; + $html_output .= '' + . '
'; + $html_output .= '
' + . '' + . '
' + . '
' + . '
'; + + return $html_output; +} + + +?> From 10212275f1af89b8134dea142d8cea0a54064cc4 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 21 Jul 2012 21:16:56 +0530 Subject: [PATCH 02/79] PMA_getHtmlForRenameDatabase function implementation and add missing requirement --- db_operations.php | 38 ++++++--------------------------- libraries/db_operations.lib.php | 38 +++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 31 deletions(-) diff --git a/db_operations.php b/db_operations.php index e4834ca14e..970b24b2ef 100644 --- a/db_operations.php +++ b/db_operations.php @@ -18,6 +18,11 @@ require_once 'libraries/common.inc.php'; require_once 'libraries/mysql_charsets.lib.php'; +/** + * functions implementation for this script + */ +require_once 'libraries/db_operations.lib.php'; + // add a javascript file for jQuery functions to handle Ajax actions $response = PMA_Response::getInstance(); $header = $response->getHeader(); @@ -421,38 +426,9 @@ if (!$is_information_schema) { /** * rename database */ -if ($db != 'mysql') { - ?> -
-
method="post" action="db_operations.php" - onsubmit="return emptyFormElements(this, 'newname')"> - ' . "\n"; + if ($db != 'mysql') { + echo PMA_getHtmlForRenameDatabase(); } - ?> - - - -
- - getImage('b_edit.png'); - } - echo __('Rename database to') . ':'; - ?> - - -
-
- -
-
-
-' + . '
'; + if (isset($_REQUEST['db_collation'])) { + $html_output .= '' . "\n"; + } + $html_output .= '' + . '' + . PMA_generate_common_hidden_inputs($GLOBALS['db']) + . '
' + . ''; + + if ($GLOBALS['cfg']['PropertiesIconic']) { + $html_output .= PMA_CommonFunctions::getInstance()->getImage('b_edit.png'); + } + $html_output .= __('Rename database to') . ':' + . ''; + + $html_output .= '' + . '
' + . '
' + . '' + . '
' + . '
' + . ''; + + return $html_output; +} ?> From 85b8affabf979c0903b02a3ed19baaeb6ba5bd39 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 21 Jul 2012 23:20:39 +0530 Subject: [PATCH 03/79] PMA_getHtmlForDropDatabaseLink function implementation --- db_operations.php | 32 +---------------------- libraries/db_operations.lib.php | 45 +++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 31 deletions(-) diff --git a/db_operations.php b/db_operations.php index 970b24b2ef..53b73a16f6 100644 --- a/db_operations.php +++ b/db_operations.php @@ -437,37 +437,7 @@ if (($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase']) && ! $db_is_information_schema && (PMA_DRIZZLE || $db != 'mysql') ) { -?> -
-
- getImage('b_deltbl.png'); -} -echo __('Remove database'); -?> - -
    -backquote($GLOBALS['db']); - $this_url_params = array( - 'sql_query' => $this_sql_query, - 'back' => 'db_operations.php', - 'goto' => 'main.php', - 'reload' => '1', - 'purge' => '1', - 'message_to_show' => sprintf(__('Database %s has been dropped.'), htmlspecialchars($common_functions->backquote($db))), - 'db' => null, - ); - ?> -
  • > - - showMySQLDocu('SQL-Syntax', 'DROP_DATABASE'); ?> -
  • -
-
-
-backquote($GLOBALS['db']); + $this_url_params = array( + 'sql_query' => $this_sql_query, + 'back' => 'db_operations.php', + 'goto' => 'main.php', + 'reload' => '1', + 'purge' => '1', + 'message_to_show' => sprintf( + __('Database %s has been dropped.') + , htmlspecialchars($common_functions->backquote($GLOBALS['db'])) + ), + 'db' => null, + ); + + $html_output = '
' + . '
'; + $html_output .= ''; + if ($GLOBALS['cfg']['PropertiesIconic']) { + $html_output .= $common_functions->getImage('b_deltbl.png'); + } + $html_output .= __('Remove database') + . ''; + $html_output .= '
' + . '
'; + + return $html_output; +} + ?> From 5e4a8d4d672a856f768c55189fb8fb1e3263da42 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 21 Jul 2012 23:23:31 +0530 Subject: [PATCH 04/79] remove echo --- db_operations.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db_operations.php b/db_operations.php index 53b73a16f6..2683a9c864 100644 --- a/db_operations.php +++ b/db_operations.php @@ -416,7 +416,7 @@ if (!$is_information_schema) { /** * database comment */ - echo PMA_getHtmlForDatabaseComment(); + $response->addHTML(PMA_getHtmlForDatabaseComment()); } ?>
@@ -427,7 +427,7 @@ if (!$is_information_schema) { * rename database */ if ($db != 'mysql') { - echo PMA_getHtmlForRenameDatabase(); + $response->addHTML(PMA_getHtmlForRenameDatabase()); } // Drop link if allowed @@ -437,7 +437,7 @@ if (($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase']) && ! $db_is_information_schema && (PMA_DRIZZLE || $db != 'mysql') ) { - echo PMA_getHtmlForDropDatabaseLink(); + $response->addHTML(PMA_getHtmlForDropDatabaseLink()); } /** * Copy database From bf3c8899e4bdcff604ebd002094efe7ad4f39df1 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sun, 22 Jul 2012 20:35:22 +0530 Subject: [PATCH 05/79] Typo --- libraries/db_operations.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 200ff8d400..19af19cb5a 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -19,7 +19,7 @@ if (! defined('PHPMYADMIN')) { function PMA_getHtmlForDatabaseComment() { $html_output = '
' - . '
' + . '' . PMA_generate_common_hidden_inputs($GLOBALS['db']) . '
' . ''; From a80dfa751a99c9e5c346603df0f451c9d1034d8d Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Mon, 23 Jul 2012 05:16:28 +0530 Subject: [PATCH 06/79] PMA_getHtmlForCopyDatabase funtion implementation and remove addHtml usgae for testing, --- db_operations.php | 78 ++------------------------------ libraries/db_operations.lib.php | 80 +++++++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+), 74 deletions(-) diff --git a/db_operations.php b/db_operations.php index 2683a9c864..50f9160970 100644 --- a/db_operations.php +++ b/db_operations.php @@ -416,7 +416,7 @@ if (!$is_information_schema) { /** * database comment */ - $response->addHTML(PMA_getHtmlForDatabaseComment()); + echo PMA_getHtmlForDatabaseComment(); } ?>
@@ -427,7 +427,7 @@ if (!$is_information_schema) { * rename database */ if ($db != 'mysql') { - $response->addHTML(PMA_getHtmlForRenameDatabase()); + echo PMA_getHtmlForRenameDatabase(); } // Drop link if allowed @@ -437,82 +437,12 @@ if (($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase']) && ! $db_is_information_schema && (PMA_DRIZZLE || $db != 'mysql') ) { - $response->addHTML(PMA_getHtmlForDropDatabaseLink()); + echo PMA_getHtmlForDropDatabaseLink(); } /** * Copy database */ -?> -
- method="post" action="db_operations.php" - onsubmit="return emptyFormElements(this, 'newname')"> - ' . "\n"; - } - echo '' . "\n"; - echo PMA_generate_common_hidden_inputs($db); - ?> -
- - getImage('b_edit.png'); - } - echo __('Copy database to') . ':'; - $drop_clause = 'DROP TABLE / DROP VIEW'; - ?> - -
- __('Structure only'), - 'data' => __('Structure and data'), - 'dataonly' => __('Data only')); - echo $common_functions->getRadioFields( - 'what', $choices, 'data', true - ); - unset($choices); -?> - -
- -
- -
- -
- - - /> - -
-
- -
- -
- __('Structure only'), + 'data' => __('Structure and data'), + 'dataonly' => __('Data only') + ); + + if (isset($_COOKIE) + && isset($_COOKIE['pma_switch_to_new']) + && $_COOKIE['pma_switch_to_new'] == 'true' + ) { + $pma_switch_to_new = 'true'; + } + + $html_output = '
'; + $html_output .= '
'; + + if (isset($_REQUEST['db_collation'])) { + $html_output .= '' . "\n"; + } + $html_output .= '' . "\n" + . PMA_generate_common_hidden_inputs($GLOBALS['db']); + $html_output .= '
' + . ''; + + if ($GLOBALS['cfg']['PropertiesIconic']) { + $html_output .= PMA_CommonFunctions::getInstance()->getImage('b_edit.png'); + } + $html_output .= __('Copy database to') . ':' + . '' + . '
' + . PMA_CommonFunctions::getInstance()->getRadioFields( + 'what', $choices, 'data', true + ); + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '' + . '
'; + $html_output .= '
' + . '' + . '
' + . '
' + . '
'; + + return $html_output; +} ?> From c7ee4b3ccd273964319dbd4b6f4477a002e1ac11 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Mon, 23 Jul 2012 06:01:47 +0530 Subject: [PATCH 07/79] PMA_getHtmlForChangeDatabaseCharset function implementation --- db_operations.php | 50 +++++++++------------------------ libraries/db_operations.lib.php | 38 +++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 36 deletions(-) diff --git a/db_operations.php b/db_operations.php index 50f9160970..7d545cb5c4 100644 --- a/db_operations.php +++ b/db_operations.php @@ -430,46 +430,24 @@ if (!$is_information_schema) { echo PMA_getHtmlForRenameDatabase(); } -// Drop link if allowed -// Don't even try to drop information_schema. You won't be able to. Believe me. You won't. -// Don't allow to easily drop mysql database, RFE #1327514. -if (($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase']) - && ! $db_is_information_schema - && (PMA_DRIZZLE || $db != 'mysql') -) { - echo PMA_getHtmlForDropDatabaseLink(); -} -/** - * Copy database - */ -echo PMA_getHtmlForCopyDatabase(); + // Drop link if allowed + // Don't even try to drop information_schema. You won't be able to. Believe me. You won't. + // Don't allow to easily drop mysql database, RFE #1327514. + if (($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase']) + && ! $db_is_information_schema + && (PMA_DRIZZLE || $db != 'mysql') + ) { + echo PMA_getHtmlForDropDatabaseLink(); + } + /** + * Copy database + */ + echo PMA_getHtmlForCopyDatabase(); /** * Change database charset */ - echo '
' - . PMA_generate_common_hidden_inputs($db, $table) - . '
' . "\n" - . ' '; - if ($cfg['PropertiesIconic']) { - echo $common_functions->getImage('s_asci.png'); - } - echo ' ' . "\n" - . ' ' . "\n" - . PMA_generateCharsetDropdownBox( - PMA_CSDROPDOWN_COLLATION, 'db_collation', - 'select_db_collation', $db_collation, false, 3 - ) - . '
' - . '
' - . ' ' . "\n" - . '
' . "\n" - . '
' . "\n"; + echo PMA_getHtmlForChangeDatabaseCharset(); if ($num_tables > 0 && ! $cfgRelation['allworks'] diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index ca7332283c..922a7f2472 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -204,4 +204,42 @@ function PMA_getHtmlForCopyDatabase() return $html_output; } + +/** + * Get HTML snippet for change database charset + * + * @return string $html_output + */ +function PMA_getHtmlForChangeDatabaseCharset() +{ + $html_output = '
'; + if ($GLOBALS['cfg']['PropertiesIconic']) { + $html_output .= PMA_CommonFunctions::getInstance()->getImage('s_asci.png'); + } + $html_output .= '' . "\n" + . '' . "\n" + . PMA_generateCharsetDropdownBox( + PMA_CSDROPDOWN_COLLATION, 'db_collation', + 'select_db_collation', + (isset ($_REQUEST['db_collation']) ? $_REQUEST['db_collation'] : ''), + false, 3 + ) + . '
' + . '
' + . '' . "\n" + . '
' . "\n" + . '
' . "\n"; + + return $html_output; +} ?> From a90c3b982262e92868a811e418d98662890ed6ae Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Mon, 23 Jul 2012 08:07:04 +0530 Subject: [PATCH 08/79] PMA_getHtmlForExportRelationalSchemaView function implementation and formating --- db_operations.php | 21 +++++++++------------ libraries/db_operations.lib.php | 21 +++++++++++++++++++++ 2 files changed, 30 insertions(+), 12 deletions(-) diff --git a/db_operations.php b/db_operations.php index 7d545cb5c4..8364c6aaa3 100644 --- a/db_operations.php +++ b/db_operations.php @@ -453,8 +453,13 @@ if (!$is_information_schema) { && ! $cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false ) { - $message = PMA_Message::notice(__('The phpMyAdmin configuration storage has been deactivated. To find out why click %shere%s.')); - $message->addParam('', false); + $message = PMA_Message::notice( + __('The phpMyAdmin configuration storage has been deactivated. To find out why click %shere%s.') + ); + $message->addParam( + '', + false + ); $message->addParam('', false); /* Show error if user has configured something, notice elsewhere */ if (!empty($cfg['Servers'][$server]['pmadb'])) { @@ -468,12 +473,8 @@ if (!$is_information_schema) { // not sure about displaying the PDF dialog in case db is information_schema -if ($cfgRelation['pdfwork'] && $num_tables > 0) { ?> - - - 0) { // We only show this if we find something in the new pdf_pages table - $test_query = ' SELECT * FROM ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) @@ -484,11 +485,7 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) { ?> /* * Export Relational Schema View */ - echo ''; + echo PMA_getHtmlForExportRelationalSchemaView($url_query); } // end if ?> diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 922a7f2472..e397bf1ab8 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -242,4 +242,25 @@ function PMA_getHtmlForChangeDatabaseCharset() return $html_output; } + +/** + * Get HTML snippet for export relational schema view + * + * @param string $url_query + * + * @return string $html_output + */ +function PMA_getHtmlForExportRelationalSchemaView($url_query) +{ + $html_output = ''; + + return $html_output; +} ?> From 7645aa7d3407e715ceccc7437cf5c1b16f0e97c0 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Mon, 23 Jul 2012 21:30:37 +0530 Subject: [PATCH 09/79] PMA_runProcedureAndFunctionDefinitions function implementation --- db_operations.php | 24 +--------------------- libraries/db_operations.lib.php | 36 +++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 23 deletions(-) diff --git a/db_operations.php b/db_operations.php index 8364c6aaa3..113685ed76 100644 --- a/db_operations.php +++ b/db_operations.php @@ -108,29 +108,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { // to avoid selecting alternatively the current and new db // we would need to modify the CREATE definitions to qualify // the db name - $procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE'); - if ($procedure_names) { - foreach ($procedure_names as $procedure_name) { - PMA_DBI_select_db($db); - $tmp_query = PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name); - // collect for later display - $GLOBALS['sql_query'] .= "\n" . $tmp_query; - PMA_DBI_select_db($newname); - PMA_DBI_query($tmp_query); - } - } - - $function_names = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION'); - if ($function_names) { - foreach ($function_names as $function_name) { - PMA_DBI_select_db($db); - $tmp_query = PMA_DBI_get_definition($db, 'FUNCTION', $function_name); - // collect for later display - $GLOBALS['sql_query'] .= "\n" . $tmp_query; - PMA_DBI_select_db($newname); - PMA_DBI_query($tmp_query); - } - } + PMA_runProcedureAndFunctionDefinitions(); // go back to current db, just in case PMA_DBI_select_db($db); diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index e397bf1ab8..0b504dfe9b 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -263,4 +263,40 @@ function PMA_getHtmlForExportRelationalSchemaView($url_query) return $html_output; } + +/** + * Run the Procedure definitions and function definitions + * + * to avoid selecting alternatively the current and new db + * we would need to modify the CREATE definitions to qualify + * the db name + */ +function PMA_runProcedureAndFunctionDefinitions() +{ + $procedure_names = PMA_DBI_get_procedures_or_functions($GLOBALS['db'], 'PROCEDURE'); + if ($procedure_names) { + foreach ($procedure_names as $procedure_name) { + PMA_DBI_select_db($GLOBALS['db']); + $tmp_query = PMA_DBI_get_definition($GLOBALS['db'], 'PROCEDURE', $procedure_name); + // collect for later display + $GLOBALS['sql_query'] .= "\n" . $tmp_query; + PMA_DBI_select_db($_REQUEST['newname']); + PMA_DBI_query($tmp_query); + } + } + + $function_names = PMA_DBI_get_procedures_or_functions($GLOBALS['db'], 'FUNCTION'); + if ($function_names) { + foreach ($function_names as $function_name) { + PMA_DBI_select_db($GLOBALS['db']); + $tmp_query = PMA_DBI_get_definition($GLOBALS['db'], 'FUNCTION', $function_name); + // collect for later display + $GLOBALS['sql_query'] .= "\n" . $tmp_query; + PMA_DBI_select_db($_REQUEST['newname']); + PMA_DBI_query($tmp_query); + } + } +} + + ?> From db13811b313593b2134d14379e64f84376132486 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Mon, 23 Jul 2012 22:17:05 +0530 Subject: [PATCH 10/79] PMA_getSqlQueryAndCreateDbBeforeCopy function implementation --- db_operations.php | 28 +----------------------- libraries/db_operations.lib.php | 38 +++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 27 deletions(-) diff --git a/db_operations.php b/db_operations.php index 113685ed76..01fb787211 100644 --- a/db_operations.php +++ b/db_operations.php @@ -73,33 +73,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { || (isset($create_database_before_copying) && $create_database_before_copying) ) { - // lower_case_table_names=1 `DB` becomes `db` - if (! PMA_DRIZZLE) { - $lower_case_table_names = PMA_DBI_fetch_value( - 'SHOW VARIABLES LIKE "lower_case_table_names"', 0, 1 - ); - if ($lower_case_table_names === '1') { - $newname = PMA_strtolower($newname); - } - } - - $local_query = 'CREATE DATABASE ' . $common_functions->backquote($newname); - if (isset($db_collation)) { - $local_query .= ' DEFAULT' . PMA_generateCharsetQueryPart($db_collation); - } - $local_query .= ';'; - $sql_query = $local_query; - // save the original db name because Tracker.class.php which - // may be called under PMA_DBI_query() changes $GLOBALS['db'] - // for some statements, one of which being CREATE DATABASE - $original_db = $db; - PMA_DBI_query($local_query); - $db = $original_db; - unset($original_db); - - // rebuild the database list because PMA_Table::moveCopy - // checks in this list if the target db exists - $GLOBALS['pma']->databases->build(); + $sql_query = PMA_getSqlQueryAndCreateDbBeforeCopy(); } // here I don't use DELIMITER because it's not part of the diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 0b504dfe9b..80a71015ac 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -298,5 +298,43 @@ function PMA_runProcedureAndFunctionDefinitions() } } +/** + * Get sql query and create database before copy + * + * @return string $sql_query + */ +function PMA_getSqlQueryAndCreateDbBeforeCopy() +{ + // lower_case_table_names=1 `DB` becomes `db` + if (! PMA_DRIZZLE) { + $lower_case_table_names = PMA_DBI_fetch_value( + 'SHOW VARIABLES LIKE "lower_case_table_names"', 0, 1 + ); + if ($lower_case_table_names === '1') { + $_REQUEST['newname'] = PMA_strtolower($_REQUEST['newname']); + } + } + + $local_query = 'CREATE DATABASE ' + . PMA_CommonFunctions::getInstance()->backquote($_REQUEST['newname']); + if (isset($_REQUEST['db_collation'])) { + $local_query .= ' DEFAULT' + . PMA_generateCharsetQueryPart($_REQUEST['db_collation']); + } + $local_query .= ';'; + $sql_query = $local_query; + // save the original db name because Tracker.class.php which + // may be called under PMA_DBI_query() changes $GLOBALS['db'] + // for some statements, one of which being CREATE DATABASE + $original_db = $GLOBALS['db']; + PMA_DBI_query($local_query); + $GLOBALS['db'] = $original_db; + + // rebuild the database list because PMA_Table::moveCopy + // checks in this list if the target db exists + $GLOBALS['pma']->databases->build(); + + return $sql_query; +} ?> From ef43e97eca8b751edd4628d38c0e923fd59855a3 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Tue, 24 Jul 2012 00:40:32 +0530 Subject: [PATCH 11/79] function for remove all foreign key constraints --- db_operations.php | 16 +--------------- libraries/db_operations.lib.php | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 15 deletions(-) diff --git a/db_operations.php b/db_operations.php index 01fb787211..afe97430bb 100644 --- a/db_operations.php +++ b/db_operations.php @@ -103,21 +103,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { 'single_table' => isset($single_table) ) ); - foreach ($tables_full as $each_table => $tmp) { - $sql_constraints = ''; - $sql_drop_foreign_keys = ''; - $sql_structure = $export_sql_plugin->getTableDef( - $db, $each_table, "\n", '', false, false - ); - if ($move && ! empty($sql_drop_foreign_keys)) { - PMA_DBI_query($sql_drop_foreign_keys); - } - // keep the constraint we just dropped - if (! empty($sql_constraints)) { - $GLOBALS['sql_constraints_query_full_db'][] = $sql_constraints; - } - } - unset($sql_constraints, $sql_drop_foreign_keys, $sql_structure); + PMA_removeAllForeignKeyConstraints($tables_full, $export_sql_plugin, $move); foreach ($tables_full as $each_table => $tmp) { // to be able to rename a db containing views, diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 80a71015ac..3fe8741642 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -337,4 +337,28 @@ function PMA_getSqlQueryAndCreateDbBeforeCopy() return $sql_query; } +/** + * remove all foreign key constraints + * + * @param array $tables_full array of all tables in given db or dbs + * @param instance $export_sql_plugin export plugin instance + * @param boolean $move whether databse name is empty or not + */ +function PMA_removeAllForeignKeyConstraints($tables_full, $export_sql_plugin, $move) +{ + foreach ($tables_full as $each_table => $tmp) { + $sql_constraints = ''; + $sql_drop_foreign_keys = ''; + $sql_structure = $export_sql_plugin->getTableDef( + $GLOBALS['db'], $each_table, "\n", '', false, false + ); + if ($move && ! empty($sql_drop_foreign_keys)) { + PMA_DBI_query($sql_drop_foreign_keys); + } + // keep the constraint we just dropped + if (! empty($sql_constraints)) { + $GLOBALS['sql_constraints_query_full_db'][] = $sql_constraints; + } + } +} ?> From 6a5f4895390b1dd2b497fa64e69f560e02117181 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Tue, 24 Jul 2012 01:30:31 +0530 Subject: [PATCH 12/79] implementation of PMA_getViewsAndCreateSqlViewStandIn() function --- db_operations.php | 17 +---------------- libraries/db_operations.lib.php | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 16 deletions(-) diff --git a/db_operations.php b/db_operations.php index afe97430bb..8677fb5b75 100644 --- a/db_operations.php +++ b/db_operations.php @@ -90,7 +90,6 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { $GLOBALS['sql_constraints_query_full_db'] = array(); $tables_full = PMA_DBI_get_tables_full($db); - $views = array(); require_once "libraries/plugin_interface.lib.php"; // remove all foreign key constraints, otherwise we can get errors @@ -105,21 +104,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { ); PMA_removeAllForeignKeyConstraints($tables_full, $export_sql_plugin, $move); - foreach ($tables_full as $each_table => $tmp) { - // to be able to rename a db containing views, - // first all the views are collected and a stand-in is created - // the real views are created after the tables - if (PMA_Table::isView($db, $each_table)) { - $views[] = $each_table; - // Create stand-in definition to resolve view dependencies - $sql_view_standin = $export_sql_plugin->getTableDefStandIn( - $db, $each_table, "\n" - ); - PMA_DBI_select_db($newname); - PMA_DBI_query($sql_view_standin); - $GLOBALS['sql_query'] .= "\n" . $sql_view_standin; - } - } + $views = PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin); foreach ($tables_full as $each_table => $tmp) { // skip the views; we have creted stand-in definitions diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 3fe8741642..51e07aac3f 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -361,4 +361,33 @@ function PMA_removeAllForeignKeyConstraints($tables_full, $export_sql_plugin, $m } } } + +/** + * Get views as an array and create SQL view stand-in + * + * @param array $tables_full array of all tables in given db or dbs + * @param instance $export_sql_plugin export plugin instance + * + * @return array $views + */ +function PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin) +{ + $views = array(); + foreach ($tables_full as $each_table => $tmp) { + // to be able to rename a db containing views, + // first all the views are collected and a stand-in is created + // the real views are created after the tables + if (PMA_Table::isView($GLOBALS['db'], $each_table)) { + $views[] = $each_table; + // Create stand-in definition to resolve view dependencies + $sql_view_standin = $export_sql_plugin->getTableDefStandIn( + $GLOBALS['db'], $each_table, "\n" + ); + PMA_DBI_select_db($_REQUEST['newname']); + PMA_DBI_query($sql_view_standin); + $GLOBALS['sql_query'] .= "\n" . $sql_view_standin; + } + } + return $views; +} ?> From 769f5a9bf999542e1867f5a7eafe02ec13ec3589 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Tue, 24 Jul 2012 23:53:28 +0530 Subject: [PATCH 13/79] change PMA_removeAllForeignKeyConstraints() function signature and improve --- db_operations.php | 7 ++++--- libraries/db_operations.lib.php | 8 +++++--- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/db_operations.php b/db_operations.php index 8677fb5b75..b81a7ecbaa 100644 --- a/db_operations.php +++ b/db_operations.php @@ -87,8 +87,6 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { // go back to current db, just in case PMA_DBI_select_db($db); - $GLOBALS['sql_constraints_query_full_db'] = array(); - $tables_full = PMA_DBI_get_tables_full($db); require_once "libraries/plugin_interface.lib.php"; @@ -102,7 +100,10 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { 'single_table' => isset($single_table) ) ); - PMA_removeAllForeignKeyConstraints($tables_full, $export_sql_plugin, $move); + $GLOBALS['sql_constraints_query_full_db'] = + PMA_getSqlConstraintsQueryForFullDb( + $tables_full, $export_sql_plugin, $move + ); $views = PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin); diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 51e07aac3f..382a8748bd 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -338,14 +338,15 @@ function PMA_getSqlQueryAndCreateDbBeforeCopy() } /** - * remove all foreign key constraints + * remove all foreign key constraints and return sql constraints query for full database * * @param array $tables_full array of all tables in given db or dbs * @param instance $export_sql_plugin export plugin instance * @param boolean $move whether databse name is empty or not */ -function PMA_removeAllForeignKeyConstraints($tables_full, $export_sql_plugin, $move) +function PMA_getSqlConstraintsQueryForFullDb($tables_full, $export_sql_plugin, $move) { + $sql_constraints_query_full_db = array(); foreach ($tables_full as $each_table => $tmp) { $sql_constraints = ''; $sql_drop_foreign_keys = ''; @@ -357,9 +358,10 @@ function PMA_removeAllForeignKeyConstraints($tables_full, $export_sql_plugin, $m } // keep the constraint we just dropped if (! empty($sql_constraints)) { - $GLOBALS['sql_constraints_query_full_db'][] = $sql_constraints; + $sql_constraints_query_full_db[] = $sql_constraints; } } + return $sql_constraints_query_full_db; } /** From 1b7860150a7911bef877f9c62efa778452cc4b99 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Wed, 25 Jul 2012 01:42:18 +0530 Subject: [PATCH 14/79] PMA_getSqlQueryForCopyTable() function implementation --- db_operations.php | 68 +++--------------------------- libraries/db_operations.lib.php | 74 +++++++++++++++++++++++++++++++++ 2 files changed, 80 insertions(+), 62 deletions(-) diff --git a/db_operations.php b/db_operations.php index b81a7ecbaa..40b76dd79f 100644 --- a/db_operations.php +++ b/db_operations.php @@ -105,69 +105,13 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { $tables_full, $export_sql_plugin, $move ); - $views = PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin); + $views = PMA_getViewsAndCreateSqlViewStandIn( + $tables_full, $export_sql_plugin + ); - foreach ($tables_full as $each_table => $tmp) { - // skip the views; we have creted stand-in definitions - if (PMA_Table::isView($db, $each_table)) { - continue; - } - $back = $sql_query; - $sql_query = ''; - - // value of $what for this table only - $this_what = $what; - - // do not copy the data from a Merge table - // note: on the calling FORM, 'data' means 'structure and data' - if (PMA_Table::isMerge($db, $each_table)) { - if ($this_what == 'data') { - $this_what = 'structure'; - } - if ($this_what == 'dataonly') { - $this_what = 'nocopy'; - } - } - - if ($this_what != 'nocopy') { - // keep the triggers from the original db+table - // (third param is empty because delimiters are only intended - // for importing via the mysql client or our Import feature) - $triggers = PMA_DBI_get_triggers($db, $each_table, ''); - - if (! PMA_Table::moveCopy( - $db, $each_table, $newname, $each_table, - isset($this_what) ? $this_what : 'data', - $move, 'db_copy' - )) { - $_error = true; - // $sql_query is filled by PMA_Table::moveCopy() - $sql_query = $back . $sql_query; - break; - } - // apply the triggers to the destination db+table - if ($triggers) { - PMA_DBI_select_db($newname); - foreach ($triggers as $trigger) { - PMA_DBI_query($trigger['create']); - $GLOBALS['sql_query'] .= "\n" . $trigger['create'] . ';'; - } - unset($trigger); - } - unset($triggers); - - // this does not apply to a rename operation - if (isset($GLOBALS['add_constraints']) - && ! empty($GLOBALS['sql_constraints_query']) - ) { - $GLOBALS['sql_constraints_query_full_db'][] = $GLOBALS['sql_constraints_query']; - unset($GLOBALS['sql_constraints_query']); - } - } - // $sql_query is filled by PMA_Table::moveCopy() - $sql_query = $back . $sql_query; - } // end (foreach) - unset($each_table); + list($sql_query, $_error) = PMA_getSqlQueryForCopyTable( + $tables_full, $sql_query, $move + ); // handle the views if (! $_error) { diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 382a8748bd..3f91398d7f 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -392,4 +392,78 @@ function PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin) } return $views; } + +/** + * Get sql query for copy/rename table and boolean for whether copy/rename or not + * + * @param array $tables_full array of all tables in given db or dbs + * @param string $sql_query sql query for all operations + * @param boolean $move whether databse name is empty or not + * + * @return array ($sql_query, $error) + */ +function PMA_getSqlQueryForCopyTable($tables_full, $sql_query, $move) +{ + $error = false; + foreach ($tables_full as $each_table => $tmp) { + // skip the views; we have creted stand-in definitions + if (PMA_Table::isView($GLOBALS['db'], $each_table)) { + continue; + } + $back = $sql_query; + $sql_query = ''; + + // value of $what for this table only + $this_what = $_REQUEST['what']; + + // do not copy the data from a Merge table + // note: on the calling FORM, 'data' means 'structure and data' + if (PMA_Table::isMerge($GLOBALS['db'], $each_table)) { + if ($this_what == 'data') { + $this_what = 'structure'; + } + if ($this_what == 'dataonly') { + $this_what = 'nocopy'; + } + } + + if ($this_what != 'nocopy') { + // keep the triggers from the original db+table + // (third param is empty because delimiters are only intended + // for importing via the mysql client or our Import feature) + $triggers = PMA_DBI_get_triggers($GLOBALS['db'], $each_table, ''); + + if (! PMA_Table::moveCopy( + $GLOBALS['db'], $each_table, $_REQUEST['newname'], $each_table, + isset($this_what) ? $this_what : 'data', + $move, 'db_copy' + )) { + $error = true; + // $sql_query is filled by PMA_Table::moveCopy() + $sql_query = $back . $sql_query; + break; + } + // apply the triggers to the destination db+table + if ($triggers) { + PMA_DBI_select_db($_REQUEST['newname']); + foreach ($triggers as $trigger) { + PMA_DBI_query($trigger['create']); + $GLOBALS['sql_query'] .= "\n" . $trigger['create'] . ';'; + } + } + + // this does not apply to a rename operation + if (isset($GLOBALS['add_constraints']) + && ! empty($GLOBALS['sql_constraints_query']) + ) { + $GLOBALS['sql_constraints_query_full_db'][] + = $GLOBALS['sql_constraints_query']; + unset($GLOBALS['sql_constraints_query']); + } + } + // $sql_query is filled by PMA_Table::moveCopy() + $sql_query = $back . $sql_query; + } + return array($sql_query, $error); +} ?> From e8f1dacb4d57a434be0f2277397f97a9a82b56b4 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Wed, 25 Jul 2012 02:40:43 +0530 Subject: [PATCH 15/79] PMA_runEventDefinitionsForDb() function implementation --- db_operations.php | 18 +----------------- libraries/db_operations.lib.php | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 17 deletions(-) diff --git a/db_operations.php b/db_operations.php index 40b76dd79f..a1cbe62290 100644 --- a/db_operations.php +++ b/db_operations.php @@ -153,23 +153,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { // here DELIMITER is not used because it's not part of the // language; each statement is sent one by one - // to avoid selecting alternatively the current and new db - // we would need to modify the CREATE definitions to qualify - // the db name - $event_names = PMA_DBI_fetch_result( - 'SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' - . $common_functions->sqlAddSlashes($db, true) . '\';' - ); - if ($event_names) { - foreach ($event_names as $event_name) { - PMA_DBI_select_db($db); - $tmp_query = PMA_DBI_get_definition($db, 'EVENT', $event_name); - // collect for later display - $GLOBALS['sql_query'] .= "\n" . $tmp_query; - PMA_DBI_select_db($newname); - PMA_DBI_query($tmp_query); - } - } + PMA_runEventDefinitionsForDb(); } // go back to current db, just in case diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 3f91398d7f..37cc045ff1 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -466,4 +466,30 @@ function PMA_getSqlQueryForCopyTable($tables_full, $sql_query, $move) } return array($sql_query, $error); } + +/** + * Run the EVENT definition for selected database + * + * to avoid selecting alternatively the current and new db + * we would need to modify the CREATE definitions to qualify + * the db name + */ +function PMA_runEventDefinitionsForDb() +{ + $event_names = PMA_DBI_fetch_result( + 'SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' + . $common_functions->sqlAddSlashes($GLOBALS['db'], true) . '\';' + ); + if ($event_names) { + foreach ($event_names as $event_name) { + PMA_DBI_select_db($GLOBALS['db']); + $tmp_query = PMA_DBI_get_definition($GLOBALS['db'], 'EVENT', $event_name); + // collect for later display + $GLOBALS['sql_query'] .= "\n" . $tmp_query; + PMA_DBI_select_db($_REQUEST['newname']); + PMA_DBI_query($tmp_query); + } + } +} + ?> From 2e1d1474115313bce9bde0ae455032ebf2241589 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Wed, 25 Jul 2012 11:27:14 +0100 Subject: [PATCH 16/79] Autoselect username input on cookie login page --- ChangeLog | 1 + js/functions.js | 1 + 2 files changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7f30c2356d..f3e77b5369 100644 --- a/ChangeLog +++ b/ChangeLog @@ -43,6 +43,7 @@ VerboseMultiSubmit, ReplaceHelpImg + Add Ajax support to Fast filter in order to search the term in all database tables - bug #3535015 [navi] DbFilter, TableFilter clear button hidden on Chrome + rfe #3528994 [interface] Allow wrapping possibly long values in replication-status table ++ [interface] Autoselect username input on cookie login page 3.5.3.0 (not yet released) - bug #3539044 [interface] Browse mode "Show" button gives blank page if no results anymore diff --git a/js/functions.js b/js/functions.js index b6195c13bf..cb84e9afc7 100644 --- a/js/functions.js +++ b/js/functions.js @@ -3868,4 +3868,5 @@ $(function () { */ $(function () { $('.js-show').show(); + $('#loginform #input_username').select(); }); From d3c06829e800bd11ee46ddc069ee4da54d48f960 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Wed, 25 Jul 2012 13:04:27 +0100 Subject: [PATCH 17/79] Speed up selectors --- js/functions.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/functions.js b/js/functions.js index cb84e9afc7..321ba71832 100644 --- a/js/functions.js +++ b/js/functions.js @@ -3867,6 +3867,7 @@ $(function () { * Reveal the login form to users with JS enabled */ $(function () { - $('.js-show').show(); - $('#loginform #input_username').select(); + var $loginform = $('#loginform'); + $loginform.find('.js-show').show(); + $loginform.find('#input_username').select(); }); From b2b394f583ce5a0623bd2e7d455dadba78058f4c Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Thu, 26 Jul 2012 00:06:30 +0530 Subject: [PATCH 18/79] implementation of PMA_handleTheViews() --- db_operations.php | 22 ++------------------- libraries/db_operations.lib.php | 34 +++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 20 deletions(-) diff --git a/db_operations.php b/db_operations.php index a1cbe62290..cfadb6fb98 100644 --- a/db_operations.php +++ b/db_operations.php @@ -115,27 +115,9 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { // handle the views if (! $_error) { - // temporarily force to add DROP IF EXIST to CREATE VIEW query, - // to remove stand-in VIEW that was created earlier - if (isset($GLOBALS['drop_if_exists'])) { - $temp_drop_if_exists = $GLOBALS['drop_if_exists']; - } - $GLOBALS['drop_if_exists'] = 'true'; - - foreach ($views as $view) { - if (! PMA_Table::moveCopy($db, $view, $newname, $view, 'structure', $move, 'db_copy')) { - $_error = true; - break; - } - } - unset($GLOBALS['drop_if_exists']); - if (isset($temp_drop_if_exists)) { - // restore previous value - $GLOBALS['drop_if_exists'] = $temp_drop_if_exists; - unset($temp_drop_if_exists); - } + $_error = PMA_handleTheViews($views, $move); } - unset($view, $views); + unset($views); // now that all tables exist, create all the accumulated constraints if (! $_error && count($GLOBALS['sql_constraints_query_full_db']) > 0) { diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 37cc045ff1..27bb648108 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -492,4 +492,38 @@ function PMA_runEventDefinitionsForDb() } } +/** + * Handle the views, return the boolean value whether table rename/copy or not + * + * @param array $views views as an array + * @param boolean $move whether databse name is empty or not + * + * @return boolean $_error whether table rename/copy or not + */ +function PMA_handleTheViews($views, $move) +{ + $_error = false; + // temporarily force to add DROP IF EXIST to CREATE VIEW query, + // to remove stand-in VIEW that was created earlier + if (isset($GLOBALS['drop_if_exists'])) { + $temp_drop_if_exists = $GLOBALS['drop_if_exists']; + } + $GLOBALS['drop_if_exists'] = 'true'; + + foreach ($views as $view) { + if (! PMA_Table::moveCopy($GLOBALS['db'], $view, $_REQUEST['newname'], + $view, 'structure', $move, 'db_copy') + ) { + $_error = true; + break; + } + } + unset($GLOBALS['drop_if_exists']); + if (isset($temp_drop_if_exists)) { + // restore previous value + $GLOBALS['drop_if_exists'] = $temp_drop_if_exists; + } + return $_error; +} + ?> From a9070c633e1f09fae8fe0514a46346d8472fbb26 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Thu, 26 Jul 2012 00:49:56 +0530 Subject: [PATCH 19/79] implementation of PMA_createAllAccumulatedConstraints() --- db_operations.php | 9 +-------- libraries/db_operations.lib.php | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/db_operations.php b/db_operations.php index cfadb6fb98..51e9729716 100644 --- a/db_operations.php +++ b/db_operations.php @@ -121,14 +121,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { // now that all tables exist, create all the accumulated constraints if (! $_error && count($GLOBALS['sql_constraints_query_full_db']) > 0) { - PMA_DBI_select_db($newname); - foreach ($GLOBALS['sql_constraints_query_full_db'] as $one_query) { - PMA_DBI_query($one_query); - // and prepare to display them - $GLOBALS['sql_query'] .= "\n" . $one_query; - } - - unset($GLOBALS['sql_constraints_query_full_db'], $one_query); + PMA_createAllAccumulatedConstraints(); } if (! PMA_DRIZZLE && PMA_MYSQL_INT_VERSION >= 50100) { diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 27bb648108..e14921bcdc 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -526,4 +526,18 @@ function PMA_handleTheViews($views, $move) return $_error; } +/** + * Create all accumulated constraaints + */ +function PMA_createAllAccumulatedConstraints() +{ + PMA_DBI_select_db($_REQUEST['newname']); + foreach ($GLOBALS['sql_constraints_query_full_db'] as $one_query) { + PMA_DBI_query($one_query); + // and prepare to display them + $GLOBALS['sql_query'] .= "\n" . $one_query; + } + unset($GLOBALS['sql_constraints_query_full_db']); +} + ?> From 3bb25380c0a60cd4c1f04b5847c6f1f101b69118 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Thu, 26 Jul 2012 02:05:35 +0530 Subject: [PATCH 20/79] remove global variable definitions --- db_operations.php | 51 +++++++++++++---------------------------------- 1 file changed, 14 insertions(+), 37 deletions(-) diff --git a/db_operations.php b/db_operations.php index 51e9729716..d704398265 100644 --- a/db_operations.php +++ b/db_operations.php @@ -30,48 +30,25 @@ $scripts = $header->getScripts(); $scripts->addFile('db_operations.js'); $common_functions = PMA_CommonFunctions::getInstance(); -/** - * Sets globals from $_REQUEST (we're using GET on ajax, POST otherwise) - */ -$request_params = array( - 'add_constraints', - 'comment', - 'create_database_before_copying', - 'db_collation', - 'db_copy', - 'db_rename', - 'drop_if_exists', - 'newname', - 'sql_auto_increment', - 'submitcollation', - 'switch_to_new', - 'what' -); -foreach ($request_params as $one_request_param) { - if (isset($_REQUEST[$one_request_param])) { - $GLOBALS[$one_request_param] = $_REQUEST[$one_request_param]; - } -} - /** * Rename/move or copy database */ -if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { +if (strlen($db) && (! empty($_REQUEST['db_rename']) || ! empty($_REQUEST['db_copy']))) { - if (! empty($db_rename)) { + if (! empty($_REQUEST['db_rename'])) { $move = true; } else { $move = false; } - if (! isset($newname) || ! strlen($newname)) { + if (! isset($_REQUEST['newname']) || ! strlen($_REQUEST['newname'])) { $message = PMA_Message::error(__('The database name is empty!')); } else { $sql_query = ''; // in case target db exists $_error = false; if ($move - || (isset($create_database_before_copying) - && $create_database_before_copying) + || (isset($_REQUEST['create_database_before_copying']) + && $_REQUEST['create_database_before_copying']) ) { $sql_query = PMA_getSqlQueryAndCreateDbBeforeCopy(); } @@ -135,10 +112,10 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { PMA_DBI_select_db($db); // Duplicate the bookmarks for this db (done once for each db) - if (! $_error && $db != $newname) { + if (! $_error && $db != $_REQUEST['newname']) { $get_fields = array('user', 'label', 'query'); $where_fields = array('dbase' => $db); - $new_fields = array('dbase' => $newname); + $new_fields = array('dbase' => $_REQUEST['newname']); PMA_Table::duplicateInfo( 'bookmarkwork', 'bookmark', $get_fields, $where_fields, $new_fields @@ -159,21 +136,21 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { $message = PMA_Message::success(__('Database %1$s has been renamed to %2$s')); $message->addParam($db); - $message->addParam($newname); + $message->addParam($_REQUEST['newname']); } elseif (! $_error) { $message = PMA_Message::success(__('Database %1$s has been copied to %2$s')); $message->addParam($db); - $message->addParam($newname); + $message->addParam($_REQUEST['newname']); } $reload = true; /* Change database to be used */ if (! $_error && $move) { - $db = $newname; + $db = $_REQUEST['newname']; } elseif (! $_error) { - if (isset($switch_to_new) && $switch_to_new == 'true') { + if (isset($_REQUEST['switch_to_new']) && $_REQUEST['switch_to_new'] == 'true') { $GLOBALS['PMA_Config']->setCookie('pma_switch_to_new', 'true'); - $db = $newname; + $db = $_REQUEST['newname']; } else { $GLOBALS['PMA_Config']->setCookie('pma_switch_to_new', ''); } @@ -192,7 +169,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { $response = PMA_Response::getInstance(); $response->isSuccess($message->isSuccess()); $response->addJSON('message', $message); - $response->addJSON('newname', $newname); + $response->addJSON('newname', $_REQUEST['newname']); $response->addJSON( 'sql_query', $common_functions->getMessage(null, $sql_query) @@ -213,7 +190,7 @@ $cfgRelation = PMA_getRelationsParam(); * (must be done before displaying the menu tabs) */ if (isset($_REQUEST['comment'])) { - PMA_setDbComment($db, $comment); + PMA_setDbComment($db, $_REQUEST['comment']); } /** From fc3c01f6283e61cd25d66bf3d6eed32676fa40ae Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Thu, 26 Jul 2012 02:45:09 +0530 Subject: [PATCH 21/79] modified some of GLOBALS[db] --- db_operations.php | 6 +++--- libraries/db_operations.lib.php | 22 ++++++++++++++-------- 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/db_operations.php b/db_operations.php index d704398265..9c5ca8e0b4 100644 --- a/db_operations.php +++ b/db_operations.php @@ -220,7 +220,7 @@ if (!$is_information_schema) { /** * database comment */ - echo PMA_getHtmlForDatabaseComment(); + echo PMA_getHtmlForDatabaseComment($db); } ?>
@@ -231,7 +231,7 @@ if (!$is_information_schema) { * rename database */ if ($db != 'mysql') { - echo PMA_getHtmlForRenameDatabase(); + echo PMA_getHtmlForRenameDatabase($db); } // Drop link if allowed @@ -241,7 +241,7 @@ if (!$is_information_schema) { && ! $db_is_information_schema && (PMA_DRIZZLE || $db != 'mysql') ) { - echo PMA_getHtmlForDropDatabaseLink(); + echo PMA_getHtmlForDropDatabaseLink($db); } /** * Copy database diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index e14921bcdc..ee3a0b6998 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -14,13 +14,15 @@ if (! defined('PHPMYADMIN')) { /** * Get HTML output for database comment * + * @param $db database name + * * @return string $html_output */ -function PMA_getHtmlForDatabaseComment() +function PMA_getHtmlForDatabaseComment($db) { $html_output = '
' . '
' - . PMA_generate_common_hidden_inputs($GLOBALS['db']) + . PMA_generate_common_hidden_inputs($db) . '
' . ''; if ($GLOBALS['cfg']['PropertiesIconic']) { @@ -29,7 +31,7 @@ function PMA_getHtmlForDatabaseComment() $html_output .= __('Database comment: '); $html_output .= ''; $html_output .= '' + . 'value="' . htmlspecialchars(PMA_getDBComment($db)) . '" />' . '
'; $html_output .= '
' . '' @@ -43,9 +45,11 @@ function PMA_getHtmlForDatabaseComment() /** * Get HTML output for rename database * + * @param $db database name + * * @return string $html_output */ -function PMA_getHtmlForRenameDatabase() +function PMA_getHtmlForRenameDatabase($db) { $html_output = '
' . '' - . PMA_generate_common_hidden_inputs($GLOBALS['db']) + . PMA_generate_common_hidden_inputs($db) . '
' . ''; @@ -82,13 +86,15 @@ function PMA_getHtmlForRenameDatabase() /** * Get HTML for database drop link * + * @param $db database name + * * @return string $html_output */ -function PMA_getHtmlForDropDatabaseLink() +function PMA_getHtmlForDropDatabaseLink($db) { $common_functions = PMA_CommonFunctions::getInstance(); - $this_sql_query = 'DROP DATABASE ' . $common_functions->backquote($GLOBALS['db']); + $this_sql_query = 'DROP DATABASE ' . $common_functions->backquote($db); $this_url_params = array( 'sql_query' => $this_sql_query, 'back' => 'db_operations.php', @@ -97,7 +103,7 @@ function PMA_getHtmlForDropDatabaseLink() 'purge' => '1', 'message_to_show' => sprintf( __('Database %s has been dropped.') - , htmlspecialchars($common_functions->backquote($GLOBALS['db'])) + , htmlspecialchars($common_functions->backquote($db)) ), 'db' => null, ); From 87f096a44cc659506262b91405eeef216c218355 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Thu, 26 Jul 2012 02:57:14 +0530 Subject: [PATCH 22/79] implementation of PMA_duplicateBookmarks() --- db_operations.php | 12 ++---------- libraries/db_operations.lib.php | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/db_operations.php b/db_operations.php index 9c5ca8e0b4..6b10be7eba 100644 --- a/db_operations.php +++ b/db_operations.php @@ -112,16 +112,8 @@ if (strlen($db) && (! empty($_REQUEST['db_rename']) || ! empty($_REQUEST['db_cop PMA_DBI_select_db($db); // Duplicate the bookmarks for this db (done once for each db) - if (! $_error && $db != $_REQUEST['newname']) { - $get_fields = array('user', 'label', 'query'); - $where_fields = array('dbase' => $db); - $new_fields = array('dbase' => $_REQUEST['newname']); - PMA_Table::duplicateInfo( - 'bookmarkwork', 'bookmark', $get_fields, - $where_fields, $new_fields - ); - } - + PMA_duplicateBookmarks($_error, $db); + if (! $_error && $move) { /** * cleanup pmadb stuff for this db diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index ee3a0b6998..4e3319fd76 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -546,4 +546,22 @@ function PMA_createAllAccumulatedConstraints() unset($GLOBALS['sql_constraints_query_full_db']); } +/** + * Duplicate the bookmarks for the db (done once for each db) + * + * @param boolean $_error whether table rename/copy or not + * @param string $db database name + */ +function PMA_duplicateBookmarks($_error, $db) +{ + if (! $_error && $db != $_REQUEST['newname']) { + $get_fields = array('user', 'label', 'query'); + $where_fields = array('dbase' => $db); + $new_fields = array('dbase' => $_REQUEST['newname']); + PMA_Table::duplicateInfo( + 'bookmarkwork', 'bookmark', $get_fields, + $where_fields, $new_fields + ); + } +} ?> From 9441576921f9a6f04657c7050c8c695b5b26e427 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Fri, 27 Jul 2012 01:13:55 +0530 Subject: [PATCH 23/79] modified some of GLOBALS[db] --- db_operations.php | 15 ++++---- libraries/db_operations.lib.php | 67 ++++++++++++++++++++------------- 2 files changed, 48 insertions(+), 34 deletions(-) diff --git a/db_operations.php b/db_operations.php index 6b10be7eba..e0b1136c0b 100644 --- a/db_operations.php +++ b/db_operations.php @@ -59,7 +59,7 @@ if (strlen($db) && (! empty($_REQUEST['db_rename']) || ! empty($_REQUEST['db_cop // to avoid selecting alternatively the current and new db // we would need to modify the CREATE definitions to qualify // the db name - PMA_runProcedureAndFunctionDefinitions(); + PMA_runProcedureAndFunctionDefinitions($db); // go back to current db, just in case PMA_DBI_select_db($db); @@ -79,7 +79,7 @@ if (strlen($db) && (! empty($_REQUEST['db_rename']) || ! empty($_REQUEST['db_cop ); $GLOBALS['sql_constraints_query_full_db'] = PMA_getSqlConstraintsQueryForFullDb( - $tables_full, $export_sql_plugin, $move + $tables_full, $export_sql_plugin, $move, $db ); $views = PMA_getViewsAndCreateSqlViewStandIn( @@ -87,12 +87,12 @@ if (strlen($db) && (! empty($_REQUEST['db_rename']) || ! empty($_REQUEST['db_cop ); list($sql_query, $_error) = PMA_getSqlQueryForCopyTable( - $tables_full, $sql_query, $move + $tables_full, $sql_query, $move, $db ); // handle the views if (! $_error) { - $_error = PMA_handleTheViews($views, $move); + $_error = PMA_handleTheViews($views, $move, $db); } unset($views); @@ -105,7 +105,7 @@ if (strlen($db) && (! empty($_REQUEST['db_rename']) || ! empty($_REQUEST['db_cop // here DELIMITER is not used because it's not part of the // language; each statement is sent one by one - PMA_runEventDefinitionsForDb(); + PMA_runEventDefinitionsForDb($db); } // go back to current db, just in case @@ -214,6 +214,7 @@ if (!$is_information_schema) { */ echo PMA_getHtmlForDatabaseComment($db); } + ?>
@@ -238,12 +239,12 @@ if (!$is_information_schema) { /** * Copy database */ - echo PMA_getHtmlForCopyDatabase(); + echo PMA_getHtmlForCopyDatabase($db); /** * Change database charset */ - echo PMA_getHtmlForChangeDatabaseCharset(); + echo PMA_getHtmlForChangeDatabaseCharset($db, $table); if ($num_tables > 0 && ! $cfgRelation['allworks'] diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 4e3319fd76..f882602335 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -133,9 +133,11 @@ function PMA_getHtmlForDropDatabaseLink($db) /** * Get HTML snippet for copy database * + * @param $db database name + * * @return string $html_output */ -function PMA_getHtmlForCopyDatabase() +function PMA_getHtmlForCopyDatabase($db) { $drop_clause = 'DROP TABLE / DROP VIEW'; $choices = array( @@ -162,7 +164,7 @@ function PMA_getHtmlForCopyDatabase() . 'value="' . $_REQUEST['db_collation'] .'" />' . "\n"; } $html_output .= '' . "\n" - . PMA_generate_common_hidden_inputs($GLOBALS['db']); + . PMA_generate_common_hidden_inputs($db); $html_output .= '
' . ''; @@ -214,9 +216,12 @@ function PMA_getHtmlForCopyDatabase() /** * Get HTML snippet for change database charset * + * @param $db database name + * @param $table tabel name + * * @return string $html_output */ -function PMA_getHtmlForChangeDatabaseCharset() +function PMA_getHtmlForChangeDatabaseCharset($db, $table) { $html_output = '
'; @@ -276,14 +281,16 @@ function PMA_getHtmlForExportRelationalSchemaView($url_query) * to avoid selecting alternatively the current and new db * we would need to modify the CREATE definitions to qualify * the db name + * + * @param $db database name */ -function PMA_runProcedureAndFunctionDefinitions() +function PMA_runProcedureAndFunctionDefinitions($db) { - $procedure_names = PMA_DBI_get_procedures_or_functions($GLOBALS['db'], 'PROCEDURE'); + $procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE'); if ($procedure_names) { foreach ($procedure_names as $procedure_name) { - PMA_DBI_select_db($GLOBALS['db']); - $tmp_query = PMA_DBI_get_definition($GLOBALS['db'], 'PROCEDURE', $procedure_name); + PMA_DBI_select_db($db); + $tmp_query = PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name); // collect for later display $GLOBALS['sql_query'] .= "\n" . $tmp_query; PMA_DBI_select_db($_REQUEST['newname']); @@ -291,11 +298,11 @@ function PMA_runProcedureAndFunctionDefinitions() } } - $function_names = PMA_DBI_get_procedures_or_functions($GLOBALS['db'], 'FUNCTION'); + $function_names = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION'); if ($function_names) { foreach ($function_names as $function_name) { - PMA_DBI_select_db($GLOBALS['db']); - $tmp_query = PMA_DBI_get_definition($GLOBALS['db'], 'FUNCTION', $function_name); + PMA_DBI_select_db($db); + $tmp_query = PMA_DBI_get_definition($db, 'FUNCTION', $function_name); // collect for later display $GLOBALS['sql_query'] .= "\n" . $tmp_query; PMA_DBI_select_db($_REQUEST['newname']); @@ -349,15 +356,16 @@ function PMA_getSqlQueryAndCreateDbBeforeCopy() * @param array $tables_full array of all tables in given db or dbs * @param instance $export_sql_plugin export plugin instance * @param boolean $move whether databse name is empty or not + * @param $db database name */ -function PMA_getSqlConstraintsQueryForFullDb($tables_full, $export_sql_plugin, $move) +function PMA_getSqlConstraintsQueryForFullDb($tables_full, $export_sql_plugin, $move, $db) { $sql_constraints_query_full_db = array(); foreach ($tables_full as $each_table => $tmp) { $sql_constraints = ''; $sql_drop_foreign_keys = ''; $sql_structure = $export_sql_plugin->getTableDef( - $GLOBALS['db'], $each_table, "\n", '', false, false + $db, $each_table, "\n", '', false, false ); if ($move && ! empty($sql_drop_foreign_keys)) { PMA_DBI_query($sql_drop_foreign_keys); @@ -375,21 +383,22 @@ function PMA_getSqlConstraintsQueryForFullDb($tables_full, $export_sql_plugin, $ * * @param array $tables_full array of all tables in given db or dbs * @param instance $export_sql_plugin export plugin instance + * @param $db database name * * @return array $views */ -function PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin) +function PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin, $db) { $views = array(); foreach ($tables_full as $each_table => $tmp) { // to be able to rename a db containing views, // first all the views are collected and a stand-in is created // the real views are created after the tables - if (PMA_Table::isView($GLOBALS['db'], $each_table)) { + if (PMA_Table::isView($db, $each_table)) { $views[] = $each_table; // Create stand-in definition to resolve view dependencies $sql_view_standin = $export_sql_plugin->getTableDefStandIn( - $GLOBALS['db'], $each_table, "\n" + $db, $each_table, "\n" ); PMA_DBI_select_db($_REQUEST['newname']); PMA_DBI_query($sql_view_standin); @@ -405,15 +414,16 @@ function PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin) * @param array $tables_full array of all tables in given db or dbs * @param string $sql_query sql query for all operations * @param boolean $move whether databse name is empty or not + * @param $db database name * * @return array ($sql_query, $error) */ -function PMA_getSqlQueryForCopyTable($tables_full, $sql_query, $move) +function PMA_getSqlQueryForCopyTable($tables_full, $sql_query, $move, $db) { $error = false; foreach ($tables_full as $each_table => $tmp) { // skip the views; we have creted stand-in definitions - if (PMA_Table::isView($GLOBALS['db'], $each_table)) { + if (PMA_Table::isView($db, $each_table)) { continue; } $back = $sql_query; @@ -424,7 +434,7 @@ function PMA_getSqlQueryForCopyTable($tables_full, $sql_query, $move) // do not copy the data from a Merge table // note: on the calling FORM, 'data' means 'structure and data' - if (PMA_Table::isMerge($GLOBALS['db'], $each_table)) { + if (PMA_Table::isMerge($db, $each_table)) { if ($this_what == 'data') { $this_what = 'structure'; } @@ -437,10 +447,10 @@ function PMA_getSqlQueryForCopyTable($tables_full, $sql_query, $move) // keep the triggers from the original db+table // (third param is empty because delimiters are only intended // for importing via the mysql client or our Import feature) - $triggers = PMA_DBI_get_triggers($GLOBALS['db'], $each_table, ''); + $triggers = PMA_DBI_get_triggers($db, $each_table, ''); if (! PMA_Table::moveCopy( - $GLOBALS['db'], $each_table, $_REQUEST['newname'], $each_table, + $db, $each_table, $_REQUEST['newname'], $each_table, isset($this_what) ? $this_what : 'data', $move, 'db_copy' )) { @@ -479,17 +489,19 @@ function PMA_getSqlQueryForCopyTable($tables_full, $sql_query, $move) * to avoid selecting alternatively the current and new db * we would need to modify the CREATE definitions to qualify * the db name + * + * @param $db database name */ -function PMA_runEventDefinitionsForDb() +function PMA_runEventDefinitionsForDb($db) { $event_names = PMA_DBI_fetch_result( 'SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' - . $common_functions->sqlAddSlashes($GLOBALS['db'], true) . '\';' + . $common_functions->sqlAddSlashes($db, true) . '\';' ); if ($event_names) { foreach ($event_names as $event_name) { - PMA_DBI_select_db($GLOBALS['db']); - $tmp_query = PMA_DBI_get_definition($GLOBALS['db'], 'EVENT', $event_name); + PMA_DBI_select_db($db); + $tmp_query = PMA_DBI_get_definition($db, 'EVENT', $event_name); // collect for later display $GLOBALS['sql_query'] .= "\n" . $tmp_query; PMA_DBI_select_db($_REQUEST['newname']); @@ -503,10 +515,11 @@ function PMA_runEventDefinitionsForDb() * * @param array $views views as an array * @param boolean $move whether databse name is empty or not + * @param $db database name * * @return boolean $_error whether table rename/copy or not */ -function PMA_handleTheViews($views, $move) +function PMA_handleTheViews($views, $move, $db) { $_error = false; // temporarily force to add DROP IF EXIST to CREATE VIEW query, @@ -517,7 +530,7 @@ function PMA_handleTheViews($views, $move) $GLOBALS['drop_if_exists'] = 'true'; foreach ($views as $view) { - if (! PMA_Table::moveCopy($GLOBALS['db'], $view, $_REQUEST['newname'], + if (! PMA_Table::moveCopy($db, $view, $_REQUEST['newname'], $view, 'structure', $move, 'db_copy') ) { $_error = true; From 34e43e461d9ed9a2e38ac73a86b64118a33552a7 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Fri, 27 Jul 2012 01:37:43 +0530 Subject: [PATCH 24/79] db_collation list --- db_operations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_operations.php b/db_operations.php index e0b1136c0b..091ccae94e 100644 --- a/db_operations.php +++ b/db_operations.php @@ -204,7 +204,7 @@ if (empty($is_info)) { } } -$db_collation = PMA_getDbCollation($db); +$_REQUEST['db_collation'] = PMA_getDbCollation($db); $is_information_schema = PMA_is_system_schema($db); if (!$is_information_schema) { From 1b4cbacaa7fa3f8a419f9265c32e283abc0dc966 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Fri, 27 Jul 2012 02:33:50 +0530 Subject: [PATCH 25/79] remove global variables --- libraries/db_operations.lib.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index f882602335..7a0394c049 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -469,7 +469,7 @@ function PMA_getSqlQueryForCopyTable($tables_full, $sql_query, $move, $db) } // this does not apply to a rename operation - if (isset($GLOBALS['add_constraints']) + if (isset($_REQUEST['add_constraints']) && ! empty($GLOBALS['sql_constraints_query']) ) { $GLOBALS['sql_constraints_query_full_db'][] @@ -524,10 +524,10 @@ function PMA_handleTheViews($views, $move, $db) $_error = false; // temporarily force to add DROP IF EXIST to CREATE VIEW query, // to remove stand-in VIEW that was created earlier - if (isset($GLOBALS['drop_if_exists'])) { - $temp_drop_if_exists = $GLOBALS['drop_if_exists']; + if (isset($_REQUEST['drop_if_exists'])) { + $temp_drop_if_exists = $_REQUEST['drop_if_exists']; } - $GLOBALS['drop_if_exists'] = 'true'; + $_REQUEST['drop_if_exists'] = 'true'; foreach ($views as $view) { if (! PMA_Table::moveCopy($db, $view, $_REQUEST['newname'], @@ -537,10 +537,10 @@ function PMA_handleTheViews($views, $move, $db) break; } } - unset($GLOBALS['drop_if_exists']); + unset($_REQUEST['drop_if_exists']); if (isset($temp_drop_if_exists)) { // restore previous value - $GLOBALS['drop_if_exists'] = $temp_drop_if_exists; + $_REQUEST['drop_if_exists'] = $temp_drop_if_exists; } return $_error; } From d3973dd9f36360fd78d2fc130099ba1887bb83ac Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 28 Jul 2012 11:07:45 +0530 Subject: [PATCH 26/79] wrong function call --- libraries/db_operations.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php index 7a0394c049..fb4509e559 100644 --- a/libraries/db_operations.lib.php +++ b/libraries/db_operations.lib.php @@ -496,7 +496,7 @@ function PMA_runEventDefinitionsForDb($db) { $event_names = PMA_DBI_fetch_result( 'SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' - . $common_functions->sqlAddSlashes($db, true) . '\';' + . PMA_CommonFunctions::getInstance()->sqlAddSlashes($db, true) . '\';' ); if ($event_names) { foreach ($event_names as $event_name) { From 918cc1ce48af6476f8ee255c42ebedd4b7db7198 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 28 Jul 2012 13:37:58 +0530 Subject: [PATCH 27/79] remove echo --- db_operations.php | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/db_operations.php b/db_operations.php index 091ccae94e..3e9a11d3dc 100644 --- a/db_operations.php +++ b/db_operations.php @@ -170,7 +170,6 @@ if (strlen($db) && (! empty($_REQUEST['db_rename']) || ! empty($_REQUEST['db_cop } } - /** * Settings for relations stuff */ @@ -212,14 +211,13 @@ if (!$is_information_schema) { /** * database comment */ - echo PMA_getHtmlForDatabaseComment($db); + $response->addHTML(PMA_getHtmlForDatabaseComment($db)); } - ?> -
- -
- '; + include 'libraries/display_create_table.lib.php'; + echo '
'; + /** * rename database */ From 2c82b92bd9df923a94e2b3d1c7355c65761ca3b8 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 28 Jul 2012 14:25:05 +0530 Subject: [PATCH 28/79] rename the file --- libraries/operations.lib.php | 580 +++++++++++++++++++++++++++++++++++ 1 file changed, 580 insertions(+) create mode 100644 libraries/operations.lib.php diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php new file mode 100644 index 0000000000..fb4509e559 --- /dev/null +++ b/libraries/operations.lib.php @@ -0,0 +1,580 @@ +' + . '' + . PMA_generate_common_hidden_inputs($db) + . '
' + . ''; + if ($GLOBALS['cfg']['PropertiesIconic']) { + $html_output .= ''; + } + $html_output .= __('Database comment: '); + $html_output .= ''; + $html_output .= '' + . '
'; + $html_output .= '
' + . '' + . '
' + . '' + . '
'; + + return $html_output; +} + +/** + * Get HTML output for rename database + * + * @param $db database name + * + * @return string $html_output + */ +function PMA_getHtmlForRenameDatabase($db) +{ + $html_output = '
' + . '
'; + if (isset($_REQUEST['db_collation'])) { + $html_output .= '' . "\n"; + } + $html_output .= '' + . '' + . PMA_generate_common_hidden_inputs($db) + . '
' + . ''; + + if ($GLOBALS['cfg']['PropertiesIconic']) { + $html_output .= PMA_CommonFunctions::getInstance()->getImage('b_edit.png'); + } + $html_output .= __('Rename database to') . ':' + . ''; + + $html_output .= '' + . '
' + . '
' + . '' + . '
' + . '
' + . '
'; + + return $html_output; +} + +/** + * Get HTML for database drop link + * + * @param $db database name + * + * @return string $html_output + */ +function PMA_getHtmlForDropDatabaseLink($db) +{ + $common_functions = PMA_CommonFunctions::getInstance(); + + $this_sql_query = 'DROP DATABASE ' . $common_functions->backquote($db); + $this_url_params = array( + 'sql_query' => $this_sql_query, + 'back' => 'db_operations.php', + 'goto' => 'main.php', + 'reload' => '1', + 'purge' => '1', + 'message_to_show' => sprintf( + __('Database %s has been dropped.') + , htmlspecialchars($common_functions->backquote($db)) + ), + 'db' => null, + ); + + $html_output = '
' + . '
'; + $html_output .= ''; + if ($GLOBALS['cfg']['PropertiesIconic']) { + $html_output .= $common_functions->getImage('b_deltbl.png'); + } + $html_output .= __('Remove database') + . ''; + $html_output .= '
' + . '
'; + + return $html_output; +} + +/** + * Get HTML snippet for copy database + * + * @param $db database name + * + * @return string $html_output + */ +function PMA_getHtmlForCopyDatabase($db) +{ + $drop_clause = 'DROP TABLE / DROP VIEW'; + $choices = array( + 'structure' => __('Structure only'), + 'data' => __('Structure and data'), + 'dataonly' => __('Data only') + ); + + if (isset($_COOKIE) + && isset($_COOKIE['pma_switch_to_new']) + && $_COOKIE['pma_switch_to_new'] == 'true' + ) { + $pma_switch_to_new = 'true'; + } + + $html_output = '
'; + $html_output .= '
'; + + if (isset($_REQUEST['db_collation'])) { + $html_output .= '' . "\n"; + } + $html_output .= '' . "\n" + . PMA_generate_common_hidden_inputs($db); + $html_output .= '
' + . ''; + + if ($GLOBALS['cfg']['PropertiesIconic']) { + $html_output .= PMA_CommonFunctions::getInstance()->getImage('b_edit.png'); + } + $html_output .= __('Copy database to') . ':' + . '' + . '
' + . PMA_CommonFunctions::getInstance()->getRadioFields( + 'what', $choices, 'data', true + ); + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '' + . '
'; + $html_output .= '
' + . '' + . '
' + . '
' + . '
'; + + return $html_output; +} + +/** + * Get HTML snippet for change database charset + * + * @param $db database name + * @param $table tabel name + * + * @return string $html_output + */ +function PMA_getHtmlForChangeDatabaseCharset($db, $table) +{ + $html_output = '
'; + if ($GLOBALS['cfg']['PropertiesIconic']) { + $html_output .= PMA_CommonFunctions::getInstance()->getImage('s_asci.png'); + } + $html_output .= '' . "\n" + . '' . "\n" + . PMA_generateCharsetDropdownBox( + PMA_CSDROPDOWN_COLLATION, 'db_collation', + 'select_db_collation', + (isset ($_REQUEST['db_collation']) ? $_REQUEST['db_collation'] : ''), + false, 3 + ) + . '
' + . '
' + . '' . "\n" + . '
' . "\n" + . '
' . "\n"; + + return $html_output; +} + +/** + * Get HTML snippet for export relational schema view + * + * @param string $url_query + * + * @return string $html_output + */ +function PMA_getHtmlForExportRelationalSchemaView($url_query) +{ + $html_output = ''; + + return $html_output; +} + +/** + * Run the Procedure definitions and function definitions + * + * to avoid selecting alternatively the current and new db + * we would need to modify the CREATE definitions to qualify + * the db name + * + * @param $db database name + */ +function PMA_runProcedureAndFunctionDefinitions($db) +{ + $procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE'); + if ($procedure_names) { + foreach ($procedure_names as $procedure_name) { + PMA_DBI_select_db($db); + $tmp_query = PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name); + // collect for later display + $GLOBALS['sql_query'] .= "\n" . $tmp_query; + PMA_DBI_select_db($_REQUEST['newname']); + PMA_DBI_query($tmp_query); + } + } + + $function_names = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION'); + if ($function_names) { + foreach ($function_names as $function_name) { + PMA_DBI_select_db($db); + $tmp_query = PMA_DBI_get_definition($db, 'FUNCTION', $function_name); + // collect for later display + $GLOBALS['sql_query'] .= "\n" . $tmp_query; + PMA_DBI_select_db($_REQUEST['newname']); + PMA_DBI_query($tmp_query); + } + } +} + +/** + * Get sql query and create database before copy + * + * @return string $sql_query + */ +function PMA_getSqlQueryAndCreateDbBeforeCopy() +{ + // lower_case_table_names=1 `DB` becomes `db` + if (! PMA_DRIZZLE) { + $lower_case_table_names = PMA_DBI_fetch_value( + 'SHOW VARIABLES LIKE "lower_case_table_names"', 0, 1 + ); + if ($lower_case_table_names === '1') { + $_REQUEST['newname'] = PMA_strtolower($_REQUEST['newname']); + } + } + + $local_query = 'CREATE DATABASE ' + . PMA_CommonFunctions::getInstance()->backquote($_REQUEST['newname']); + if (isset($_REQUEST['db_collation'])) { + $local_query .= ' DEFAULT' + . PMA_generateCharsetQueryPart($_REQUEST['db_collation']); + } + $local_query .= ';'; + $sql_query = $local_query; + // save the original db name because Tracker.class.php which + // may be called under PMA_DBI_query() changes $GLOBALS['db'] + // for some statements, one of which being CREATE DATABASE + $original_db = $GLOBALS['db']; + PMA_DBI_query($local_query); + $GLOBALS['db'] = $original_db; + + // rebuild the database list because PMA_Table::moveCopy + // checks in this list if the target db exists + $GLOBALS['pma']->databases->build(); + + return $sql_query; +} + +/** + * remove all foreign key constraints and return sql constraints query for full database + * + * @param array $tables_full array of all tables in given db or dbs + * @param instance $export_sql_plugin export plugin instance + * @param boolean $move whether databse name is empty or not + * @param $db database name + */ +function PMA_getSqlConstraintsQueryForFullDb($tables_full, $export_sql_plugin, $move, $db) +{ + $sql_constraints_query_full_db = array(); + foreach ($tables_full as $each_table => $tmp) { + $sql_constraints = ''; + $sql_drop_foreign_keys = ''; + $sql_structure = $export_sql_plugin->getTableDef( + $db, $each_table, "\n", '', false, false + ); + if ($move && ! empty($sql_drop_foreign_keys)) { + PMA_DBI_query($sql_drop_foreign_keys); + } + // keep the constraint we just dropped + if (! empty($sql_constraints)) { + $sql_constraints_query_full_db[] = $sql_constraints; + } + } + return $sql_constraints_query_full_db; +} + +/** + * Get views as an array and create SQL view stand-in + * + * @param array $tables_full array of all tables in given db or dbs + * @param instance $export_sql_plugin export plugin instance + * @param $db database name + * + * @return array $views + */ +function PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin, $db) +{ + $views = array(); + foreach ($tables_full as $each_table => $tmp) { + // to be able to rename a db containing views, + // first all the views are collected and a stand-in is created + // the real views are created after the tables + if (PMA_Table::isView($db, $each_table)) { + $views[] = $each_table; + // Create stand-in definition to resolve view dependencies + $sql_view_standin = $export_sql_plugin->getTableDefStandIn( + $db, $each_table, "\n" + ); + PMA_DBI_select_db($_REQUEST['newname']); + PMA_DBI_query($sql_view_standin); + $GLOBALS['sql_query'] .= "\n" . $sql_view_standin; + } + } + return $views; +} + +/** + * Get sql query for copy/rename table and boolean for whether copy/rename or not + * + * @param array $tables_full array of all tables in given db or dbs + * @param string $sql_query sql query for all operations + * @param boolean $move whether databse name is empty or not + * @param $db database name + * + * @return array ($sql_query, $error) + */ +function PMA_getSqlQueryForCopyTable($tables_full, $sql_query, $move, $db) +{ + $error = false; + foreach ($tables_full as $each_table => $tmp) { + // skip the views; we have creted stand-in definitions + if (PMA_Table::isView($db, $each_table)) { + continue; + } + $back = $sql_query; + $sql_query = ''; + + // value of $what for this table only + $this_what = $_REQUEST['what']; + + // do not copy the data from a Merge table + // note: on the calling FORM, 'data' means 'structure and data' + if (PMA_Table::isMerge($db, $each_table)) { + if ($this_what == 'data') { + $this_what = 'structure'; + } + if ($this_what == 'dataonly') { + $this_what = 'nocopy'; + } + } + + if ($this_what != 'nocopy') { + // keep the triggers from the original db+table + // (third param is empty because delimiters are only intended + // for importing via the mysql client or our Import feature) + $triggers = PMA_DBI_get_triggers($db, $each_table, ''); + + if (! PMA_Table::moveCopy( + $db, $each_table, $_REQUEST['newname'], $each_table, + isset($this_what) ? $this_what : 'data', + $move, 'db_copy' + )) { + $error = true; + // $sql_query is filled by PMA_Table::moveCopy() + $sql_query = $back . $sql_query; + break; + } + // apply the triggers to the destination db+table + if ($triggers) { + PMA_DBI_select_db($_REQUEST['newname']); + foreach ($triggers as $trigger) { + PMA_DBI_query($trigger['create']); + $GLOBALS['sql_query'] .= "\n" . $trigger['create'] . ';'; + } + } + + // this does not apply to a rename operation + if (isset($_REQUEST['add_constraints']) + && ! empty($GLOBALS['sql_constraints_query']) + ) { + $GLOBALS['sql_constraints_query_full_db'][] + = $GLOBALS['sql_constraints_query']; + unset($GLOBALS['sql_constraints_query']); + } + } + // $sql_query is filled by PMA_Table::moveCopy() + $sql_query = $back . $sql_query; + } + return array($sql_query, $error); +} + +/** + * Run the EVENT definition for selected database + * + * to avoid selecting alternatively the current and new db + * we would need to modify the CREATE definitions to qualify + * the db name + * + * @param $db database name + */ +function PMA_runEventDefinitionsForDb($db) +{ + $event_names = PMA_DBI_fetch_result( + 'SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' + . PMA_CommonFunctions::getInstance()->sqlAddSlashes($db, true) . '\';' + ); + if ($event_names) { + foreach ($event_names as $event_name) { + PMA_DBI_select_db($db); + $tmp_query = PMA_DBI_get_definition($db, 'EVENT', $event_name); + // collect for later display + $GLOBALS['sql_query'] .= "\n" . $tmp_query; + PMA_DBI_select_db($_REQUEST['newname']); + PMA_DBI_query($tmp_query); + } + } +} + +/** + * Handle the views, return the boolean value whether table rename/copy or not + * + * @param array $views views as an array + * @param boolean $move whether databse name is empty or not + * @param $db database name + * + * @return boolean $_error whether table rename/copy or not + */ +function PMA_handleTheViews($views, $move, $db) +{ + $_error = false; + // temporarily force to add DROP IF EXIST to CREATE VIEW query, + // to remove stand-in VIEW that was created earlier + if (isset($_REQUEST['drop_if_exists'])) { + $temp_drop_if_exists = $_REQUEST['drop_if_exists']; + } + $_REQUEST['drop_if_exists'] = 'true'; + + foreach ($views as $view) { + if (! PMA_Table::moveCopy($db, $view, $_REQUEST['newname'], + $view, 'structure', $move, 'db_copy') + ) { + $_error = true; + break; + } + } + unset($_REQUEST['drop_if_exists']); + if (isset($temp_drop_if_exists)) { + // restore previous value + $_REQUEST['drop_if_exists'] = $temp_drop_if_exists; + } + return $_error; +} + +/** + * Create all accumulated constraaints + */ +function PMA_createAllAccumulatedConstraints() +{ + PMA_DBI_select_db($_REQUEST['newname']); + foreach ($GLOBALS['sql_constraints_query_full_db'] as $one_query) { + PMA_DBI_query($one_query); + // and prepare to display them + $GLOBALS['sql_query'] .= "\n" . $one_query; + } + unset($GLOBALS['sql_constraints_query_full_db']); +} + +/** + * Duplicate the bookmarks for the db (done once for each db) + * + * @param boolean $_error whether table rename/copy or not + * @param string $db database name + */ +function PMA_duplicateBookmarks($_error, $db) +{ + if (! $_error && $db != $_REQUEST['newname']) { + $get_fields = array('user', 'label', 'query'); + $where_fields = array('dbase' => $db); + $new_fields = array('dbase' => $_REQUEST['newname']); + PMA_Table::duplicateInfo( + 'bookmarkwork', 'bookmark', $get_fields, + $where_fields, $new_fields + ); + } +} +?> From f6ef52699a8afaea449537935e3c6c71a9b72298 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 28 Jul 2012 14:36:07 +0530 Subject: [PATCH 29/79] remove old file --- libraries/db_operations.lib.php | 580 -------------------------------- 1 file changed, 580 deletions(-) delete mode 100644 libraries/db_operations.lib.php diff --git a/libraries/db_operations.lib.php b/libraries/db_operations.lib.php deleted file mode 100644 index fb4509e559..0000000000 --- a/libraries/db_operations.lib.php +++ /dev/null @@ -1,580 +0,0 @@ -' - . '
' - . PMA_generate_common_hidden_inputs($db) - . '
' - . ''; - if ($GLOBALS['cfg']['PropertiesIconic']) { - $html_output .= ''; - } - $html_output .= __('Database comment: '); - $html_output .= ''; - $html_output .= '' - . '
'; - $html_output .= '
' - . '' - . '
' - . '
' - . '
'; - - return $html_output; -} - -/** - * Get HTML output for rename database - * - * @param $db database name - * - * @return string $html_output - */ -function PMA_getHtmlForRenameDatabase($db) -{ - $html_output = '
' - . '
'; - if (isset($_REQUEST['db_collation'])) { - $html_output .= '' . "\n"; - } - $html_output .= '' - . '' - . PMA_generate_common_hidden_inputs($db) - . '
' - . ''; - - if ($GLOBALS['cfg']['PropertiesIconic']) { - $html_output .= PMA_CommonFunctions::getInstance()->getImage('b_edit.png'); - } - $html_output .= __('Rename database to') . ':' - . ''; - - $html_output .= '' - . '
' - . '
' - . '' - . '
' - . '
' - . '
'; - - return $html_output; -} - -/** - * Get HTML for database drop link - * - * @param $db database name - * - * @return string $html_output - */ -function PMA_getHtmlForDropDatabaseLink($db) -{ - $common_functions = PMA_CommonFunctions::getInstance(); - - $this_sql_query = 'DROP DATABASE ' . $common_functions->backquote($db); - $this_url_params = array( - 'sql_query' => $this_sql_query, - 'back' => 'db_operations.php', - 'goto' => 'main.php', - 'reload' => '1', - 'purge' => '1', - 'message_to_show' => sprintf( - __('Database %s has been dropped.') - , htmlspecialchars($common_functions->backquote($db)) - ), - 'db' => null, - ); - - $html_output = '
' - . '
'; - $html_output .= ''; - if ($GLOBALS['cfg']['PropertiesIconic']) { - $html_output .= $common_functions->getImage('b_deltbl.png'); - } - $html_output .= __('Remove database') - . ''; - $html_output .= '
' - . '
'; - - return $html_output; -} - -/** - * Get HTML snippet for copy database - * - * @param $db database name - * - * @return string $html_output - */ -function PMA_getHtmlForCopyDatabase($db) -{ - $drop_clause = 'DROP TABLE / DROP VIEW'; - $choices = array( - 'structure' => __('Structure only'), - 'data' => __('Structure and data'), - 'dataonly' => __('Data only') - ); - - if (isset($_COOKIE) - && isset($_COOKIE['pma_switch_to_new']) - && $_COOKIE['pma_switch_to_new'] == 'true' - ) { - $pma_switch_to_new = 'true'; - } - - $html_output = '
'; - $html_output .= '
'; - - if (isset($_REQUEST['db_collation'])) { - $html_output .= '' . "\n"; - } - $html_output .= '' . "\n" - . PMA_generate_common_hidden_inputs($db); - $html_output .= '
' - . ''; - - if ($GLOBALS['cfg']['PropertiesIconic']) { - $html_output .= PMA_CommonFunctions::getInstance()->getImage('b_edit.png'); - } - $html_output .= __('Copy database to') . ':' - . '' - . '
' - . PMA_CommonFunctions::getInstance()->getRadioFields( - 'what', $choices, 'data', true - ); - $html_output .= ''; - $html_output .= '
'; - $html_output .= ''; - $html_output .= '
'; - $html_output .= ''; - $html_output .= '
'; - $html_output .= ''; - $html_output .= '
'; - $html_output .= ''; - $html_output .= '' - . '
'; - $html_output .= '
' - . '' - . '
' - . '
' - . '
'; - - return $html_output; -} - -/** - * Get HTML snippet for change database charset - * - * @param $db database name - * @param $table tabel name - * - * @return string $html_output - */ -function PMA_getHtmlForChangeDatabaseCharset($db, $table) -{ - $html_output = '
'; - if ($GLOBALS['cfg']['PropertiesIconic']) { - $html_output .= PMA_CommonFunctions::getInstance()->getImage('s_asci.png'); - } - $html_output .= '' . "\n" - . '' . "\n" - . PMA_generateCharsetDropdownBox( - PMA_CSDROPDOWN_COLLATION, 'db_collation', - 'select_db_collation', - (isset ($_REQUEST['db_collation']) ? $_REQUEST['db_collation'] : ''), - false, 3 - ) - . '' - . '
' - . '' . "\n" - . '
' . "\n" - . '
' . "\n"; - - return $html_output; -} - -/** - * Get HTML snippet for export relational schema view - * - * @param string $url_query - * - * @return string $html_output - */ -function PMA_getHtmlForExportRelationalSchemaView($url_query) -{ - $html_output = ''; - - return $html_output; -} - -/** - * Run the Procedure definitions and function definitions - * - * to avoid selecting alternatively the current and new db - * we would need to modify the CREATE definitions to qualify - * the db name - * - * @param $db database name - */ -function PMA_runProcedureAndFunctionDefinitions($db) -{ - $procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE'); - if ($procedure_names) { - foreach ($procedure_names as $procedure_name) { - PMA_DBI_select_db($db); - $tmp_query = PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name); - // collect for later display - $GLOBALS['sql_query'] .= "\n" . $tmp_query; - PMA_DBI_select_db($_REQUEST['newname']); - PMA_DBI_query($tmp_query); - } - } - - $function_names = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION'); - if ($function_names) { - foreach ($function_names as $function_name) { - PMA_DBI_select_db($db); - $tmp_query = PMA_DBI_get_definition($db, 'FUNCTION', $function_name); - // collect for later display - $GLOBALS['sql_query'] .= "\n" . $tmp_query; - PMA_DBI_select_db($_REQUEST['newname']); - PMA_DBI_query($tmp_query); - } - } -} - -/** - * Get sql query and create database before copy - * - * @return string $sql_query - */ -function PMA_getSqlQueryAndCreateDbBeforeCopy() -{ - // lower_case_table_names=1 `DB` becomes `db` - if (! PMA_DRIZZLE) { - $lower_case_table_names = PMA_DBI_fetch_value( - 'SHOW VARIABLES LIKE "lower_case_table_names"', 0, 1 - ); - if ($lower_case_table_names === '1') { - $_REQUEST['newname'] = PMA_strtolower($_REQUEST['newname']); - } - } - - $local_query = 'CREATE DATABASE ' - . PMA_CommonFunctions::getInstance()->backquote($_REQUEST['newname']); - if (isset($_REQUEST['db_collation'])) { - $local_query .= ' DEFAULT' - . PMA_generateCharsetQueryPart($_REQUEST['db_collation']); - } - $local_query .= ';'; - $sql_query = $local_query; - // save the original db name because Tracker.class.php which - // may be called under PMA_DBI_query() changes $GLOBALS['db'] - // for some statements, one of which being CREATE DATABASE - $original_db = $GLOBALS['db']; - PMA_DBI_query($local_query); - $GLOBALS['db'] = $original_db; - - // rebuild the database list because PMA_Table::moveCopy - // checks in this list if the target db exists - $GLOBALS['pma']->databases->build(); - - return $sql_query; -} - -/** - * remove all foreign key constraints and return sql constraints query for full database - * - * @param array $tables_full array of all tables in given db or dbs - * @param instance $export_sql_plugin export plugin instance - * @param boolean $move whether databse name is empty or not - * @param $db database name - */ -function PMA_getSqlConstraintsQueryForFullDb($tables_full, $export_sql_plugin, $move, $db) -{ - $sql_constraints_query_full_db = array(); - foreach ($tables_full as $each_table => $tmp) { - $sql_constraints = ''; - $sql_drop_foreign_keys = ''; - $sql_structure = $export_sql_plugin->getTableDef( - $db, $each_table, "\n", '', false, false - ); - if ($move && ! empty($sql_drop_foreign_keys)) { - PMA_DBI_query($sql_drop_foreign_keys); - } - // keep the constraint we just dropped - if (! empty($sql_constraints)) { - $sql_constraints_query_full_db[] = $sql_constraints; - } - } - return $sql_constraints_query_full_db; -} - -/** - * Get views as an array and create SQL view stand-in - * - * @param array $tables_full array of all tables in given db or dbs - * @param instance $export_sql_plugin export plugin instance - * @param $db database name - * - * @return array $views - */ -function PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin, $db) -{ - $views = array(); - foreach ($tables_full as $each_table => $tmp) { - // to be able to rename a db containing views, - // first all the views are collected and a stand-in is created - // the real views are created after the tables - if (PMA_Table::isView($db, $each_table)) { - $views[] = $each_table; - // Create stand-in definition to resolve view dependencies - $sql_view_standin = $export_sql_plugin->getTableDefStandIn( - $db, $each_table, "\n" - ); - PMA_DBI_select_db($_REQUEST['newname']); - PMA_DBI_query($sql_view_standin); - $GLOBALS['sql_query'] .= "\n" . $sql_view_standin; - } - } - return $views; -} - -/** - * Get sql query for copy/rename table and boolean for whether copy/rename or not - * - * @param array $tables_full array of all tables in given db or dbs - * @param string $sql_query sql query for all operations - * @param boolean $move whether databse name is empty or not - * @param $db database name - * - * @return array ($sql_query, $error) - */ -function PMA_getSqlQueryForCopyTable($tables_full, $sql_query, $move, $db) -{ - $error = false; - foreach ($tables_full as $each_table => $tmp) { - // skip the views; we have creted stand-in definitions - if (PMA_Table::isView($db, $each_table)) { - continue; - } - $back = $sql_query; - $sql_query = ''; - - // value of $what for this table only - $this_what = $_REQUEST['what']; - - // do not copy the data from a Merge table - // note: on the calling FORM, 'data' means 'structure and data' - if (PMA_Table::isMerge($db, $each_table)) { - if ($this_what == 'data') { - $this_what = 'structure'; - } - if ($this_what == 'dataonly') { - $this_what = 'nocopy'; - } - } - - if ($this_what != 'nocopy') { - // keep the triggers from the original db+table - // (third param is empty because delimiters are only intended - // for importing via the mysql client or our Import feature) - $triggers = PMA_DBI_get_triggers($db, $each_table, ''); - - if (! PMA_Table::moveCopy( - $db, $each_table, $_REQUEST['newname'], $each_table, - isset($this_what) ? $this_what : 'data', - $move, 'db_copy' - )) { - $error = true; - // $sql_query is filled by PMA_Table::moveCopy() - $sql_query = $back . $sql_query; - break; - } - // apply the triggers to the destination db+table - if ($triggers) { - PMA_DBI_select_db($_REQUEST['newname']); - foreach ($triggers as $trigger) { - PMA_DBI_query($trigger['create']); - $GLOBALS['sql_query'] .= "\n" . $trigger['create'] . ';'; - } - } - - // this does not apply to a rename operation - if (isset($_REQUEST['add_constraints']) - && ! empty($GLOBALS['sql_constraints_query']) - ) { - $GLOBALS['sql_constraints_query_full_db'][] - = $GLOBALS['sql_constraints_query']; - unset($GLOBALS['sql_constraints_query']); - } - } - // $sql_query is filled by PMA_Table::moveCopy() - $sql_query = $back . $sql_query; - } - return array($sql_query, $error); -} - -/** - * Run the EVENT definition for selected database - * - * to avoid selecting alternatively the current and new db - * we would need to modify the CREATE definitions to qualify - * the db name - * - * @param $db database name - */ -function PMA_runEventDefinitionsForDb($db) -{ - $event_names = PMA_DBI_fetch_result( - 'SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' - . PMA_CommonFunctions::getInstance()->sqlAddSlashes($db, true) . '\';' - ); - if ($event_names) { - foreach ($event_names as $event_name) { - PMA_DBI_select_db($db); - $tmp_query = PMA_DBI_get_definition($db, 'EVENT', $event_name); - // collect for later display - $GLOBALS['sql_query'] .= "\n" . $tmp_query; - PMA_DBI_select_db($_REQUEST['newname']); - PMA_DBI_query($tmp_query); - } - } -} - -/** - * Handle the views, return the boolean value whether table rename/copy or not - * - * @param array $views views as an array - * @param boolean $move whether databse name is empty or not - * @param $db database name - * - * @return boolean $_error whether table rename/copy or not - */ -function PMA_handleTheViews($views, $move, $db) -{ - $_error = false; - // temporarily force to add DROP IF EXIST to CREATE VIEW query, - // to remove stand-in VIEW that was created earlier - if (isset($_REQUEST['drop_if_exists'])) { - $temp_drop_if_exists = $_REQUEST['drop_if_exists']; - } - $_REQUEST['drop_if_exists'] = 'true'; - - foreach ($views as $view) { - if (! PMA_Table::moveCopy($db, $view, $_REQUEST['newname'], - $view, 'structure', $move, 'db_copy') - ) { - $_error = true; - break; - } - } - unset($_REQUEST['drop_if_exists']); - if (isset($temp_drop_if_exists)) { - // restore previous value - $_REQUEST['drop_if_exists'] = $temp_drop_if_exists; - } - return $_error; -} - -/** - * Create all accumulated constraaints - */ -function PMA_createAllAccumulatedConstraints() -{ - PMA_DBI_select_db($_REQUEST['newname']); - foreach ($GLOBALS['sql_constraints_query_full_db'] as $one_query) { - PMA_DBI_query($one_query); - // and prepare to display them - $GLOBALS['sql_query'] .= "\n" . $one_query; - } - unset($GLOBALS['sql_constraints_query_full_db']); -} - -/** - * Duplicate the bookmarks for the db (done once for each db) - * - * @param boolean $_error whether table rename/copy or not - * @param string $db database name - */ -function PMA_duplicateBookmarks($_error, $db) -{ - if (! $_error && $db != $_REQUEST['newname']) { - $get_fields = array('user', 'label', 'query'); - $where_fields = array('dbase' => $db); - $new_fields = array('dbase' => $_REQUEST['newname']); - PMA_Table::duplicateInfo( - 'bookmarkwork', 'bookmark', $get_fields, - $where_fields, $new_fields - ); - } -} -?> From a102f55a905ddcbc4570bfca69bd59b640aa0ea2 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 28 Jul 2012 19:02:18 +0530 Subject: [PATCH 30/79] spelling mistake --- db_operations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_operations.php b/db_operations.php index 3e9a11d3dc..56ee02c6d4 100644 --- a/db_operations.php +++ b/db_operations.php @@ -21,7 +21,7 @@ require_once 'libraries/mysql_charsets.lib.php'; /** * functions implementation for this script */ -require_once 'libraries/db_operations.lib.php'; +require_once 'libraries/operations.lib.php'; // add a javascript file for jQuery functions to handle Ajax actions $response = PMA_Response::getInstance(); From f5f7ec64484dab921cc1dce0407e0e118c2740b3 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sun, 29 Jul 2012 22:12:24 +0530 Subject: [PATCH 31/79] remove echo --- db_operations.php | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/db_operations.php b/db_operations.php index 56ee02c6d4..4b54c2c364 100644 --- a/db_operations.php +++ b/db_operations.php @@ -214,15 +214,19 @@ if (!$is_information_schema) { $response->addHTML(PMA_getHtmlForDatabaseComment($db)); } - echo '
'; - include 'libraries/display_create_table.lib.php'; - echo '
'; + $response->addHTML('
'); + ob_start(); + include 'libraries/display_create_table.lib.php'; + $content = ob_get_contents(); + ob_end_clean(); + $response->addHTML($content); + $response->addHTML('
'); /** * rename database */ if ($db != 'mysql') { - echo PMA_getHtmlForRenameDatabase($db); + $response->addHTML(PMA_getHtmlForRenameDatabase($db)); } // Drop link if allowed @@ -232,17 +236,17 @@ if (!$is_information_schema) { && ! $db_is_information_schema && (PMA_DRIZZLE || $db != 'mysql') ) { - echo PMA_getHtmlForDropDatabaseLink($db); + $response->addHTML(PMA_getHtmlForDropDatabaseLink($db)); } /** * Copy database */ - echo PMA_getHtmlForCopyDatabase($db); + $response->addHTML(PMA_getHtmlForCopyDatabase($db)); /** * Change database charset */ - echo PMA_getHtmlForChangeDatabaseCharset($db, $table); + $response->addHTML(PMA_getHtmlForChangeDatabaseCharset($db, $table)); if ($num_tables > 0 && ! $cfgRelation['allworks'] @@ -260,9 +264,9 @@ if (!$is_information_schema) { if (!empty($cfg['Servers'][$server]['pmadb'])) { $message->isError(true); } - echo '
'; - $message->display(); - echo '
'; + $response->addHTML('
'); + $response->addHTML($message->getDisplay()); + $response->addHTML('
'); } // end if } // end if (!$is_information_schema) @@ -280,7 +284,7 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) { /* * Export Relational Schema View */ - echo PMA_getHtmlForExportRelationalSchemaView($url_query); + $response->addHTML(PMA_getHtmlForExportRelationalSchemaView($url_query)); } // end if ?> From d9933223977c52426edcfc9f558fc754baa6217b Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sun, 29 Jul 2012 22:53:19 +0530 Subject: [PATCH 32/79] remove some HTML tags from tbl_operation script --- libraries/operations.lib.php | 441 +++++++++++++++++++++++++++++++++++ tbl_operations.php | 331 ++------------------------ 2 files changed, 461 insertions(+), 311 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index fb4509e559..f7c325d338 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -577,4 +577,445 @@ function PMA_duplicateBookmarks($_error, $db) ); } } + +/** + * Get the HTML snippet for order the table + * + * @param type $columns columns array + * + * @return string $html_out + */ +function PMA_getHtmlForOrderTheTable($columns) +{ + $html_output = '
'; + $html_output .= '
'; + $html_output .= PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']); + $html_output .= '
' + . '' . __('Alter table order by') . '' + . ' ' . __('(singly)') + . '' + . '
' + . '
' + . '' + . '
' + . '
' + . '
'; + + return $html_output; +} + +/** + * Get the HTML snippet for move table + * + * @return string $html_output + */ +function PMA_getHtmlForMoveTable() +{ + $html_output = '
'; + $html_output .= '
' + . PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']); + + $html_output .= '' + . '' + . '
'; + + $html_output .= '' . __('Move table to (database.table):') + . ''; + + if (count($GLOBALS['pma']->databases) > $GLOBALS['cfg']['MaxDbList']) { + $html_output .= ''; + } else { + $html_output .= ''; + } + $html_output .= ' . '; + $html_output .= '
'; + + // starting with MySQL 5.0.24, SHOW CREATE TABLE includes the AUTO_INCREMENT + // next value but users can decide if they want it or not for the operation + + $html_output .= '' + . '
' + . '
'; + + $html_output .= '
' + . '' + . '
' + . '
' + . '
'; + + return $html_output; +} + +/** + * Get the HTML div for Table opption + * + * @param string $comment Comment + * @param array $tbl_collation table collation + * @param string $tbl_storage_engine table storage engine + * @param boolean $is_myisam_or_aria whether MYISAM | ARIA or not + * @param boolean $is_isam whether ISAM or not + * @param array $pack_keys pack keys + * @param string $delay_key_write delay key write + * @param string $auto_increment value of auto increment + * @param string $transactional value of transactional + * @param string $page_checksum value of page checksum + * @param boolean $is_innodb whether INNODB or not + * @param boolean $is_pbxt whether PBXT or not + * @param boolean $is_aria whether ARIA or not + * + * @return string $html_output + */ +function PMA_getTableOptionDiv($comment, $tbl_collation, $tbl_storage_engine, + $is_myisam_or_aria, $is_isam, $pack_keys, $delay_key_write, $auto_increment, + $transactional, $page_checksum, $is_innodb, $is_pbxt, $is_aria +) { + $html_output = '
'; + $html_output .= '
'; + $html_output .= PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']) + . ''; + + $html_output .= PMA_getTableOptionFieldset($comment, $tbl_collation, $tbl_storage_engine, + $is_myisam_or_aria, $is_isam, $pack_keys, $delay_key_write, $auto_increment, + $transactional, $page_checksum, $is_innodb, $is_pbxt,$is_aria + ); + + $html_output .= '
' + . '' + . '
' + . '
' + . '
'; + + return $html_output; +} + +/** + * Get HTML fieldset for Table option, it contains HTML table for options + * + * @param string $comment Comment + * @param array $tbl_collation table collation + * @param string $tbl_storage_engine table storage engine + * @param boolean $is_myisam_or_aria whether MYISAM | ARIA or not + * @param boolean $is_isam whether ISAM or not + * @param array $pack_keys pack keys + * @param string $delay_key_write delay key write + * @param string $auto_increment value of auto increment + * @param string $transactional value of transactional + * @param string $page_checksum value of page checksum + * @param boolean $is_innodb whether INNODB or not + * @param boolean $is_pbxt whether PBXT or not + * @param boolean $is_aria whether ARIA or not + * + * @return string $html_output + */ +function PMA_getTableOptionFieldset($comment, $tbl_collation, $tbl_storage_engine, + $is_myisam_or_aria, $is_isam, $pack_keys, $delay_key_write, $auto_increment, + $transactional, $page_checksum, $is_innodb, $is_pbxt, $is_aria +) { + $html_output = '
' + . '' . __('Table options') . ''; + + $html_output .= ''; + //Change table name + $html_output .= '' + . '' + . ''; + + //Table comments + $html_output .= '' + . '' + . ''; + + //Storage engine + $html_output .= '' + . '' + . ''; + + //Table character set + $html_output .= '' + . '' + . ''; + + if ($is_myisam_or_aria || $is_isam) { + $html_output .= '' + . '' + . '' + . ''; + } // end if (MYISAM|ISAM) + + if ($is_myisam_or_aria) { + $html_output .= '' + . ''; + + $html_output .= '' + . ''; + } // end if (MYISAM) + + if ($is_aria) { + $html_output .= '' + . ''; + + $html_output .= '' + . ''; + } // end if (ARIA) + + if (isset($_REQUEST['auto_increment']) + && strlen($_REQUEST['auto_increment']) > 0 + && ($is_myisam_or_aria || $is_innodb || $is_pbxt) + ) { + $html_output .= '' + . '' + . ' '; + } // end if (MYISAM|INNODB) + + $possible_row_formats = PMA_getPossibleRowFormat(); + + // for MYISAM there is also COMPRESSED but it can be set only by the + // myisampack utility, so don't offer here the choice because if we + // try it inside an ALTER TABLE, MySQL (at least in 5.1.23-maria) + // does not return a warning + // (if the table was compressed, it can be seen on the Structure page) + + if (isset($possible_row_formats[$tbl_storage_engine])) { + $current_row_format = strtoupper($GLOBALS['showtable']['Row_format']); + $html_output .= '' + . ''; + } + $html_output .= '
' . __('Rename table to') . '' + . '
' . __('Table comments') . '' + . '' + . '
' . __('Storage Engine') + . PMA_CommonFunctions::getInstance()->showMySQLDocu( + 'Storage_engines', 'Storage_engines' + ) + . '' + . PMA_StorageEngine::getHtmlSelect( + 'new_tbl_storage_engine', null, $tbl_storage_engine + ) + . '
' . __('Collation') . '' + . PMA_generateCharsetDropdownBox( + PMA_CSDROPDOWN_COLLATION, + 'tbl_collation', null, $tbl_collation, false, 3 + ) + . '
' + . '
' + . '' + . '
' + . '' + . '
' + . '' + . '
' + . '
' + . ''; + $html_output .= PMA_CommonFunctions::getInstance()->getDropdown( + 'new_row_format', $possible_row_formats[$tbl_storage_engine], + $current_row_format, 'new_row_format' + ); + $html_output .= '
' + . '
'; + + return $html_output; +} + +/** + * Get array of possible row formats + * + * @return array $possible_row_formats + */ +function PMA_getPossibleRowFormat() +{ + // the outer array is for engines, the inner array contains the dropdown + // option values as keys then the dropdown option labels + + $possible_row_formats = array( + 'ARIA' => array( + 'FIXED' => 'FIXED', + 'DYNAMIC' => 'DYNAMIC', + 'PAGE' => 'PAGE' + ), + 'MARIA' => array( + 'FIXED' => 'FIXED', + 'DYNAMIC' => 'DYNAMIC', + 'PAGE' => 'PAGE' + ), + 'MYISAM' => array( + 'FIXED' => 'FIXED', + 'DYNAMIC' => 'DYNAMIC' + ), + 'PBXT' => array( + 'FIXED' => 'FIXED', + 'DYNAMIC' => 'DYNAMIC' + ), + 'INNODB' => array( + 'COMPACT' => 'COMPACT', + 'REDUNDANT' => 'REDUNDANT') + ); + + $innodb_engine_plugin = PMA_StorageEngine::getEngine('innodb'); + $innodb_plugin_version = $innodb_engine_plugin->getInnodbPluginVersion(); + if (!empty($innodb_plugin_version)) { + $innodb_file_format = $innodb_engine_plugin->getInnodbFileFormat(); + } else { + $innodb_file_format = ''; + } + if ('Barracuda' == $innodb_file_format + && $innodb_engine_plugin->supportsFilePerTable() + ) { + $possible_row_formats['INNODB']['DYNAMIC'] = 'DYNAMIC'; + $possible_row_formats['INNODB']['COMPRESSED'] = 'COMPRESSED'; + } + + return $possible_row_formats; +} + +/** + * Get HTML div for copy table + * + * @return string $html_output + */ +function PMA_getHtmlForCopytable() +{ + $html_output = '
'; + $html_output .= '
' + . PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']) + . ''; + + $html_output .= '
'; + $html_output .= '' + . __('Copy table to (database.table):') . ''; + + if (count($GLOBALS['pma']->databases) > $GLOBALS['cfg']['MaxDbList']) { + $html_output .= ''; + } else { + $html_output .= ''; + } + $html_output .= ' . '; + $html_output .= '
'; + + $choices = array( + 'structure' => __('Structure only'), + 'data' => __('Structure and data'), + 'dataonly' => __('Data only')); + + $html_output .= PMA_CommonFunctions::getInstance()->getRadioFields( + 'what', $choices, 'data', true + ); + + $html_output .= '' + . '
' + . '' + . '
'; + + // display "Add constraints" choice only if there are + // foreign keys + if (PMA_getForeigners($GLOBALS['db'], $GLOBALS['table'], '', 'foreign')) { + $html_output .= ''; + $html_output .= '
'; + } // endif + + if (isset($_COOKIE['pma_switch_to_new']) + && $_COOKIE['pma_switch_to_new'] == 'true' + ) { + $pma_switch_to_new = 'true'; + } + + $html_output .= ''; + $html_output .= '' + . '
'; + + $html_output .= '
' + . '' + . '
' + . '
' + . '
'; + + return $html_output; +} + ?> diff --git a/tbl_operations.php b/tbl_operations.php index 66f687cd50..ee1090bc93 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -10,6 +10,11 @@ */ require_once 'libraries/common.inc.php'; +/** + * functions implementation for this script + */ +require_once 'libraries/operations.lib.php'; + $pma_table = new PMA_Table($GLOBALS['table'], $GLOBALS['db']); $common_functions = PMA_CommonFunctions::getInstance(); @@ -271,71 +276,16 @@ $columns = PMA_DBI_get_columns($GLOBALS['db'], $GLOBALS['table']); /** * Displays the page */ -?> - -
-
> - -
- - - -
-
- -
-
-
+/** + * Order the table + */ +echo PMA_getHtmlForOrderTheTable($columns); - -
-
- - - -
- .table):'); ?> -databases) > $GLOBALS['cfg']['MaxDbList']) { -?> - - - - -  .  -
- - -
-
-
- -
-
-
+/** + * Move table + */ +echo PMA_getHtmlForMoveTable(); -5.0.4, >4.1.12 and >4.0.11, so I decided not to // check for version -?> - -
-
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - && ($is_myisam_or_aria || $is_innodb || $is_pbxt) -) { - ?> - - - - array( - 'FIXED' => 'FIXED', - 'DYNAMIC' => 'DYNAMIC', - 'PAGE' => 'PAGE' - ), - 'MARIA' => array( - 'FIXED' => 'FIXED', - 'DYNAMIC' => 'DYNAMIC', - 'PAGE' => 'PAGE' - ), - 'MYISAM' => array( - 'FIXED' => 'FIXED', - 'DYNAMIC' => 'DYNAMIC' - ), - 'PBXT' => array( - 'FIXED' => 'FIXED', - 'DYNAMIC' => 'DYNAMIC' - ), - 'INNODB' => array( - 'COMPACT' => 'COMPACT', - 'REDUNDANT' => 'REDUNDANT') +echo PMA_getTableOptionDiv($comment, $tbl_collation, $tbl_storage_engine, + $is_myisam_or_aria, $is_isam, $pack_keys, $delay_key_write, $auto_increment, + $transactional, $page_checksum, $is_innodb, $is_pbxt, $is_aria ); -$innodb_engine_plugin = PMA_StorageEngine::getEngine('innodb'); -$innodb_plugin_version = $innodb_engine_plugin->getInnodbPluginVersion(); -if (!empty($innodb_plugin_version)) { - $innodb_file_format = $innodb_engine_plugin->getInnodbFileFormat(); -} else { - $innodb_file_format = ''; -} -if ('Barracuda' == $innodb_file_format && $innodb_engine_plugin->supportsFilePerTable()) { - $possible_row_formats['INNODB']['DYNAMIC'] = 'DYNAMIC'; - $possible_row_formats['INNODB']['COMPRESSED'] = 'COMPRESSED'; -} -unset($innodb_engine_plugin, $innodb_plugin_version, $innodb_file_format); +/** + * Copy table + */ +echo PMA_getHtmlForCopytable(); -// for MYISAM there is also COMPRESSED but it can be set only by the -// myisampack utility, so don't offer here the choice because if we -// try it inside an ALTER TABLE, MySQL (at least in 5.1.23-maria) -// does not return a warning -// (if the table was compressed, it can be seen on the Structure page) - -if (isset($possible_row_formats[$tbl_storage_engine])) { - $current_row_format = strtoupper($showtable['Row_format']); - echo ''; - echo ''; - echo ''; -} ?> -
-
- -
- showMySQLDocu('Storage_engines', 'Storage_engines'); ?> - -
-
-
/> -
/> -
/> -
/> -
'; - echo $common_functions->getDropdown( - 'new_row_format', $possible_row_formats[$tbl_storage_engine], - $current_row_format, 'new_row_format' - ); - unset($possible_row_formats, $current_row_format); - echo '
-
-
- -
-
-
- - -
-
- onsubmit="return emptyFormElements(this, 'new_name')"> - - -
- .table):'); ?> -databases) > $GLOBALS['cfg']['MaxDbList']) { -?> - - - - -  .  -
- __('Structure only'), - 'data' => __('Structure and data'), - 'dataonly' => __('Data only')); - echo $common_functions->getRadioFields('what', $choices, 'data', true); - unset($choices); -?> - - -
- -
- - -
- - /> - -
-
- -
-
-
-
From 5521c6bfdb8928b0f75a6476cfb17917f4a8e8b6 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Mon, 30 Jul 2012 21:55:45 +0530 Subject: [PATCH 33/79] PMA_getHtmlForTableMaintenance() function implementation --- libraries/operations.lib.php | 154 +++++++++++++++++++++++++++++++++++ tbl_operations.php | 107 ++---------------------- 2 files changed, 161 insertions(+), 100 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index f7c325d338..9eaf38ea41 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1018,4 +1018,158 @@ function PMA_getHtmlForCopytable() return $html_output; } +function PMA_getHtmlForTableMaintenance( + $is_myisam_or_aria, $is_innodb, $is_berkeleydb, $url_params +) { + $common_functions = PMA_CommonFunctions::getInstance(); + + $html_output = '
'; + $html_output .= '
' + . '' . __('Table maintenance') . ''; + $html_output .= '
    '; + + // Note: BERKELEY (BDB) is no longer supported, starting with MySQL 5.1 + if ($is_myisam_or_aria || $is_innodb || $is_berkeleydb) { + if ($is_myisam_or_aria || $is_innodb) { + $this_url_params = array_merge( + $url_params, + array( + 'sql_query' => 'CHECK TABLE ' + . $common_functions->backquote($GLOBALS['table']), + 'table_maintenance' => 'Go', + ) + ); + $html_output .= '
  • ' + . '' + . __('Check table') + . ''; + $html_output .= $common_functions->showMySQLDocu( + 'MySQL_Database_Administration', + 'CHECK_TABLE' + ); + $html_output .= '
  • '; + } + + if ($is_innodb) { + $this_url_params = array_merge( + $url_params, + array('sql_query' => 'ALTER TABLE ' + . $common_functions->backquote($GLOBALS['table']) + . ' ENGINE = InnoDB;' + ) + ); + $html_output .= '
  • ' + . '' + . __('Defragment table') + . '' + . $common_functions->showMySQLDocu( + 'Table_types', + 'InnoDB_File_Defragmenting' + ) + . '
  • '; + } + + if ($is_myisam_or_aria || $is_berkeleydb) { + $this_url_params = array_merge( + $url_params, + array( + 'sql_query' => 'ANALYZE TABLE ' + . $common_functions->backquote($GLOBALS['table']), + 'table_maintenance' => 'Go', + ) + ); + $html_output .= '
  • ' + . '' + . __('Analyze table') + . '' + . $common_functions->showMySQLDocu( + 'MySQL_Database_Administration', + 'ANALYZE_TABLE' + ) + . '
  • '; + } + + if ($is_myisam_or_aria && !PMA_DRIZZLE) { + $this_url_params = array_merge( + $url_params, + array( + 'sql_query' => 'REPAIR TABLE ' + . $common_functions->backquote($GLOBALS['table']), + 'table_maintenance' => 'Go', + ) + ); + $html_output .= '
  • ' + . '' + . __('Repair table') + . '' + . $common_functions->showMySQLDocu( + 'MySQL_Database_Administration', + 'REPAIR_TABLE' + ) + . '
  • '; + + } + + if (($is_myisam_or_aria || $is_innodb || $is_berkeleydb) && !PMA_DRIZZLE) { + $this_url_params = array_merge( + $url_params, + array( + 'sql_query' => 'OPTIMIZE TABLE ' + . $common_functions->backquote($GLOBALS['table']), + 'table_maintenance' => 'Go', + ) + ); + + $html_output .= '
  • ' + . '' + . __('Optimize table') + . '' + . $common_functions->showMySQLDocu( + 'MySQL_Database_Administration', + 'OPTIMIZE_TABLE' + ) + . '
  • '; + } + } // end MYISAM or BERKELEYDB case + + $this_url_params = array_merge( + $url_params, + array( + 'sql_query' => 'FLUSH TABLE ' + . $common_functions->backquote($GLOBALS['table']), + 'message_to_show' => sprintf( + __('Table %s has been flushed'), + htmlspecialchars($GLOBALS['table']) + ), + 'reload' => 1, + ) + ); + + $html_output .= '
  • ' + . __('Flush the table (FLUSH)') + . '' + . $common_functions->showMySQLDocu( + 'MySQL_Database_Administration' + , 'FLUSH' + ) + . '
  • '; + + $html_output .= '
' + . '
' + . '
'; + + return $html_output; +} + ?> diff --git a/tbl_operations.php b/tbl_operations.php index ee1090bc93..f0555533f8 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -317,109 +317,16 @@ echo PMA_getTableOptionDiv($comment, $tbl_collation, $tbl_storage_engine, */ echo PMA_getHtmlForCopytable(); -?> -
+echo '
'; -
-
- +/** + * Table mainatenance + */ +echo PMA_getHtmlForTableMaintenance($is_myisam_or_aria, $is_innodb, + $is_berkeleydb, $url_params + ); -
    > - 'CHECK TABLE ' . $common_functions->backquote($GLOBALS['table']), - 'table_maintenance' => 'Go', - ) - ); - ?> -
  • - - showMySQLDocu('MySQL_Database_Administration', 'CHECK_TABLE'); ?> -
  • - 'ALTER TABLE ' . $common_functions->backquote($GLOBALS['table']) . ' ENGINE = InnoDB;') - ); - ?> -
  • - - showMySQLDocu('Table_types', 'InnoDB_File_Defragmenting'); ?> -
  • - 'ANALYZE TABLE ' . $common_functions->backquote($GLOBALS['table']), - 'table_maintenance' => 'Go', - ) - ); - ?> -
  • - - showMySQLDocu('MySQL_Database_Administration', 'ANALYZE_TABLE');?> -
  • - 'REPAIR TABLE ' . $common_functions->backquote($GLOBALS['table']), - 'table_maintenance' => 'Go', - ) - ); - ?> -
  • - - showMySQLDocu('MySQL_Database_Administration', 'REPAIR_TABLE'); ?> -
  • - 'OPTIMIZE TABLE ' . $common_functions->backquote($GLOBALS['table']), - 'table_maintenance' => 'Go', - ) - ); - ?> -
  • - - showMySQLDocu('MySQL_Database_Administration', 'OPTIMIZE_TABLE'); ?> -
  • - 'FLUSH TABLE ' . $common_functions->backquote($GLOBALS['table']), - 'message_to_show' => sprintf( - __('Table %s has been flushed'), - htmlspecialchars($GLOBALS['table']) - ), - 'reload' => 1, - ) -); ?> -
  • - - showMySQLDocu('MySQL_Database_Administration', 'FLUSH'); ?> -
  • -
-
-
From 69ba675a89b284b0cb445ac737d1d2e4994b3eb5 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Tue, 31 Jul 2012 07:08:55 +0530 Subject: [PATCH 34/79] merge upstream master --- ChangeLog | 4 + db_qbe.php | 1049 +------ import.php | 6 + js/makegrid.js | 8 +- libraries/DBQbe.class.php | 1278 ++++++++ libraries/DisplayResults.class.php | 156 +- libraries/Table.class.php | 5 + libraries/plugin_interface.lib.php | 85 +- libraries/plugins/ExportPlugin.class.php | 204 -- .../plugins/export/ExportCodegen.class.php | 10 +- libraries/plugins/export/ExportCsv.class.php | 152 +- .../plugins/export/ExportExcel.class.php | 32 +- .../plugins/export/ExportHtmlword.class.php | 29 +- libraries/plugins/export/ExportJson.class.php | 8 +- .../plugins/export/ExportLatex.class.php | 36 +- .../plugins/export/ExportMediawiki.class.php | 363 +++ libraries/plugins/export/ExportOds.class.php | 17 +- libraries/plugins/export/ExportOdt.class.php | 32 +- libraries/plugins/export/ExportPdf.class.php | 18 +- .../plugins/export/ExportPhparray.class.php | 15 +- libraries/plugins/export/ExportSql.class.php | 1720 +++++++++++ .../plugins/export/ExportTexytext.class.php | 26 +- libraries/plugins/export/ExportXml.class.php | 20 +- libraries/plugins/export/ExportYaml.class.php | 8 +- libraries/relation.lib.php | 131 +- libraries/rte/rte_routines.lib.php | 35 +- pmd_pdf.php | 15 +- pmd_relation_new.php | 18 +- pmd_save_pos.php | 9 +- po/af.po | 2145 +++++++------- po/ar.po | 2155 +++++++------- po/az.po | 2170 +++++++------- po/be.po | 2195 +++++++------- po/be@latin.po | 2197 +++++++------- po/bg.po | 2156 +++++++------- po/bn.po | 2159 +++++++------- po/br.po | 2120 +++++++------- po/bs.po | 2178 +++++++------- po/ca.po | 2374 ++++++++------- po/ckb.po | 2108 +++++++------- po/cs.po | 2149 +++++++------- po/cy.po | 2134 +++++++------- po/da.po | 2172 +++++++------- po/de.po | 2170 +++++++------- po/el.po | 2172 +++++++------- po/en_GB.po | 2144 +++++++------- po/es.po | 2183 +++++++------- po/et.po | 2148 +++++++------- po/eu.po | 2192 +++++++------- po/fa.po | 2138 +++++++------- po/fi.po | 2188 +++++++------- po/fr.po | 2180 +++++++------- po/gl.po | 2581 ++++++++--------- po/he.po | 2153 +++++++------- po/hi.po | 2150 +++++++------- po/hr.po | 2192 +++++++------- po/hu.po | 2176 +++++++------- po/hy.po | 2108 +++++++------- po/id.po | 2178 +++++++------- po/it.po | 2160 +++++++------- po/ja.po | 2136 +++++++------- po/ka.po | 2151 +++++++------- po/kk.po | 2108 +++++++------- po/ko.po | 2176 +++++++------- po/lt.po | 2170 +++++++------- po/lv.po | 2192 +++++++------- po/mk.po | 2204 +++++++------- po/ml.po | 2108 +++++++------- po/mn.po | 2177 +++++++------- po/ms.po | 2147 +++++++------- po/nb.po | 2257 +++++++------- po/nl.po | 2178 +++++++------- po/phpmyadmin.pot | 2108 +++++++------- po/pl.po | 2156 +++++++------- po/pt.po | 2164 +++++++------- po/pt_BR.po | 2180 +++++++------- po/ro.po | 2195 +++++++------- po/ru.po | 2173 +++++++------- po/si.po | 2128 +++++++------- po/sk.po | 2206 +++++++------- po/sl.po | 2163 +++++++------- po/sq.po | 2194 +++++++------- po/sr.po | 2177 +++++++------- po/sr@latin.po | 2169 +++++++------- po/sv.po | 2155 +++++++------- po/ta.po | 2118 +++++++------- po/te.po | 2137 +++++++------- po/th.po | 2148 +++++++------- po/tk.po | 2108 +++++++------- po/tr.po | 2157 +++++++------- po/tt.po | 2171 +++++++------- po/ug.po | 2130 +++++++------- po/uk.po | 2176 +++++++------- po/ur.po | 2124 +++++++------- po/uz.po | 2214 +++++++------- po/uz@latin.po | 2228 +++++++------- po/zh_CN.po | 2210 +++++++------- po/zh_TW.po | 2146 +++++++------- prefs_manage.php | 11 +- querywindow.php | 6 +- schema_export.php | 6 +- scripts/advisor2po | 3 +- server_binlog.php | 4 +- setup/lib/ConfigGenerator.class.php | 6 +- sql.php | 147 +- tbl_get_field.php | 52 - tbl_gis_visualization.php | 7 +- tbl_indexes.php | 67 +- tbl_move_copy.php | 10 +- tbl_relation.php | 29 +- tbl_structure.php | 5 +- tbl_tracking.php | 8 +- test/classes/PMA_DBQbe_test.php | 400 +++ test/classes/PMA_DbSearch_test.php | 203 ++ 114 files changed, 81238 insertions(+), 75079 deletions(-) create mode 100644 libraries/DBQbe.class.php create mode 100644 libraries/plugins/export/ExportMediawiki.class.php create mode 100644 libraries/plugins/export/ExportSql.class.php delete mode 100644 tbl_get_field.php create mode 100644 test/classes/PMA_DBQbe_test.php create mode 100644 test/classes/PMA_DbSearch_test.php diff --git a/ChangeLog b/ChangeLog index 7f30c2356d..0c547ae2d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -50,6 +50,10 @@ VerboseMultiSubmit, ReplaceHelpImg - bug #3527531 [interface] GC-maxlifetime warning incorrectly displayed - bug #3526916 [interface] Search fails with JS error when tooltips disabled - bug #3544366 [interface] Event comments not saved +- bug #3549084 [edit] Can't enter date directly when editing inline +- bug #3548491 [interface] Inline query editor doesn't work from search results +- bug #3547825 [edit] BLOB download no longer works +- bug #3541966 [config] Error in generated configuration arrray 3.5.2.0 (2012-07-07) - bug #3521416 [interface] JS error when editing index diff --git a/db_qbe.php b/db_qbe.php index 7ed278204b..f7628c5fc0 100644 --- a/db_qbe.php +++ b/db_qbe.php @@ -10,53 +10,12 @@ * requirements */ require_once 'libraries/common.inc.php'; +require_once 'libraries/DBQbe.class.php'; +$response = PMA_Response::getInstance(); -/** - * Sets globals from $_POST - */ -$post_params = array( - 'Field', - 'Show', - 'Sort' -); -foreach ($post_params as $one_post_param) { - if (isset($_POST[$one_post_param])) { - $GLOBALS[$one_post_param] = $_POST[$one_post_param]; - } -} - -/** - * Sets globals from $_POST patterns, for Or* variables - * (additional criteria lines) - */ - -$post_patterns = array( - '/^Or/i' -); -foreach (array_keys($_POST) as $post_key) { - foreach ($post_patterns as $one_post_pattern) { - if (preg_match($one_post_pattern, $post_key)) { - $GLOBALS[$post_key] = $_POST[$post_key]; - } - } -} -/** - * Initialize some more global variables - */ -$GLOBALS['curField'] = array(); -$GLOBALS['curSort'] = array(); -$GLOBALS['curShow'] = array(); -$GLOBALS['curCriteria'] = array(); -$GLOBALS['curAndOrRow'] = array(); -$GLOBALS['curAndOrCol'] = array(); - -/** - * Gets the relation settings - */ +// Gets the relation settings $cfgRelation = PMA_getRelationsParam(); -$common_functions = PMA_CommonFunctions::getInstance(); - /** * A query has been submitted -> (maybe) execute it */ @@ -82,492 +41,12 @@ if ($message_to_display) { } unset($message_to_display); -/** - * Initialize some variables - */ -$col_cnt = PMA_ifSetOr($_REQUEST['col_cnt'], 3, 'numeric'); -$add_col = PMA_ifSetOr($_REQUEST['add_col'], 0, 'numeric'); -$add_row = PMA_ifSetOr($_REQUEST['add_row'], 0, 'numeric'); - -$rows = PMA_ifSetOr($_REQUEST['rows'], 0, 'numeric'); -$ins_col = PMA_ifSetOr($_REQUEST['ins_col'], null, 'array'); -$del_col = PMA_ifSetOr($_REQUEST['del_col'], null, 'array'); - -$prev_criteria = isset($_REQUEST['prev_criteria']) - ? $_REQUEST['prev_criteria'] - : array(); -$criteria = isset($_REQUEST['criteria']) - ? $_REQUEST['criteria'] - : array_fill(0, $col_cnt, ''); - -$ins_row = isset($_REQUEST['ins_row']) - ? $_REQUEST['ins_row'] - : array_fill(0, $col_cnt, ''); -$del_row = isset($_REQUEST['del_row']) - ? $_REQUEST['del_row'] - : array_fill(0, $col_cnt, ''); -$and_or_row = isset($_REQUEST['and_or_row']) - ? $_REQUEST['and_or_row'] - : array_fill(0, $col_cnt, ''); -$and_or_col = isset($_REQUEST['and_or_col']) - ? $_REQUEST['and_or_col'] - : array_fill(0, $col_cnt, ''); - -// minimum width -$form_column_width = 12; -$col = max($col_cnt + $add_col, 0); -$row = max($rows + $add_row, 0); - - -// The tables list sent by a previously submitted form -if (PMA_isValid($_REQUEST['TableList'], 'array')) { - foreach ($_REQUEST['TableList'] as $each_table) { - $tbl_names[$each_table] = ' selected="selected"'; - } -} // end if - - -// this was a work in progress, deactivated for now -//$columns = PMA_DBI_get_columns_full($GLOBALS['db']); -//$tables = PMA_DBI_get_columns_full($GLOBALS['db']); - - -/** - * Prepares the form - */ -$tbl_result = PMA_DBI_query( - 'SHOW TABLES FROM ' . $common_functions->backquote($db) . ';', - null, PMA_DBI_QUERY_STORE -); -$tbl_result_cnt = PMA_DBI_num_rows($tbl_result); -if (0 == $tbl_result_cnt) { - PMA_Message::error(__('No tables found in database.'))->display(); - exit; -} - -// The tables list gets from MySQL -while (list($tbl) = PMA_DBI_fetch_row($tbl_result)) { - $fld_results = PMA_DBI_get_columns($db, $tbl); - - if (empty($tbl_names[$tbl]) && ! empty($_REQUEST['TableList'])) { - $tbl_names[$tbl] = ''; - } else { - $tbl_names[$tbl] = ' selected="selected"'; - } // end if - - // The fields list per selected tables - if ($tbl_names[$tbl] == ' selected="selected"') { - $each_table = $common_functions->backquote($tbl); - $fld[] = $each_table . '.*'; - foreach ($fld_results as $each_field) { - $each_field = $each_table . '.' . $common_functions->backquote($each_field['Field']); - $fld[] = $each_field; - - // increase the width if necessary - $form_column_width = max(strlen($each_field), $form_column_width); - } // end foreach - } // end if -} // end while -PMA_DBI_free_result($tbl_result); - -// largest width found -$realwidth = $form_column_width . 'ex'; - +// create new qbe search instance +$db_qbe = new PMA_DBQbe($GLOBALS['db']); /** * Displays the Query by example form */ - -/** - * Provides select options list containing column names - * - * @param array $columns All Column Names - * @param integer $column_number Column Number (0,1,2) or more - * @param string $selected Selected criteria column name - * - * @return HTML for select options - */ -function showColumnSelectCell($columns, $column_number, $selected = '') -{ - $html_output = ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - return $html_output; -} - -/** - * Provides select options list containing sort options (ASC/DESC) - * - * @param integer $column_number Column Number (0,1,2) or more - * @param string $realwidth Largest column width found - * @param string $asc_selected Selected criteria 'Ascending' - * @param string $desc_selected Selected criteria 'Descending' - * - * @return HTML for select options - */ -function getSortSelectCell($column_number, $realwidth, $asc_selected = '', - $desc_selected = '') -{ - $html_output = ''; - $html_output .= ''; - $html_output .= ''; - return $html_output; -} - -/** - * Provides search form's row containing column select options - * - * @param array $criteria_column_count Number of criteria columns - * @param integer $columns All column names - * @param string $ins_col If a new criteria column is needed - * @param string $del_col If a criteria column is to be deleted - * - * @return HTML for search table's row - */ -function PMA_dbQbegetColumnNamesRow( - $criteria_column_count, $columns, $ins_col = null, $del_col = null -) { - $html_output = ''; - $html_output .= '' . __('Column') . ':'; - $z = 0; - for ($column_index = 0; $column_index < $criteria_column_count; $column_index++) - { - if (isset($ins_col[$column_index]) && $ins_col[$column_index] == 'on') { - $html_output .= showColumnSelectCell($columns, $z); - $z++; - } - if (! empty($del_col) && isset($del_col[$column_index]) && $del_col[$column_index] == 'on') { - continue; - } - $selected = ''; - if (isset($_REQUEST['Field'][$column_index])) { - $selected = $_REQUEST['Field'][$column_index]; - $GLOBALS['curField'][$z] = $_REQUEST['Field'][$column_index]; - } - $html_output .= showColumnSelectCell($columns, $z, $selected); - $z++; - } // end for - $html_output .= ''; - return $html_output; -} - -/** - * Provides search form's row containing sort(ASC/DESC) select options - * - * @param array $criteria_column_count Number of criteria columns - * @param string $realwidth Largest column width found - * @param string $ins_col If a new criteria column is needed - * @param string $del_col If a criteria column is to be deleted - * - * @return HTML for search table's row - */ -function PMA_dbQbegetSortRow( - $criteria_column_count, $realwidth, $ins_col = null, $del_col = null -) { - $html_output = ''; - $html_output .= '' . __('Sort') . ':'; - $z = 0; - for ($column_index = 0; $column_index < $criteria_column_count; $column_index++) - { - if (! empty($ins_col) && isset($ins_col[$column_index]) && $ins_col[$column_index] == 'on') { - $html_output .= getSortSelectCell($z, $realwidth); - $z++; - } // end if - - if (! empty($del_col) && isset($del_col[$column_index]) && $del_col[$column_index] == 'on') { - continue; - } - // If they have chosen all fields using the * selector, - // then sorting is not available, Fix for Bug #570698 - if (isset($_REQUEST['Sort'][$column_index]) && isset($_REQUEST['Field'][$column_index]) - && substr($_REQUEST['Field'][$column_index], -2) == '.*' - ) { - $_REQUEST['Sort'][$column_index] = ''; - } //end if - // Set asc_selected - if (isset($_REQUEST['Sort'][$column_index]) && $_REQUEST['Sort'][$column_index] == 'ASC') { - $GLOBALS['curSort'][$z] = $_REQUEST['Sort'][$column_index]; - $asc_selected = ' selected="selected"'; - } else { - $asc_selected = ''; - } // end if - // Set desc selected - if (isset($_REQUEST['Sort'][$column_index]) && $_REQUEST['Sort'][$column_index] == 'DESC') { - $GLOBALS['curSort'][$z] = $_REQUEST['Sort'][$column_index]; - $desc_selected = ' selected="selected"'; - } else { - $desc_selected = ''; - } // end if - $html_output .= getSortSelectCell( - $z, $realwidth, $asc_selected, $desc_selected - ); - $z++; - } // end for - $html_output .= ''; - return $html_output; -} - -/** - * Provides search form's row containing SHOW checkboxes - * - * @param array $criteria_column_count Number of criteria columns - * @param string $ins_col If a new criteria column is needed - * @param string $del_col If a criteria column is to be deleted - * - * @return HTML for search table's row - */ -function PMA_dbQbegetShowRow( - $criteria_column_count, $ins_col = null, $del_col = null -) { - $html_output = ''; - $html_output .= '' . __('Show') . ':'; - $z = 0; - for ($column_index = 0; $column_index < $criteria_column_count; $column_index++) - { - if (! empty($ins_col) && isset($ins_col[$column_index]) && $ins_col[$column_index] == 'on') { - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $z++; - } // end if - if (! empty($del_col) && isset($del_col[$column_index]) && $del_col[$column_index] == 'on') { - continue; - } - if (isset($_REQUEST['Show'][$column_index])) { - $checked = ' checked="checked"'; - $GLOBALS['curShow'][$z] = $_REQUEST['Show'][$column_index]; - } else { - $checked = ''; - } - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $z++; - } // end for - $html_output .= ''; - return $html_output; -} - -/** - * Provides search form's row containing criteria Inputboxes - * - * @param array $criteria_column_count Number of criteria columns - * @param string $realwidth Largest column width found - * @param string $criteria Already Filled criteria - * @param string $prev_criteria Previously filled criteria(hidden form field) - * @param string $ins_col If a new criteria column is needed - * @param string $del_col If a criteria column is to be deleted - * - * @return HTML for search table's row - */ -function PMA_dbQbegetCriteriaInputboxRow( - $criteria_column_count, $realwidth, $criteria, $prev_criteria, - $ins_col = null, $del_col = null -) { - $html_output = ''; - $html_output .= '' . __('Criteria') . ':'; - $z = 0; - for ($column_index = 0; $column_index < $criteria_column_count; $column_index++) - { - if (! empty($ins_col) && isset($ins_col[$column_index]) && $ins_col[$column_index] == 'on') { - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $z++; - } // end if - if (! empty($del_col) && isset($del_col[$column_index]) && $del_col[$column_index] == 'on') { - continue; - } - if (isset($criteria[$column_index])) { - $tmp_criteria = $criteria[$column_index]; - } - if ((empty($prev_criteria) || ! isset($prev_criteria[$column_index])) - || $prev_criteria[$column_index] != htmlspecialchars($tmp_criteria) - ) { - $GLOBALS['curCriteria'][$z] = $tmp_criteria; - } else { - $GLOBALS['curCriteria'][$z] = $prev_criteria[$column_index]; - } - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $z++; - } // end for - $html_output .= ''; - return $html_output; -} - -/** - * Provides footer options for adding/deleting row/columns - * - * @param string $type Whether row or column - * - * @return HTML for footer options - */ -function PMA_dbQbeGetFootersOptions($type) -{ - $html_output = '
'; - $html_output .= (($type == 'row') - ? __('Add/Delete criteria rows') : __('Add/Delete columns')); - $html_output .= ':'; - $html_output .= '
'; - return $html_output; -} - -/** - * Provides search form table's footer options - * - * @return HTML for table footer - */ -function PMA_dbQbeGetTableFooters() -{ - $html_output = '
'; - $html_output .= PMA_dbQbeGetFootersOptions("row"); - $html_output .= PMA_dbQbeGetFootersOptions("column"); - $html_output .= '
'; - $html_output .= ''; - $html_output .= '
'; - $html_output .= '
'; - return $html_output; -} - -/** - * Provides a select list of database tables - * - * @param array $table_names Names of all the tables - * - * @return HTML for table select list - */ -function PMA_dbQbeGetTablesList($table_names) -{ - $html_output = '
'; - $html_output .= '
'; - $html_output .= '' . __('Use Tables') . ''; - // Build the options list for each table name - $options = ''; - $numTableListOptions = 0; - foreach ($table_names as $key => $val) { - $options .= ''; - $numTableListOptions++; - } - $html_output .= ''; - $html_output .= '
'; - $html_output .= '
'; - $html_output .= ''; - $html_output .= '
'; - $html_output .= '
'; - return $html_output; -} - -/** - * Provides And/Or modification cell along with Insert/Delete options - * (For modifying search form's table columns) - * - * @param integer $column_number Column Number (0,1,2) or more - * @param array $selected Selected criteria column name - * - * @return HTML for modification cell - */ -function PMA_dbQbeGetAndOrColCell($column_number, $selected = null) -{ - $html_output = ''; - $html_output .= '' . __('Or') . ':'; - $html_output .= ''; - $html_output .= '  ' . __('And') . ':'; - $html_output .= ''; - $html_output .= '
' . __('Ins'); - $html_output .= ''; - $html_output .= '  ' . __('Del'); - $html_output .= ''; - $html_output .= ''; - return $html_output; -} - -/** - * Provides search form's row containing column modifications options - * (For modifying search form's table columns) - * - * @param array $criteria_column_count Number of criteria columns - * @param string $realwidth Largest column width found - * @param string $criteria Already Filled criteria - * @param string $prev_criteria Previously filled criteria(hidden form field) - * @param string $ins_col If a new criteria column is needed - * @param string $del_col If a criteria column is to be deleted - * - * @return HTML for search table's row - */ -function PMA_dbQbeGetModifyColumnsRow($criteria_column_count, $and_or_col, - $ins_col = null, $del_col = null -) { - $html_output = ''; - $html_output .= '' . __('Modify') . ':'; - $z = 0; - for ($x = 0; $x < $criteria_column_count; $x++) { - if (! empty($ins_col) && isset($ins_col[$x]) && $ins_col[$x] == 'on') { - $html_output .= PMA_dbQbeGetAndOrColCell($z); - $z++; - } // end if - - if (! empty($del_col) && isset($del_col[$x]) && $del_col[$x] == 'on') { - continue; - } - - if (isset($and_or_col[$x])) { - $GLOBALS['curAndOrCol'][$z] = $and_or_col[$x]; - } - if (isset($and_or_col[$x]) && $and_or_col[$x] == 'or') { - $chk['or'] = ' checked="checked"'; - $chk['and'] = ''; - } else { - $chk['and'] = ' checked="checked"'; - $chk['or'] = ''; - } - $html_output .= PMA_dbQbeGetAndOrColCell($z, $chk); - $z++; - } // end for - $html_output .= ''; - return $html_output; -} - if ($cfgRelation['designerwork']) { $url = 'pmd_general.php' . PMA_generate_common_url( array_merge( @@ -575,525 +54,13 @@ if ($cfgRelation['designerwork']) { array('query' => 1) ) ); - PMA_Message::notice( + $response->addHTML(PMA_Message::notice( sprintf( __('Switch to %svisual builder%s'), '', '' ) - )->display(); + ));//->display(); } +$response->addHTML($db_qbe->getSelectionForm($cfgRelation)); ?> -
-
- - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - -
- : - - - : - - /> -   -
- : - - - : - - /> -   -
-
- - - -
- - - - - - - - - - - - -
- : - - - : - - /> -
- : - - - : - - /> -
-
- - - -
- -
- - - -
-
- %s:'), $common_functions->getDbLink($db)); ?> - - -
-
- -
-
-
diff --git a/import.php b/import.php index 193a4260f1..70e471b07b 100644 --- a/import.php +++ b/import.php @@ -49,6 +49,12 @@ $_SESSION['Import_message']['go_back_url'] = null; // default values $GLOBALS['reload'] = false; +// Use to identify curren cycle is executing +// a multiquery statement or stored routine +if (!isset($_SESSION['is_multi_query'])) { + $_SESSION['is_multi_query'] = false; +} + // Are we just executing plain query or sql file? // (eg. non import, but query box/window run) if (! empty($sql_query)) { diff --git a/js/makegrid.js b/js/makegrid.js index 3edcb7f699..1d2f46139d 100644 --- a/js/makegrid.js +++ b/js/makegrid.js @@ -990,6 +990,12 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi $input_field.val(''); } $editArea.append('
' + g.cellEditHint + '
'); + + // remove {cursor: 'pointer'} added inside timepicker.js + $input_field.css('cursor', ''); + // make the cell editable, so one can can bypass the timepicker + // and enter date/time value manually + g.isEditCellTextEditable = true; } else { g.isEditCellTextEditable = true; // only append edit area hint if there is a null checkbox @@ -1613,7 +1619,7 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi e.stopPropagation(); } // prevent default action when clicking on "link" in a table - if ($(e.target).is('a')) { + if ($(e.target).is('.grid_edit a')) { e.preventDefault(); } }); diff --git a/libraries/DBQbe.class.php b/libraries/DBQbe.class.php new file mode 100644 index 0000000000..355282c270 --- /dev/null +++ b/libraries/DBQbe.class.php @@ -0,0 +1,1278 @@ +_db = $db; + // Sets criteria parameters + $this->_setSearchParams(); + $this->_setCriteriaTablesAndColumns(); + } + + /** + * Get CommmonFunctions + * + * @return CommonFunctions object + */ + public function getCommonFunctions() + { + if (is_null($this->_common_functions)) { + $this->_common_functions = PMA_CommonFunctions::getInstance(); + } + return $this->_common_functions; + } + + /** + * Sets search parameters + * + */ + private function _setSearchParams() + { + // sets column count + $criteriaColumnCount = PMA_ifSetOr($_REQUEST['criteriaColumnCount'], 3, 'numeric'); + $criteriaColumnAdd = PMA_ifSetOr($_REQUEST['criteriaColumnAdd'], 0, 'numeric'); + $this->_criteria_column_count = max($criteriaColumnCount + $criteriaColumnAdd, 0); + + // sets row count + $rows = PMA_ifSetOr($_REQUEST['rows'], 0, 'numeric'); + $criteriaRowAdd = PMA_ifSetOr($_REQUEST['criteriaRowAdd'], 0, 'numeric'); + $this->_criteria_row_count = max($rows + $criteriaRowAdd, 0); + + $this->_criteriaColumnInsert = PMA_ifSetOr($_REQUEST['criteriaColumnInsert'], null, 'array'); + $this->_criteriaColumnDelete = PMA_ifSetOr($_REQUEST['criteriaColumnDelete'], null, 'array'); + + $this->_prev_criteria = isset($_REQUEST['prev_criteria']) + ? $_REQUEST['prev_criteria'] + : array(); + $this->_criteria = isset($_REQUEST['criteria']) + ? $_REQUEST['criteria'] + : array_fill(0, $criteriaColumnCount, ''); + + $this->_criteriaRowInsert = isset($_REQUEST['criteriaRowInsert']) + ? $_REQUEST['criteriaRowInsert'] + : array_fill(0, $criteriaColumnCount, ''); + $this->_criteriaRowDelete = isset($_REQUEST['criteriaRowDelete']) + ? $_REQUEST['criteriaRowDelete'] + : array_fill(0, $criteriaColumnCount, ''); + $this->_criteriaAndOrRow = isset($_REQUEST['criteriaAndOrRow']) + ? $_REQUEST['criteriaAndOrRow'] + : array_fill(0, $criteriaColumnCount, ''); + $this->_criteriaAndOrColumn = isset($_REQUEST['criteriaAndOrColumn']) + ? $_REQUEST['criteriaAndOrColumn'] + : array_fill(0, $criteriaColumnCount, ''); + // sets minimum width + $this->_form_column_width = 12; + $this->_curField = array(); + $this->_curSort = array(); + $this->_curShow = array(); + $this->_curCriteria = array(); + $this->_curAndOrRow = array(); + $this->_curAndOrCol = array(); + } + + /** + * Sets criteria tables and columns + * + */ + private function _setCriteriaTablesAndColumns() + { + // The tables list sent by a previously submitted form + if (PMA_isValid($_REQUEST['TableList'], 'array')) { + foreach ($_REQUEST['TableList'] as $each_table) { + $this->_criteriaTables[$each_table] = ' selected="selected"'; + } + } // end if + $all_tables = PMA_DBI_query( + 'SHOW TABLES FROM ' . $this->getCommonFunctions()->backquote($this->_db) . ';', + null, PMA_DBI_QUERY_STORE + ); + $all_tables_count = PMA_DBI_num_rows($all_tables); + if (0 == $all_tables_count) { + PMA_Message::error(__('No tables found in database.'))->display(); + exit; + } + // The tables list gets from MySQL + while (list($table) = PMA_DBI_fetch_row($all_tables)) { + $columns = PMA_DBI_get_columns($this->_db, $table); + + if (empty($this->_criteriaTables[$table]) && ! empty($_REQUEST['TableList'])) { + $this->_criteriaTables[$table] = ''; + } else { + $this->_criteriaTables[$table] = ' selected="selected"'; + } // end if + + // The fields list per selected tables + if ($this->_criteriaTables[$table] == ' selected="selected"') { + $each_table = $this->getCommonFunctions()->backquote($table); + $this->_columnNames[] = $each_table . '.*'; + foreach ($columns as $each_column) { + $each_column = $each_table . '.' . $this->getCommonFunctions()->backquote($each_column['Field']); + $this->_columnNames[] = $each_column; + // increase the width if necessary + $this->_form_column_width = max(strlen($each_column), $this->_form_column_width); + } // end foreach + } // end if + } // end while + PMA_DBI_free_result($all_tables); + + // sets the largest width found + $this->_realwidth = $this->_form_column_width . 'ex'; + } + /** + * Provides select options list containing column names + * + * @param integer $column_number Column Number (0,1,2) or more + * @param string $selected Selected criteria column name + * + * @return HTML for select options + */ + private function _showColumnSelectCell($column_number, $selected = '') + { + $html_output = ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + return $html_output; + } + + /** + * Provides select options list containing sort options (ASC/DESC) + * + * @param integer $column_number Column Number (0,1,2) or more + * @param string $asc_selected Selected criteria 'Ascending' + * @param string $desc_selected Selected criteria 'Descending' + * + * @return HTML for select options + */ + private function _getSortSelectCell($column_number, $asc_selected = '', + $desc_selected = '') + { + $html_output = ''; + $html_output .= ''; + $html_output .= ''; + return $html_output; + } + + /** + * Provides search form's row containing column select options + * + * @return HTML for search table's row + */ + private function _getColumnNamesRow() + { + $html_output = ''; + $html_output .= '' . __('Column') . ':'; + $new_column_count = 0; + for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) + { + if (isset($this->_criteriaColumnInsert[$column_index]) + && $this->_criteriaColumnInsert[$column_index] == 'on' + ) { + $html_output .= showColumnSelectCell($new_column_count); + $new_column_count++; + } + if (! empty($this->_criteriaColumnDelete) + && isset($this->_criteriaColumnDelete[$column_index]) + && $this->_criteriaColumnDelete[$column_index] == 'on' + ) { + continue; + } + $selected = ''; + if (isset($_REQUEST['criteriaColumn'][$column_index])) { + $selected = $_REQUEST['criteriaColumn'][$column_index]; + $this->_curField[$new_column_count] = $_REQUEST['criteriaColumn'][$column_index]; + } + $html_output .= $this->_showColumnSelectCell($new_column_count, $selected); + $new_column_count++; + } // end for + $this->_new_column_count = $new_column_count; + $html_output .= ''; + return $html_output; + } + + /** + * Provides search form's row containing sort(ASC/DESC) select options + * + * @return HTML for search table's row + */ + private function _getSortRow() + { + $html_output = ''; + $html_output .= '' . __('Sort') . ':'; + $new_column_count = 0; + for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) + { + if (! empty($this->_criteriaColumnInsert) + && isset($this->_criteriaColumnInsert[$column_index]) + && $this->_criteriaColumnInsert[$column_index] == 'on' + ) { + $html_output .= $this->_getSortSelectCell($new_column_count); + $new_column_count++; + } // end if + + if (! empty($this->_criteriaColumnDelete) + && isset($this->_criteriaColumnDelete[$column_index]) + && $this->_criteriaColumnDelete[$column_index] == 'on' + ) { + continue; + } + // If they have chosen all fields using the * selector, + // then sorting is not available, Fix for Bug #570698 + if (isset($_REQUEST['criteriaSort'][$column_index]) + && isset($_REQUEST['criteriaColumn'][$column_index]) + && substr($_REQUEST['criteriaColumn'][$column_index], -2) == '.*' + ) { + $_REQUEST['criteriaSort'][$column_index] = ''; + } //end if + // Set asc_selected + if (isset($_REQUEST['criteriaSort'][$column_index]) && $_REQUEST['criteriaSort'][$column_index] == 'ASC') { + $this->_curSort[$new_column_count] = $_REQUEST['criteriaSort'][$column_index]; + $asc_selected = ' selected="selected"'; + } else { + $asc_selected = ''; + } // end if + // Set desc selected + if (isset($_REQUEST['criteriaSort'][$column_index]) && $_REQUEST['criteriaSort'][$column_index] == 'DESC') { + $this->_curSort[$new_column_count] = $_REQUEST['criteriaSort'][$column_index]; + $desc_selected = ' selected="selected"'; + } else { + $desc_selected = ''; + } // end if + $html_output .= $this->_getSortSelectCell( + $new_column_count, $asc_selected, $desc_selected + ); + $new_column_count++; + } // end for + $html_output .= ''; + return $html_output; + } + + /** + * Provides search form's row containing SHOW checkboxes + * + * @return HTML for search table's row + */ + private function _getShowRow() + { + $html_output = ''; + $html_output .= '' . __('Show') . ':'; + $new_column_count = 0; + for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) + { + if (! empty($this->_criteriaColumnInsert) + && isset($this->_criteriaColumnInsert[$column_index]) + && $this->_criteriaColumnInsert[$column_index] == 'on' + ) { + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $new_column_count++; + } // end if + if (! empty($this->_criteriaColumnDelete) + && isset($this->_criteriaColumnDelete[$column_index]) + && $this->_criteriaColumnDelete[$column_index] == 'on' + ) { + continue; + } + if (isset($_REQUEST['criteriaShow'][$column_index])) { + $checked_options = ' checked="checked"'; + $this->_curShow[$new_column_count] = $_REQUEST['criteriaShow'][$column_index]; + } else { + $checked_options = ''; + } + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $new_column_count++; + } // end for + $html_output .= ''; + return $html_output; + } + + /** + * Provides search form's row containing criteria Inputboxes + * + * @return HTML for search table's row + */ + private function _getCriteriaInputboxRow() + { + $html_output = ''; + $html_output .= '' . __('Criteria') . ':'; + $new_column_count = 0; + for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) + { + if (! empty($this->_criteriaColumnInsert) + && isset($this->_criteriaColumnInsert[$column_index]) + && $this->_criteriaColumnInsert[$column_index] == 'on' + ) { + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $new_column_count++; + } // end if + if (! empty($this->_criteriaColumnDelete) + && isset($this->_criteriaColumnDelete[$column_index]) + && $this->_criteriaColumnDelete[$column_index] == 'on' + ) { + continue; + } + if (isset($this->_criteria[$column_index])) { + $tmp_criteria = $this->_criteria[$column_index]; + } + if ((empty($this->_prev_criteria) + || ! isset($this->_prev_criteria[$column_index])) + || $this->_prev_criteria[$column_index] != htmlspecialchars($tmp_criteria) + ) { + $this->_curCriteria[$new_column_count] = $tmp_criteria; + } else { + $this->_curCriteria[$new_column_count] = $this->_prev_criteria[$column_index]; + } + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $new_column_count++; + } // end for + $html_output .= ''; + return $html_output; + } + + /** + * Provides footer options for adding/deleting row/columns + * + * @param string $type Whether row or column + * + * @return HTML for footer options + */ + private function _getFootersOptions($type) + { + $html_output = '
'; + $html_output .= (($type == 'row') + ? __('Add/Delete criteria rows') : __('Add/Delete columns')); + $html_output .= ':'; + $html_output .= '
'; + return $html_output; + } + + /** + * Provides search form table's footer options + * + * @return HTML for table footer + */ + private function _getTableFooters() + { + $html_output = '
'; + $html_output .= $this->_getFootersOptions("row"); + $html_output .= $this->_getFootersOptions("column"); + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= '
'; + return $html_output; + } + + /** + * Provides a select list of database tables + * + * @return HTML for table select list + */ + private function _getTablesList() + { + $html_output = '
'; + $html_output .= '
'; + $html_output .= '' . __('Use Tables') . ''; + // Build the options list for each table name + $options = ''; + $numTableListOptions = 0; + foreach ($this->_criteriaTables as $key => $val) { + $options .= ''; + $numTableListOptions++; + } + $html_output .= ''; + $html_output .= '
'; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= '
'; + return $html_output; + } + + /** + * Provides And/Or modification cell along with Insert/Delete options + * (For modifying search form's table columns) + * + * @param integer $column_number Column Number (0,1,2) or more + * @param array $selected Selected criteria column name + * + * @return HTML for modification cell + */ + private function _getAndOrColCell($column_number, $selected = null) + { + $html_output = ''; + $html_output .= '' . __('Or') . ':'; + $html_output .= ''; + $html_output .= '  ' . __('And') . ':'; + $html_output .= ''; + $html_output .= '
' . __('Ins'); + $html_output .= ''; + $html_output .= '  ' . __('Del'); + $html_output .= ''; + $html_output .= ''; + return $html_output; + } + + /** + * Provides search form's row containing column modifications options + * (For modifying search form's table columns) + * + * @return HTML for search table's row + */ + private function _getModifyColumnsRow() + { + $html_output = ''; + $html_output .= '' . __('Modify') . ':'; + $new_column_count = 0; + for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) { + if (! empty($this->_criteriaColumnInsert) + && isset($this->_criteriaColumnInsert[$column_index]) + && $this->_criteriaColumnInsert[$column_index] == 'on' + ) { + $html_output .= $this->_getAndOrColCell($new_column_count); + $new_column_count++; + } // end if + + if (! empty($this->_criteriaColumnDelete) + && isset($this->_criteriaColumnDelete[$column_index]) + && $this->_criteriaColumnDelete[$column_index] == 'on' + ) { + continue; + } + + if (isset($this->_criteriaAndOrColumn[$column_index])) { + $this->_curAndOrCol[$new_column_count] = $this->_criteriaAndOrColumn[$column_index]; + } + if (isset($this->_criteriaAndOrColumn[$column_index]) + && $this->_criteriaAndOrColumn[$column_index] == 'or' + ) { + $checked_options['or'] = ' checked="checked"'; + $checked_options['and'] = ''; + } else { + $checked_options['and'] = ' checked="checked"'; + $checked_options['or'] = ''; + } + $html_output .= $this->_getAndOrColCell($new_column_count, $checked_options); + $new_column_count++; + } // end for + $html_output .= ''; + return $html_output; + } + + /** + * Provides Insert/Delete options for criteria inputbox + * with AND/OR relationship modification options + * + * @param integer $row_index Number of criteria row + * @param string $checked_options If checked + * + * @return HTML + */ + private function _getInsDelAndOrCell($row_index, $checked_options) { + $html_output = ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= '
'; + $html_output .= '' . __('Ins') . ':'; + $html_output .= ''; + $html_output .= ''; + $html_output .= '' . __('And') . ':'; + $html_output .= ''; + $html_output .= ''; + $html_output .= '
'; + $html_output .= '' . __('Del') . ':'; + $html_output .= ''; + $html_output .= ''; + $html_output .= '' . __('Or') . ':'; + $html_output .= ''; + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + return $html_output; + } + + /** + * Provides rows for criteria inputbox Insert/Delete options + * with AND/OR relationship modification options + * + * @param integer $new_row_index New row index if rows are added/deleted + * @param integer $row_index Row index + * + * @return HTML table rows + */ + private function _getInputboxRow($new_row_index, $row_index) + { + $html_output = ''; + $new_column_count = 0; + for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) { + if (! empty($this->_criteriaColumnInsert) + && isset($this->_criteriaColumnInsert[$column_index]) + && $this->_criteriaColumnInsert[$column_index] == 'on' + ) { + $or = 'Or' . $new_row_index . '[' . $new_column_count . ']'; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $new_column_count++; + } // end if + if (! empty($this->_criteriaColumnDelete) + && isset($this->_criteriaColumnDelete[$column_index]) + && $this->_criteriaColumnDelete[$column_index] == 'on' + ) { + continue; + } + $or = 'Or' . $new_row_index; + if (! empty($_POST[$or]) && isset($_POST[$or][$column_index])) { + $tmp_or = $_POST[$or][$column_index]; + } else { + $tmp_or = ''; + } + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + if (! empty(${$or}) && isset(${$or}[$column_index])) { + $GLOBALS[${'cur' . $or}][$new_column_count] = ${$or}[$column_index]; + } + $new_column_count++; + } // end for + return $html_output; + } + + /** + * Provides rows for criteria inputbox Insert/Delete options + * with AND/OR relationship modification options + * + * @return HTML table rows + */ + private function _getInsDelAndOrCriteriaRows() + { + $html_output = ''; + $new_row_count = 0; + $odd_row = true; + for ($row_index = 0; $row_index <= $this->_criteria_row_count; $row_index++) { + if (isset($this->_criteriaRowInsert[$row_index]) + && $this->_criteriaRowInsert[$row_index] == 'on' + ) { + $checked_options['or'] = ' checked="checked"'; + $checked_options['and'] = ''; + $html_output .= ''; + $html_output .= $this->_getInsDelAndOrCell( + $new_row_count, $checked_options + ); + $html_output .= $this->_getInputboxRow( + $new_row_count, $row_index + ); + $new_row_count++; + $html_output .= ''; + $odd_row =! $odd_row; + } // end if + if (isset($this->_criteriaRowDelete[$row_index]) + && $this->_criteriaRowDelete[$row_index] == 'on' + ) { + continue; + } + if (isset($this->_criteriaAndOrRow[$row_index])) { + $this->_curAndOrRow[$new_row_count] = $this->_criteriaAndOrRow[$row_index]; + } + if (isset($this->_criteriaAndOrRow[$row_index]) + && $this->_criteriaAndOrRow[$row_index] == 'and' + ) { + $checked_options['and'] = ' checked="checked"'; + $checked_options['or'] = ''; + } else { + $checked_options['or'] = ' checked="checked"'; + $checked_options['and'] = ''; + } + $html_output .= ''; + $html_output .= $this->_getInsDelAndOrCell( + $new_row_count, $checked_options + ); + $html_output .= $this->_getInputboxRow( + $new_row_count, $row_index + ); + $new_row_count++; + $html_output .= ''; + $odd_row =! $odd_row; + } // end for + $this->_new_row_count = $new_row_count; + return $html_output; + } + + /** + * Provides SELECT clause for building SQL query + * + * @return Select clause + */ + private function _getSelectClause(){ + $select_clause = ''; + $select_clauses = array(); + for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) { + if (! empty($this->_curField[$column_index]) + && isset($this->_curShow[$column_index]) + && $this->_curShow[$column_index] == 'on') + { + $select_clauses[] = $this->_curField[$column_index]; + } + } // end for + if ($select_clauses) { + $select_clause = 'SELECT ' + . htmlspecialchars(implode(", ", $select_clauses)) . "\n"; + } + return $select_clause; + } + + /** + * Provides WHERE clause for building SQL query + * + * @return Where clause + */ + private function _getWhereClause() { + $where_clause = ''; + $criteria_cnt = 0; + for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) { + if (! empty($this->_curField[$column_index]) + && ! empty($this->_curCriteria[$column_index]) + && $column_index + && isset($last_where) + && isset($this->_curAndOrCol)) { + $where_clause .= ' ' . strtoupper($this->_curAndOrCol[$last_where]) . ' '; + } + if (! empty($this->_curField[$column_index]) && ! empty($this->_curCriteria[$column_index])) { + $where_clause .= '(' . $this->_curField[$column_index] . ' ' + . $this->_curCriteria[$column_index] . ')'; + $last_where = $column_index; + $criteria_cnt++; + } + } // end for + if ($criteria_cnt > 1) { + $where_clause = '(' . $where_clause . ')'; + } + // OR rows ${'cur' . $or}[$column_index] + if (! isset($this->_curAndOrRow)) { + $this->_curAndOrRow = array(); + } + for ($row_index = 0; $row_index <= $this->_criteria_row_count; $row_index++) { + $criteria_cnt = 0; + $qry_orwhere = ''; + $last_orwhere = ''; + for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) { + if (! empty($this->_curField[$column_index]) + && ! empty(${'curOr' . $row_index}[$column_index]) + && $column_index + ) { + $qry_orwhere .= ' ' . strtoupper($this->_curAndOrCol[$last_orwhere]) . ' '; + } + if (! empty($this->_curField[$column_index]) + && ! empty(${'curOr' . $row_index}[$column_index]) + ) { + $qry_orwhere .= '(' . $this->_curField[$column_index] + . ' ' + . ${'curOr' . $row_index}[$column_index] + . ')'; + $last_orwhere = $column_index; + $criteria_cnt++; + } + } // end for + if ($criteria_cnt > 1) { + $qry_orwhere = '(' . $qry_orwhere . ')'; + } + if (! empty($qry_orwhere)) { + $where_clause .= "\n" + . strtoupper(isset($this->_curAndOrRow[$row_index]) ? $this->_curAndOrRow[$row_index] . ' ' : '') + . $qry_orwhere; + } // end if + } // end for + + if (! empty($where_clause) && $where_clause != '()') { + $where_clause = 'WHERE ' . htmlspecialchars($where_clause) . "\n"; + } // end if + return $where_clause; + } + + /** + * Provides ORDER BY clause for building SQL query + * + * @return Order By clause + */ + private function _getOrderByClause() + { + $orderby_clause = ''; + $orderby_clauses = array(); + for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) + { + // if all columns are chosen with * selector, then sorting isn't available + // Fix for Bug #570698 + if (! empty($this->_curField[$column_index]) + && ! empty($this->_curSort[$column_index]) + ) { + if (substr($this->_curField[$column_index], -2) == '.*') { + continue; + } + $orderby_clauses[] = $this->_curField[$column_index] . ' ' + . $this->_curSort[$column_index]; + } + } // end for + if ($orderby_clauses) { + $orderby_clause = 'ORDER BY ' + . htmlspecialchars(implode(", ", $orderby_clauses)) . "\n"; + } + return $orderby_clause; + } + + /** + * Provides UNIQUE columns and INDEX columns present in criteria tables + * + * @param array $all_tables Tables involved in the search + * @param array $all_columns Columns involved in the search + * @param array $where_clause_columns Columns having criteria where clause + * + * @return array having UNIQUE and INDEX columns + */ + private function _getIndexes($all_tables, $all_columns, + $where_clause_columns + ) { + $unique_columns = array(); + $index_columns = array(); + + foreach ($all_tables as $table) { + $indexes = PMA_DBI_get_table_indexes($this->_db, $table); + foreach ($indexes as $index) { + $column = $table . '.' . $index['Column_name']; + if (isset($all_columns[$column])) { + if ($index['Non_unique'] == 0) { + if (isset($where_clause_columns[$column])) { + $unique_columns[$column] = 'Y'; + } else { + $unique_columns[$column] = 'N'; + } + } else { + if (isset($where_clause_columns[$column])) { + $index_columns[$column] = 'Y'; + } else { + $index_columns[$column] = 'N'; + } + } + } + } // end while (each index of a table) + } // end while (each table) + + return array( + 'unique' => $unique_columns, + 'index' => $index_columns + ); + } + + /** + * Provides UNIQUE columns and INDEX columns present in criteria tables + * + * @param array $all_tables Tables involved in the search + * @param array $all_columns Columns involved in the search + * @param array $where_clause_columns Columns having criteria where clause + * + * @return array having UNIQUE and INDEX columns + */ + private function _getLeftJoinColumnCandidates($all_tables, $all_columns, + $where_clause_columns + ) { + PMA_DBI_select_db($this->_db); + $candidate_columns = array(); + + // Get unique columns and index columns + $indexes = $this->_getIndexes( + $all_tables, $all_columns, $where_clause_columns + ); + $unique_columns = $indexes['unique']; + $index_columns = $indexes['index']; + + // now we want to find the best. + if (isset($unique_columns) && count($unique_columns) > 0) { + $candidate_columns = $unique_columns; + $needsort = 1; + } elseif (isset($index_columns) && count($index_columns) > 0) { + $candidate_columns = $index_columns; + $needsort = 1; + } elseif (isset($where_clause_columns) && count($where_clause_columns) > 0) { + $candidate_columns = $where_clause_columns; + $needsort = 0; + } else { + $candidate_columns = $all_tables; + $needsort = 0; + } + + // If we came up with $unique_columns (very good) or $index_columns (still + // good) as $candidate_columns we want to check if we have any 'Y' there + // (that would mean that they were also found in the whereclauses + // which would be great). if yes, we take only those + if ($needsort == 1) { + foreach ($candidate_columns as $column => $is_where) { + $table = explode('.', $column); + $table = $table[0]; + if ($is_where == 'Y') { + $vg[$column] = $table; + } else { + $sg[$column] = $table; + } + } + if (isset($vg)) { + $candidate_columns = $vg; + // Candidates restricted in index+where + } else { + $candidate_columns = $sg; + // None of the candidates where in a where-clause + } + } + + return $candidate_columns; + } + + /** + * Provides the main table to form the LEFT JOIN clause + * + * @param array $all_tables Tables involved in the search + * @param array $all_columns Columns involved in the search + * @param array $where_clause_columns Columns having criteria where clause + * @param array $where_clause_tables Tables having criteria where clause + * + * @return string table name + */ + private function _getMasterTable($all_tables, $all_columns, + $where_clause_columns, $where_clause_tables + ) { + $master = ''; + if (count($where_clause_tables) == 1) { + // If there is exactly one column that has a decent where-clause + // we will just use this + $master = key($where_clause_tables); + } else { + // Now let's find out which of the tables has an index + // (When the control user is the same as the normal user + // because he is using one of his databases as pmadb, + // the last db selected is not always the one where we need to work) + $candidate_columns = $this->_getLeftJoinColumnCandidates( + $all_tables, $all_columns, $where_clause_columns + ); + // If our array of candidates has more than one member we'll just + // find the smallest table. + // Of course the actual query would be faster if we check for + // the Criteria which gives the smallest result set in its table, + // but it would take too much time to check this + if (count($candidate_columns) > 1) { + // Of course we only want to check each table once + $checked_tables = $candidate_columns; + foreach ($candidate_columns as $table) { + if ($checked_tables[$table] != 1) { + $tsize[$table] = PMA_Table::countRecords($this->_db, $table, false); + $checked_tables[$table] = 1; + } + $csize[$table] = $tsize[$table]; + } + asort($csize); + reset($csize); + $master = key($csize); // Smallest + } else { + reset($candidate_columns); + $master = current($candidate_columns); // Only one single candidate + } + } // end if (exactly one where clause) + return $master; + } + + /** + * Provides columns and tables that have valid where clause criteria + * + * @return array + */ + private function _getWhereClauseTablesAndColumns() + { + $where_clause_columns = array(); + $where_clause_tables = array(); + // Now we need all tables that we have in the where clause + for ($column_index = 0; $column_index < count($this->_criteria); $column_index++) { + $current_table = explode('.', $_POST['criteriaColumn'][$column_index]); + if (empty($current_table[0]) || empty($current_table[1])) { + continue; + } // end if + $table = str_replace('`', '', $current_table[0]); + $column = str_replace('`', '', $current_table[1]); + $column = $table . '.' . $column; + // Now we know that our array has the same numbers as $criteria + // we can check which of our columns has a where clause + if (! empty($this->_criteria[$column_index])) { + if (substr($this->_criteria[$column_index], 0, 1) == '=' + || stristr($this->_criteria[$column_index], 'is') + ) { + $where_clause_columns[$column] = $column; + $where_clause_tables[$table] = $table; + } + } // end if + } // end for + return array( + 'where_clause_tables' => $where_clause_tables, + 'where_clause_columns' => $where_clause_columns + ); + } + + /** + * Provides FROM clause for building SQL query + * + * @param string $cfgRelation Relation Settings + * + * @return FROM clause + */ + private function _getFromClause($cfgRelation) + { + $from_clause = ''; + if (isset($_POST['criteriaColumn']) && count($_POST['criteriaColumn']) > 0) { + // Initialize some variables + $all_tables = $all_columns = $known_tables = $remaining_tables = array(); + $left_join = ''; + + // We only start this if we have fields, otherwise it would be dumb + foreach ($_POST['criteriaColumn'] as $value) { + $parts = explode('.', $value); + if (! empty($parts[0]) && ! empty($parts[1])) { + $table = str_replace('`', '', $parts[0]); + $all_tables[$table] = $table; + $all_columns[] = $table . '.' . str_replace('`', '', $parts[1]); + } + } // end while + + // Create LEFT JOINS out of Relations + if ($cfgRelation['relwork'] && count($all_tables) > 0) { + // Get tables and columns with valid where clauses + $valid_where_clauses = $this->_getWhereClauseTablesAndColumns($this->_criteria); + $where_clause_tables = $valid_where_clauses['where_clause_tables']; + $where_clause_columns = $valid_where_clauses['where_clause_columns']; + // Get master table + $master = $this->_getMasterTable( + $all_tables, $all_columns, $where_clause_columns, $where_clause_tables + ); + $from_clause = $this->getCommonFunctions()->backquote($master) + . PMA_getRelatives($all_tables, $master); + + } // end if ($cfgRelation['relwork'] && count($all_tables) > 0) + } // end count($_POST['criteriaColumn']) > 0 + + // In case relations are not defined, just generate the FROM clause + // from the list of tables, however we don't generate any JOIN + if (empty($from_clause) && isset($all_tables)) { + $from_clause = implode(', ', $all_tables); + } + return $from_clause; + } + + /** + * Provides the generated SQL query + * + * @return string SQL query + */ + private function _getSQLQuery($cfgRelation) + { + $sql_query = ''; + // get SELECT clause + $sql_query .= $this->_getSelectClause(); + // get FROM clause + $from_clause = $this->_getFromClause($cfgRelation); + if (! empty($from_clause)) { + $sql_query .= 'FROM ' . htmlspecialchars($from_clause) . "\n"; + } + // get WHERE clause + $sql_query .= $this->_getWhereClause(); + // get ORDER BY clause + $sql_query .= $this->_getOrderByClause(); + return $sql_query; + } + + /** + * Provides the generated QBE form + * + * @return string QBE form + */ + public function getSelectionForm($cfgRelation) + { + $html_output = '
'; + $html_output .= '
'; + $html_output .= ''; + // Get table's elements + $html_output .= $this->_getColumnNamesRow(); + $html_output .= $this->_getSortRow(); + $html_output .= $this->_getShowRow(); + $html_output .= $this->_getCriteriaInputboxRow(); + $html_output .= $this->_getInsDelAndOrCriteriaRows(); + $html_output .= $this->_getModifyColumnsRow(); + $html_output .= '
'; + $this->_new_row_count--; + $url_params['db'] = $this->_db; + $url_params['criteriaColumnCount'] = $this->_new_column_count; + $url_params['rows'] = $this->_new_row_count; + $html_output .= PMA_generate_common_hidden_inputs($url_params); + $html_output .= '
'; + // get footers + $html_output .= $this->_getTableFooters(); + // get tables select list + $html_output .= $this->_getTablesList(); + // get SQL query + $html_output .= '
'; + $html_output .= '
'; + $html_output .= '' + . sprintf( + __('SQL query on database %s:'), $this->getCommonFunctions()->getDbLink($this->_db) + ); + $html_output .= ''; + $text_dir = 'ltr'; + $html_output .= ''; + $html_output .= '
'; + // displays form's footers + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= '
'; + $html_output .= '
'; + return $html_output; + } +} +?> diff --git a/libraries/DisplayResults.class.php b/libraries/DisplayResults.class.php index e045f8057e..3a528efbcb 100644 --- a/libraries/DisplayResults.class.php +++ b/libraries/DisplayResults.class.php @@ -71,85 +71,104 @@ class PMA_DisplayResults // Declare global fields /** PMA_CommonFunctions object */ private $_common_functions; - + /** array with properties of the class */ private $_property_array = array( - + /** string Database name */ '_db' => null, - + /** string Table name */ '_table' => null, - + /** string the URL to go back in case of errors */ '_goto' => null, - + /** string the SQL query */ '_sql_query' => null, - + /** * integer the total number of rows returned by the SQL query without any * appended "LIMIT" clause programmatically */ '_unlim_num_rows' => null, - + /** array meta information about fields */ '_fields_meta' => null, - + /** boolean */ '_is_count' => null, - + /** integer */ '_is_export' => null, - + /** boolean */ '_is_func' => null, - + /** integer */ '_is_analyse' => null, - + /** integer the total number of rows returned by the SQL query */ '_num_rows' => null, - + /** integer the total number of fields returned by the SQL query */ '_fields_cnt' => null, - + /** double time taken for execute the SQL query */ '_querytime' => null, - + /** string path for theme images directory */ '_pma_theme_image' => null, - + /** string */ '_text_dir' => null, - + /** boolean */ '_is_maint' => null, - + /** boolean */ '_is_explain' => null, - + /** boolean */ '_is_show' => null, - + /** array table definitions */ '_showtable' => null, - + /** string */ '_printview' => null, - + /** string URL query */ '_url_query' => null, - + /** array column names to highlight */ '_highlight_columns' => null, - + /** array informations used with vertical display mode */ '_vertical_display' => null, - + /** array mime types information of fields */ '_mime_map' => null ); + + /** + * This global variable represent the columns which needs to be syntax + * highlighted in each database tables + * One element of this array represent all relavant columns in all tables in + * one specific database + */ + public $sytax_highlighting_column_info = array( + 'information_schema' => array( + 'processlist' => array( + 'info' => array( + 'libraries/plugins/transformations/Text_Plain_Formatted.class.php', + 'Text_Plain_Formatted', + 'Text_Plain' + ) + ) + ) + + ); /** @@ -176,7 +195,7 @@ class PMA_DisplayResults * @return void */ public function __set($property, $value) - { + { if(array_key_exists($property, $this->_property_array)) { $this->_property_array[$property] = $value; } @@ -266,7 +285,7 @@ class PMA_DisplayResults $this->__set('_showtable', $showtable); $this->__set('_printview', $printview); $this->__set('_url_query', $url_query); - + } // end of the 'setProperties()' function @@ -338,7 +357,7 @@ class PMA_DisplayResults $do_display['bkm_form'] = (string) '0'; $do_display['text_btn'] = (string) '0'; $do_display['pview_lnk'] = (string) '0'; - + } elseif ($this->__get('_is_count') || $this->__get('_is_analyse') || $this->__get('_is_maint') || $this->__get('_is_explain') ) { @@ -351,7 +370,7 @@ class PMA_DisplayResults $do_display['nav_bar'] = (string) '0'; $do_display['ins_row'] = (string) '0'; $do_display['bkm_form'] = (string) '1'; - + if ($this->__get('_is_maint')) { $do_display['text_btn'] = (string) '1'; } else { @@ -485,6 +504,10 @@ class PMA_DisplayResults */ private function _isSelect($analyzed_sql) { + if (!isset($analyzed_sql[0]['select_expr'])) { + $analyzed_sql[0]['select_expr'] = 0; + } + return ! ($this->__get('_is_count') || $this->__get('_is_export') || $this->__get('_is_func') || $this->__get('_is_analyse')) && (count($analyzed_sql[0]['select_expr']) == 0) @@ -954,8 +977,9 @@ class PMA_DisplayResults // required to generate sort links that will remember whether the // "Show all" button has been clicked $sql_md5 = md5($this->__get('_sql_query')); - $session_max_rows - = $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows']; + $session_max_rows = $is_limited_display + ? 0 + : $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows']; $direction = isset($_SESSION['tmp_user_values']['disp_direction']) ? $_SESSION['tmp_user_values']['disp_direction'] @@ -1069,7 +1093,7 @@ class PMA_DisplayResults $vertical_display = $this->__get('_vertical_display'); - if ($is_display['sort_lnk'] == '1') { + if (($is_display['sort_lnk'] == '1') && ! $is_limited_display) { list($order_link, $sorted_headrer_html) = $this->_getOrderLinkAndSortedHeaderHtml( @@ -1426,7 +1450,10 @@ class PMA_DisplayResults && ($direction != self::DISP_DIR_HORIZONTAL_FLIPPED) ) { $comments_map = array(); - if (isset($analyzed_sql[0]) && is_array($analyzed_sql[0])) { + if (isset($analyzed_sql[0]) + && is_array($analyzed_sql[0]) + && isset($analyzed_sql[0]['table_ref']) + ) { foreach ($analyzed_sql[0]['table_ref'] as $tbl) { $tb = $tbl['table_true_name']; $comments_map[$tb] = PMA_getComments($this->__get('_db'), $tb); @@ -2448,7 +2475,7 @@ class PMA_DisplayResults $vertical_display['data'] = array(); $vertical_display['row_delete'] = array(); $this->__set('_vertical_display', $vertical_display); - + // name of the class added to all grid editable elements $grid_edit_class = $is_limited_display ? '' : 'grid_edit'; @@ -2754,7 +2781,33 @@ class PMA_DisplayResults $transform_options['wrapper_link'] = PMA_generate_common_url($_url_params); - $vertical_display = $this->__get('_vertical_display'); + $vertical_display = $this->__get('_vertical_display'); + + // Check whether the field needs to display with syntax highlighting + if ($this->_isNeedToSytaxHighliight($meta->name) + && (trim($row[$i]) != '') + ) { + + $parsed_sql = PMA_SQP_parse($row[$i]); + $row[$i] = PMA_CommonFunctions::getInstance()->formatSql($parsed_sql, $row[$i]); + include_once $this->sytax_highlighting_column_info[strtolower($this->__get('_db'))][strtolower($this->__get('_table'))][strtolower($meta->name)][0]; + $transformation_plugin = new $this->sytax_highlighting_column_info[strtolower($this->__get('_db'))][strtolower($this->__get('_table'))][strtolower($meta->name)][1](null); + + $transform_options = PMA_transformation_getOptions( + isset($mime_map[$meta->name] + ['transformation_options'] + ) + ? $mime_map[$meta->name] + ['transformation_options'] + : '' + ); + + $meta->mimetype = str_replace( + '_', '/', + $this->sytax_highlighting_column_info[strtolower($this->__get('_db'))][strtolower($this->__get('_table'))][strtolower($meta->name)][2] + ); + + } if ($meta->numeric == 1) { // n u m e r i c @@ -2946,6 +2999,21 @@ class PMA_DisplayResults } // end of the '_gatherLinksForLaterOutputs()' function + + /** + * Check whether any field is marked as need to syntax highlight + * + * @param string $field field to check + * + * @return boolean + */ + private function _isNeedToSytaxHighliight($field) { + if (! empty($this->sytax_highlighting_column_info[strtolower($this->__get('_db'))][strtolower($this->__get('_table'))][strtolower($field)])) { + return true; + } + return false; + } + /** * Get url sql query without conditions to shorten URLs @@ -3452,6 +3520,7 @@ class PMA_DisplayResults // replacements will be made if ((PMA_strlen($column) > $GLOBALS['cfg']['LimitChars']) && ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_PARTIAL_TEXT) + && ! $this->_isNeedToSytaxHighliight(strtolower($meta->name)) ) { $column = PMA_substr($column, 0, $GLOBALS['cfg']['LimitChars']) . '...'; @@ -3645,6 +3714,13 @@ class PMA_DisplayResults ) { $is_analyse = $this->__get('_is_analyse'); + $field_flags = PMA_DBI_field_flags($dt_result, $col_index); + if (stristr($field_flags, self::BINARY_FIELD) + && ($GLOBALS['cfg']['ProtectBinary'] == 'all' + || $GLOBALS['cfg']['ProtectBinary'] == 'noblob') + ) { + $class = str_replace('grid_edit', '', $class); + } if (! isset($column) || is_null($column)) { @@ -3664,10 +3740,7 @@ class PMA_DisplayResults $is_field_truncated = true; } - // displays special characters from binaries - $field_flags = PMA_DBI_field_flags($dt_result, $col_index); $formatted = false; - if (isset($meta->_type) && $meta->_type === MYSQLI_TYPE_BIT) { $column = $this->getCommonFunctions()->printableBitValue( @@ -4251,7 +4324,7 @@ class PMA_DisplayResults public function getTable( &$dt_result, &$the_disp_mode, $analyzed_sql, $is_limited_display = false ) { - + $table_html = ''; // Following variable are needed for use in isset/empty or // use with array indexes/safe use in foreach @@ -4298,6 +4371,9 @@ class PMA_DisplayResults if ($is_display['nav_bar'] == '1') { list($pos_next, $pos_prev) = $this->_getOffsets(); } // end if + if (!isset($analyzed_sql[0]['order_by_clause'])) { + $analyzed_sql[0]['order_by_clause'] = ""; + } // 1.3 Find the sort expression // we need $sort_expression and $sort_expression_nodirection @@ -5480,7 +5556,7 @@ class PMA_DisplayResults . 'getName() . '">'; - if ($propertyGroup->getText() != null) { - $ret .= '

' . PMA_getString($propertyGroup->getText()) . '

'; + // for subgroup headers + if (strpos(get_class($propertyGroup), "PropertyItem")) { + $properties = array($propertyGroup); + } else { + // for main groups + $ret .= '
'; + if ($propertyGroup->getText() != null) { + $ret .= '

' . PMA_getString($propertyGroup->getText()) . '

'; + } + $ret .= '
    '; } - $ret .= '
      '; } - foreach ($propertyGroup->getProperties() as $propertyItem) { + + if ($properties == null) { + $not_subgroup_header = true; + $properties = $propertyGroup->getProperties(); + } + foreach ($properties as $propertyItem) { $property_class = get_class($propertyItem); // if the property is a subgroup, we deal with it recursively - if (strpos("group", $property_class)) { + if (strpos($property_class, "Subgroup")) { // for subgroups // each subgroup can have a header, which may also be a form element $subgroup_header = $propertyItem->getSubgroupHeader(); + if (isset($subgroup_header)) { + $ret .= PMA_pluginGetOneOption( + $section, + $plugin_name, + $subgroup_header + ); + } + + $ret .= '
    • getName() . '">'; + } else { + $ret .= '>'; + } + $ret .= PMA_pluginGetOneOption( $section, $plugin_name, $propertyItem, true - ) . '
    • '; - } else { - $ret .= '>'; - } + ); } else { // single property item switch ($property_class) { @@ -362,25 +382,28 @@ function PMA_pluginGetOneOption( $ret .= '
    '; } else { // end main group - $ret .= '
'; + if ($not_subgroup_header) + $ret .= '
'; } - $doc = $propertyItem->getDoc(); - if (isset($doc)) { - if (count($doc) == 3) { - $ret .= PMA_CommonFunctions::getInstance()->showMySQLDocu( - $doc[0], - $doc[1], - false, - $doc[2] - ); - } elseif (count($doc) == 1) { - $ret .= PMA_CommonFunctions::getInstance()->showDocu($doc[0]); - } else { - $ret .= PMA_CommonFunctions::getInstance()->showMySQLDocu( - $doc[0], - $doc[1] - ); + if (method_exists($propertyGroup, "getDoc")){ + $doc = $propertyGroup->getDoc(); + if ($doc != null) { + if (count($doc) == 3) { + $ret .= PMA_CommonFunctions::getInstance()->showMySQLDocu( + $doc[0], + $doc[1], + false, + $doc[2] + ); + } elseif (count($doc) == 1) { + $ret .= PMA_CommonFunctions::getInstance()->showDocu($doc[0]); + } else { + $ret .= PMA_CommonFunctions::getInstance()->showMySQLDocu( + $doc[0], + $doc[1] + ); + } } } diff --git a/libraries/plugins/ExportPlugin.class.php b/libraries/plugins/ExportPlugin.class.php index 5784229feb..cd5bc95fbe 100644 --- a/libraries/plugins/ExportPlugin.class.php +++ b/libraries/plugins/ExportPlugin.class.php @@ -29,56 +29,6 @@ abstract class ExportPlugin extends PluginObserver */ protected $properties; - /** - * Type of the newline character - * - * @var string - */ - private $_crlf; - - /** - * Database name - * - * @var string - */ - private $_db; - - /** - * Contains configuration settings - * - * @var array - */ - private $_cfg; - - - /** - * Relation configuration - * - * @var array - */ - private $_cfgRelation; - - /** - * The type of the export plugin - * - * @var string - */ - private $_what; - - /** - * Parameter to plugin by which it can decide whether it can work - * - * @var mixed - */ - private $_pluginParam; - - /** - * File Charset - * - * @var type String - */ - private $_charsetOfFile; - /** * Common methods, must be overwritten by all export plugins */ @@ -251,159 +201,5 @@ abstract class ExportPlugin extends PluginObserver * @return void */ abstract protected function setProperties(); - - /** - * Gets the type of the newline character - * - * @return string - */ - protected function getCrlf() - { - return $this->_crlf; - } - - /** - * Sets the type of the newline character - * - * @param String $crlf type of the newline character - * - * @return void - */ - protected function setCrlf($crlf) - { - $this->_crlf = $crlf; - } - - /** - * Gets the database name - * - * @return string - */ - protected function getDb() - { - return $this->_db; - } - - /** - * Sets the database name - * - * @param String $db database name - * - * @return void - */ - protected function setDb($db) - { - $this->_db = $db; - } - - /** - * Gets the configuration settings - * - * @return array - */ - protected function getCfg() - { - return $this->_cfg; - } - - /** - * Sets the configuration settings - * - * @param array $cfg array with configuration settings - * - * @return void - */ - protected function setCfg($cfg) - { - $this->_cfg = $cfg; - } - - /** - * Gets the relation configuration - * - * @return array - */ - protected function getCfgRelation() - { - return $this->_cfgRelation; - } - - /** - * Sets the relation configuration - * - * @param array $cfgRelation relation configuration - * - * @return array - */ - protected function setCfgRelation($cfgRelation) - { - $this->_cfgRelation = $cfgRelation; - } - - /** - * Gets the type of the export plugin - * - * @return string - */ - protected function getWhat() - { - return $this->_what; - } - - /** - * Sets the type of the export plugin - * - * @param string $what type of the export plugin - * - * @return void - */ - protected function setWhat($what) - { - $this->_what = $what; - } - - /** - * Gets the parameter to plugin by which it can decide whether it can work - * - * @return mixed - */ - protected function getPluginParam() - { - return $this->_pluginParam; - } - - /** - * Sets the parameter to plugin by which it can decide whether it can work - * - * @param mixed $pluginParam plugin parameter - * - * @return void - */ - protected function setPluginParam($pluginParam) - { - $this->_pluginParam = $pluginParam; - } - - /** - * Gets the file charset - * - * @return string - */ - protected function getCharsetOfFile() - { - return $this->_charsetOfFile; - } - - /** - * Sets the file charset - * - * @param string $charsetOfFile file charset - * - * @return void - */ - protected function setCharsetOfFile($charsetOfFile) - { - $this->_charsetOfFile = $charsetOfFile; - } } ?> \ No newline at end of file diff --git a/libraries/plugins/export/ExportCodegen.class.php b/libraries/plugins/export/ExportCodegen.class.php index 13f9d0004e..88b1fff1e8 100644 --- a/libraries/plugins/export/ExportCodegen.class.php +++ b/libraries/plugins/export/ExportCodegen.class.php @@ -76,11 +76,11 @@ class ExportCodegen extends ExportPlugin protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/HiddenPropertyItem.class.php"; - require_once "$props/options/items/SelectPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/HiddenPropertyItem.class.php"; + include_once "$props/options/items/SelectPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('CodeGen'); diff --git a/libraries/plugins/export/ExportCsv.class.php b/libraries/plugins/export/ExportCsv.class.php index 0ffc3ea4a8..93505e0c1f 100644 --- a/libraries/plugins/export/ExportCsv.class.php +++ b/libraries/plugins/export/ExportCsv.class.php @@ -54,28 +54,9 @@ class ExportCsv extends ExportPlugin */ public function __construct() { - // initialize the specific export csv variables - $this->initSpecificVariables(); $this->setProperties(); } - /** - * Initialize the variables that are used for export CSV - * - * @return void - */ - protected function initSpecificVariables() - { - global $csv_terminated; - global $csv_separator; - global $csv_enclosed; - global $csv_escaped; - $this->setCsvTerminated($csv_terminated); - $this->setCsvSeparator($csv_separator); - $this->setCsvEnclosed($csv_enclosed); - $this->setCsvEscaped($csv_escaped); - } - /** * Sets the export CSV properties * @@ -84,12 +65,12 @@ class ExportCsv extends ExportPlugin protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/TextPropertyItem.class.php"; - require_once "$props/options/items/BoolPropertyItem.class.php"; - require_once "$props/options/items/HiddenPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/TextPropertyItem.class.php"; + include_once "$props/options/items/BoolPropertyItem.class.php"; + include_once "$props/options/items/HiddenPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('CSV'); @@ -129,9 +110,9 @@ class ExportCsv extends ExportPlugin $generalOptions->addProperty($leaf); $leaf = new BoolPropertyItem(); $leaf->setName('removeCRLF'); - $leaf->setText(__( - 'Remove carriage return/line feed characters within columns' - )); + $leaf->setText( + __('Remove carriage return/line feed characters within columns') + ); $leaf = new BoolPropertyItem(); $leaf->setName('columns'); $leaf->setText(__('Put columns names in the first row')); @@ -167,16 +148,7 @@ class ExportCsv extends ExportPlugin */ public function exportHeader () { - // The type of the export plugin only has to be set once and then - // it will remain unchanged. This is the first time - global $what; - $this->setWhat($what); - - $csv_terminated = $this->getCsvTerminated(); - $csv_separator = $this->getCsvSeparator(); - $csv_enclosed = $this->getCsvEnclosed(); - $csv_escaped = $this->getCsvEscaped(); - + global $what, $csv_terminated, $csv_separator, $csv_enclosed, $csv_escaped; // Here we just prepare some values for export if ($what == 'excel') { @@ -209,12 +181,6 @@ class ExportCsv extends ExportPlugin $csv_separator = str_replace('\\t', "\011", $csv_separator); } - // remember the modifications - $this->setCsvTerminated($csv_terminated); - $this->setCsvSeparator($csv_separator); - $this->setCsvEnclosed($csv_enclosed); - $this->setCsvEscaped($csv_escaped); - return true; } @@ -277,11 +243,7 @@ class ExportCsv extends ExportPlugin */ public function exportData($db, $table, $crlf, $error_url, $sql_query) { - $what = $this->getWhat(); - $csv_terminated = $this->getCsvTerminated(); - $csv_separator = $this->getCsvSeparator(); - $csv_enclosed = $this->getCsvEnclosed(); - $csv_escaped = $this->getCsvEscaped(); + global $what, $csv_terminated, $csv_separator, $csv_enclosed, $csv_escaped; // Gets the data from the database $result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED); @@ -378,97 +340,5 @@ class ExportCsv extends ExportPlugin return true; } - - - /* ~~~~~~~~~~~~~~~~~~~~ Getters and Setters ~~~~~~~~~~~~~~~~~~~~ */ - - - /** - * Gets the string used to terminate lines - * - * @return string - */ - protected function getCsvTerminated() - { - return $this->_csvTerminated; - } - - /** - * Sets the string used to terminate lines - * - * @param string $csvTerminated lines terminator - * - * @return void - */ - protected function setCsvTerminated($csvTerminated) - { - $this->_csvTerminated = $csvTerminated; - } - - /** - * Gets the string used to separate columns - * - * @return string - */ - protected function getCsvSeparator() - { - return $this->_csvSeparator; - } - - /** - * Sets the string used to separate columns - * - * @param string $csvSeparator columns separator - * - * @return void - */ - protected function setCsvSeparator($csvSeparator) - { - $this->_csvSeparator = $csvSeparator; - } - - /** - * Gets the string used to enclose columns - * - * @return string - */ - protected function getCsvEnclosed() - { - return $this->_csvEnclosed; - } - - /** - * Sets the string used to enclose columns - * - * @param string $csvEnclosed columns encloser - * - * @return void - */ - protected function setCsvEnclosed($csvEnclosed) - { - $this->_csvEnclosed = $csvEnclosed; - } - - /** - * Gets the string used to escape columns - * - * @return string - */ - protected function getCsvEscaped() - { - return $this->_csvEscaped; - } - - /** - * Sets the string used to escape columns - * - * @param string $csvEscaped columns escaper - * - * @return void - */ - protected function setCsvEscaped($csvEscaped) - { - $this->_csvEscaped = $csvEscaped; - } } ?> \ No newline at end of file diff --git a/libraries/plugins/export/ExportExcel.class.php b/libraries/plugins/export/ExportExcel.class.php index c77029dc2e..3ddf6b6110 100644 --- a/libraries/plugins/export/ExportExcel.class.php +++ b/libraries/plugins/export/ExportExcel.class.php @@ -28,13 +28,13 @@ class ExportExcel extends ExportCsv protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/TextPropertyItem.class.php"; - require_once "$props/options/items/BoolPropertyItem.class.php"; - require_once "$props/options/items/SelectPropertyItem.class.php"; - require_once "$props/options/items/HiddenPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/TextPropertyItem.class.php"; + include_once "$props/options/items/BoolPropertyItem.class.php"; + include_once "$props/options/items/SelectPropertyItem.class.php"; + include_once "$props/options/items/HiddenPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('CSV for MS Excel'); @@ -58,20 +58,22 @@ class ExportExcel extends ExportCsv $generalOptions->addProperty($leaf); $leaf = new BoolPropertyItem(); $leaf->setName('removeCRLF'); - $leaf->setText(__( - 'Remove carriage return/line feed characters within columns' - )); + $leaf->setText( + __('Remove carriage return/line feed characters within columns') + ); $leaf = new BoolPropertyItem(); $leaf->setName('columns'); $leaf->setText(__('Put columns names in the first row')); $generalOptions->addProperty($leaf); $leaf = new SelectPropertyItem(); $leaf->setName('edition'); - $leaf->setValues(array( - 'win' => 'Windows', - 'mac_excel2003' => 'Excel 2003 / Macintosh', - 'mac_excel2008' => 'Excel 2008 / Macintosh' - )); + $leaf->setValues( + array( + 'win' => 'Windows', + 'mac_excel2003' => 'Excel 2003 / Macintosh', + 'mac_excel2008' => 'Excel 2008 / Macintosh' + ) + ); $leaf->setText(__('Excel edition:')); $generalOptions->addProperty($leaf); $leaf = new HiddenPropertyItem(); diff --git a/libraries/plugins/export/ExportHtmlword.class.php b/libraries/plugins/export/ExportHtmlword.class.php index 69268b5f03..bf1c0ed577 100644 --- a/libraries/plugins/export/ExportHtmlword.class.php +++ b/libraries/plugins/export/ExportHtmlword.class.php @@ -36,12 +36,12 @@ class ExportHtmlword extends ExportPlugin protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/RadioPropertyItem.class.php"; - require_once "$props/options/items/TextPropertyItem.class.php"; - require_once "$props/options/items/BoolPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/RadioPropertyItem.class.php"; + include_once "$props/options/items/TextPropertyItem.class.php"; + include_once "$props/options/items/BoolPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('Microsoft Word 2000'); @@ -63,11 +63,13 @@ class ExportHtmlword extends ExportPlugin // create primary items and add them to the group $leaf = new RadioPropertyItem(); $leaf->setName("structure_or_data"); - $leaf->setValues(array( - 'structure' => __('structure'), - 'data' => __('data'), - 'structure_and_data' => __('structure and data') - )); + $leaf->setValues( + array( + 'structure' => __('structure'), + 'data' => __('data'), + 'structure_and_data' => __('structure and data') + ) + ); $dumpWhat->addProperty($leaf); // add the main group to the root group $exportSpecificOptions->addProperty($dumpWhat); @@ -115,7 +117,6 @@ class ExportHtmlword extends ExportPlugin public function exportHeader () { global $charset_of_file; - $this->setCharsetOfFile($charset_of_file); return PMA_exportOutputHandler( 'setWhat($what); if (! PMA_exportOutputHandler( '

' @@ -346,7 +346,6 @@ class ExportHtmlword extends ExportPlugin // set $cfgRelation here, because there is a chance that it's modified // since the class initialization global $cfgRelation; - $this->setCfgRelation($cfgRelation); $schema_insert = ''; @@ -466,7 +465,7 @@ class ExportHtmlword extends ExportPlugin $schema_insert .= ''; return $schema_insert; - } // end of the 'PMA_getTableDef()' function + } /** * Outputs triggers diff --git a/libraries/plugins/export/ExportJson.class.php b/libraries/plugins/export/ExportJson.class.php index a75e184afa..203ced9ac9 100644 --- a/libraries/plugins/export/ExportJson.class.php +++ b/libraries/plugins/export/ExportJson.class.php @@ -36,10 +36,10 @@ class ExportJson extends ExportPlugin protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/HiddenPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/HiddenPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('JSON'); diff --git a/libraries/plugins/export/ExportLatex.class.php b/libraries/plugins/export/ExportLatex.class.php index 43c9677d4f..bcb6bf750e 100644 --- a/libraries/plugins/export/ExportLatex.class.php +++ b/libraries/plugins/export/ExportLatex.class.php @@ -51,7 +51,7 @@ class ExportLatex extends ExportPlugin */ protected function setProperties() { - $plugin_param = $this->getPluginParam(); + global $plugin_param; $hide_structure = false; if ($plugin_param['export_type'] == 'table' && ! $plugin_param['single_table'] @@ -60,12 +60,12 @@ class ExportLatex extends ExportPlugin } $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/BoolPropertyItem.class.php"; - require_once "$props/options/items/RadioPropertyItem.class.php"; - require_once "$props/options/items/TextPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/BoolPropertyItem.class.php"; + include_once "$props/options/items/RadioPropertyItem.class.php"; + include_once "$props/options/items/TextPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('LaTeX'); @@ -97,11 +97,13 @@ class ExportLatex extends ExportPlugin // create primary items and add them to the group $leaf = new RadioPropertyItem(); $leaf->setName("structure_or_data"); - $leaf->setValues(array( - 'structure' => __('structure'), - 'data' => __('data'), - 'structure_and_data' => __('structure and data') - )); + $leaf->setValues( + array( + 'structure' => __('structure'), + 'data' => __('data'), + 'structure_and_data' => __('structure and data') + ) + ); $dumpWhat->addProperty($leaf); // add the main group to the root group $exportSpecificOptions->addProperty($dumpWhat); @@ -207,8 +209,6 @@ class ExportLatex extends ExportPlugin { global $crlf; global $cfg; - $this->setCrlf($crlf); - $this->setCfg($cfg); $head = '% phpMyAdmin LaTeX Dump' . $crlf . '% version ' . PMA_VERSION . $crlf @@ -245,7 +245,7 @@ class ExportLatex extends ExportPlugin */ public function exportDBHeader ($db) { - $crlf = $this->getCrlf(); + global $crlf; $head = '% ' . $crlf . '% ' . __('Database') . ': ' . '\'' . $db . '\'' . $crlf . '% ' . $crlf; @@ -436,9 +436,7 @@ class ExportLatex extends ExportPlugin $dates = false ) { global $cfgRelation; - $common_functions = PMA_CommonFunctions::getInstance(); - $this->setCfgRelation($cfgRelation); /** * Get the unique keys in the table @@ -553,7 +551,9 @@ class ExportLatex extends ExportPlugin $fields = PMA_DBI_get_columns($db, $table); foreach ($fields as $row) { $extracted_columnspec - = PMA_CommonFunctions::getInstance()->extractColumnSpec($row['Type']); + = PMA_CommonFunctions::getInstance()->extractColumnSpec( + $row['Type'] + ); $type = $extracted_columnspec['print_type']; if (empty($type)) { $type = ' '; diff --git a/libraries/plugins/export/ExportMediawiki.class.php b/libraries/plugins/export/ExportMediawiki.class.php new file mode 100644 index 0000000000..12f4c39308 --- /dev/null +++ b/libraries/plugins/export/ExportMediawiki.class.php @@ -0,0 +1,363 @@ +setProperties(); + } + + /** + * Sets the export MediaWiki properties + * + * @return void + */ + protected function setProperties() + { + $props = 'libraries/properties/'; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/groups/OptionsPropertySubgroup.class.php"; + include_once "$props/options/items/MessageOnlyPropertyItem.class.php"; + include_once "$props/options/items/RadioPropertyItem.class.php"; + include_once "$props/options/items/BoolPropertyItem.class.php"; + + $exportPluginProperties = new ExportPluginProperties(); + $exportPluginProperties->setText('MediaWiki Table'); + $exportPluginProperties->setExtension('mediawiki'); + $exportPluginProperties->setMimeType('text/plain'); + $exportPluginProperties->setOptionsText(__('Options')); + + // create the root group that will be the options field for + // $exportPluginProperties + // this will be shown as "Format specific options" + $exportSpecificOptions = new OptionsPropertyRootGroup(); + $exportSpecificOptions->setName("Format Specific Options"); + + // general options main group + $generalOptions = new OptionsPropertyMainGroup(); + $generalOptions->setName("general_opts"); + $generalOptions->setText(__('Dump table')); + + // what to dump (structure/data/both) + $subgroup = new OptionsPropertySubgroup(); + $subgroup->setName("dump_table"); + $subgroup->setText("Dump table"); + $leaf = new RadioPropertyItem(); + $leaf->setName('structure_or_data'); + $leaf->setValues( + array( + 'structure' => __('structure'), + 'data' => __('data'), + 'structure_and_data' => __('structure and data') + ) + ); + $subgroup->setSubgroupHeader($leaf); + $generalOptions->addProperty($subgroup); + + // export table name + $leaf = new BoolPropertyItem(); + $leaf->setName("caption"); + $leaf->setText(__('Export table names')); + $generalOptions->addProperty($leaf); + + // export table headers + $leaf = new BoolPropertyItem(); + $leaf->setName("caption"); + $leaf->setText(__('Export table headers')); + $generalOptions->addProperty($leaf); + //add the main group to the root group + $exportSpecificOptions->addProperty($generalOptions); + + // set the options for the export plugin property item + $exportPluginProperties->setOptions($exportSpecificOptions); + $this->properties = $exportPluginProperties; + } + + /** + * This method is called when any PluginManager to which the observer + * is attached calls PluginManager::notify() + * + * @param SplSubject $subject The PluginManager notifying the observer + * of an update. + * + * @return void + */ + public function update (SplSubject $subject) + { + } + + /** + * Outputs export header + * + * @return bool Whether it succeeded + */ + public function exportHeader () + { + return true; + } + + /** + * Outputs export footer + * + * @return bool Whether it succeeded + */ + public function exportFooter () + { + return true; + } + + /** + * Outputs database header + * + * @param string $db Database name + * + * @return bool Whether it succeeded + */ + public function exportDBHeader ($db) + { + return true; + } + + /** + * Outputs database footer + * + * @param string $db Database name + * + * @return bool Whether it succeeded + */ + public function exportDBFooter ($db) + { + return true; + } + + /** + * Outputs CREATE DATABASE statement + * + * @param string $db Database name + * + * @return bool Whether it succeeded + */ + public function exportDBCreate($db) + { + return true; + } + + /** + * Outputs table's structure + * + * @param string $db database name + * @param string $table table name + * @param string $crlf the end of line sequence + * @param string $error_url the url to go back in case of error + * @param string $export_mode 'create_table','triggers','create_view', + * 'stand_in' + * @param string $export_type 'server', 'database', 'table' + * @param bool $do_relation whether to include relation comments + * @param bool $do_comments whether to include the pmadb-style column + * comments as comments in the structure; this is + * deprecated but the parameter is left here + * because export.php calls exportStructure() + * also for other export types which use this + * parameter + * @param bool $do_mime whether to include mime comments + * @param bool $dates whether to include creation/update/check dates + * + * @return bool Whether it succeeded + */ + public function exportStructure( + $db, + $table, + $crlf, + $error_url, + $export_mode, + $export_type, + $do_relation = false, + $do_comments = false, + $do_mime = false, + $dates = false + ) { + switch($export_mode) { + case 'create_table': + $columns = PMA_DBI_get_columns($db, $table); + $columns = array_values($columns); + $row_cnt = count($columns); + + // Print structure comment + $output = $this->_exportComment( + "Table structure for " + . PMA_CommonFunctions::getInstance()->backquote($table) + ); + + // Begin the table construction + $output .= "{| class=\"wikitable\" style=\"text-align:center;\"" + . $this->_exportCRLF(); + + // Add the table name + if ($GLOBALS['mediawiki_caption']) { + $output .= "|+'''" . $table . "'''" . $this->_exportCRLF(); + } + + // Add the table headers + if ($GLOBALS['mediawiki_headers']) { + $output .= "|- style=\"background:#ffdead;\"" . $this->_exportCRLF(); + $output .= "! style=\"background:#ffffff\" | " + . $this->_exportCRLF(); + for ($i = 0; $i < $row_cnt; ++$i) { + $output .= " | " . $columns[$i]['Field']. $this->_exportCRLF(); + } + } + + // Add the table structure + $output .= "|-" . $this->_exportCRLF(); + $output .= "! Type" . $this->_exportCRLF(); + for ($i = 0; $i < $row_cnt; ++$i) { + $output .= " | " . $columns[$i]['Type'] . $this->_exportCRLF(); + } + + $output .= "|-" . $this->_exportCRLF(); + $output .= "! Null" . $this->_exportCRLF(); + for ($i = 0; $i < $row_cnt; ++$i) { + $output .= " | " . $columns[$i]['Null'] . $this->_exportCRLF(); + } + + $output .= "|-" . $this->_exportCRLF(); + $output .= "! Default" . $this->_exportCRLF(); + for ($i = 0; $i < $row_cnt; ++$i) { + $output .= " | " . $columns[$i]['Default'] . $this->_exportCRLF(); + } + + $output .= "|-" . $this->_exportCRLF(); + $output .= "! Extra" . $this->_exportCRLF(); + for ($i = 0; $i < $row_cnt; ++$i) { + $output .= " | " . $columns[$i]['Extra'] . $this->_exportCRLF(); + } + + $output .= "|}" . str_repeat($this->_exportCRLF(), 2); + break; + } // end switch + + return PMA_exportOutputHandler($output); + } + + /** + * Outputs the content of a table in MediaWiki format + * + * @param string $db database name + * @param string $table table name + * @param string $crlf the end of line sequence + * @param string $error_url the url to go back in case of error + * @param string $sql_query SQL query for obtaining data + * + * @return bool Whether it succeeded + */ + public function exportData( + $db, + $table, + $crlf, + $error_url, + $sql_query + ) { + // Print data comment + $output = $this->_exportComment( + "Table data for ". PMA_CommonFunctions::getInstance()->backquote($table) + ); + + // Begin the table construction + // Use the "wikitable" class for style + // Use the "sortable" class for allowing tables to be sorted by column + $output .= "{| class=\"wikitable sortable\" style=\"text-align:center;\"" + . $this->_exportCRLF(); + + // Add the table name + if ($GLOBALS['mediawiki_caption']) { + $output .= "|+'''" . $table . "'''" . $this->_exportCRLF(); + } + + // Add the table headers + if ($GLOBALS['mediawiki_headers']) { + // Get column names + $column_names = PMA_DBI_get_column_names($db, $table); + + // Add column names as table headers + if ( ! is_null($column_names) ) { + // Use '|-' for separating rows + $output .= "|-" . $this->_exportCRLF(); + + // Use '!' for separating table headers + foreach ($column_names as $column) { + $output .= " ! " . $column . "" . $this->_exportCRLF(); + } + } + } + + // Get the table data from the database + $result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED); + $fields_cnt = PMA_DBI_num_fields($result); + + while ($row = PMA_DBI_fetch_row($result)) { + $output .= "|-" . $this->_exportCRLF(); + + // Use '|' for separating table columns + for ($i = 0; $i < $fields_cnt; ++ $i) { + $output .= " | " . $row[$i] . "" . $this->_exportCRLF(); + } + } + + // End table construction + $output .= "|}" . str_repeat($this->_exportCRLF(), 2); + return PMA_exportOutputHandler($output); + } + + /** + * Outputs comments containing info about the exported tables + * + * @param string $text Text of comment + * + * @return string The formatted comment + */ + private function _exportComment($text = '') + { + // see http://www.mediawiki.org/wiki/Help:Formatting + $comment = $this->_exportCRLF(); + $comment .= '' . str_repeat($this->_exportCRLF(), 2); + + return $comment; + } + + /** + * Outputs CRLF + * + * @return string CRLF + */ + private function _exportCRLF() + { + // The CRLF expected by the mediawiki format is "\n" + return "\n"; + } +} +?> \ No newline at end of file diff --git a/libraries/plugins/export/ExportOds.class.php b/libraries/plugins/export/ExportOds.class.php index f599d86431..3a0e603cca 100644 --- a/libraries/plugins/export/ExportOds.class.php +++ b/libraries/plugins/export/ExportOds.class.php @@ -39,17 +39,19 @@ class ExportOds extends ExportPlugin protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/TextPropertyItem.class.php"; - require_once "$props/options/items/BoolPropertyItem.class.php"; - require_once "$props/options/items/HiddenPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/TextPropertyItem.class.php"; + include_once "$props/options/items/BoolPropertyItem.class.php"; + include_once "$props/options/items/HiddenPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('Open Document Spreadsheet'); $exportPluginProperties->setExtension('ods'); - $exportPluginProperties->setMimeType('application/vnd.oasis.opendocument.spreadsheet'); + $exportPluginProperties->setMimeType( + 'application/vnd.oasis.opendocument.spreadsheet' + ); $exportPluginProperties->setForceFile(true); $exportPluginProperties->setOptionsText(__('Options')); @@ -221,7 +223,6 @@ class ExportOds extends ExportPlugin public function exportData($db, $table, $crlf, $error_url, $sql_query) { global $what; - $this->setWhat($what); // Gets the data from the database $result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED); diff --git a/libraries/plugins/export/ExportOdt.class.php b/libraries/plugins/export/ExportOdt.class.php index 2667c0b38c..2556514928 100644 --- a/libraries/plugins/export/ExportOdt.class.php +++ b/libraries/plugins/export/ExportOdt.class.php @@ -38,7 +38,7 @@ class ExportOdt extends ExportPlugin */ protected function setProperties() { - $plugin_param = $this->getPluginParam(); + global $plugin_param; $hide_structure = false; if ($plugin_param['export_type'] == 'table' && ! $plugin_param['single_table'] @@ -47,17 +47,19 @@ class ExportOdt extends ExportPlugin } $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/TextPropertyItem.class.php"; - require_once "$props/options/items/BoolPropertyItem.class.php"; - require_once "$props/options/items/HiddenPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/TextPropertyItem.class.php"; + include_once "$props/options/items/BoolPropertyItem.class.php"; + include_once "$props/options/items/HiddenPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('Open Document Text'); $exportPluginProperties->setExtension('odt'); - $exportPluginProperties->setMimeType('application/vnd.oasis.opendocument.text'); + $exportPluginProperties->setMimeType( + 'application/vnd.oasis.opendocument.text' + ); $exportPluginProperties->setForceFile(true); $exportPluginProperties->setOptionsText(__('Options')); @@ -74,11 +76,13 @@ class ExportOdt extends ExportPlugin // create primary items and add them to the group $leaf = new RadioPropertyItem(); $leaf->setName("structure_or_data"); - $leaf->setValues(array( - 'structure' => __('structure'), - 'data' => __('data'), - 'structure_and_data' => __('structure and data') - )); + $leaf->setValues( + array( + 'structure' => __('structure'), + 'data' => __('data'), + 'structure_and_data' => __('structure and data') + ) + ); $dumpWhat->addProperty($leaf); // add the main group to the root group $exportSpecificOptions->addProperty($dumpWhat); @@ -236,7 +240,6 @@ class ExportOdt extends ExportPlugin public function exportData($db, $table, $crlf, $error_url, $sql_query) { global $what; - $this->setWhat($what); // Gets the data from the database $result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED); @@ -407,7 +410,6 @@ class ExportOdt extends ExportPlugin $view = false ) { global $cfgRelation; - $this->setCfgRelation($cfgRelation); /** * Gets fields properties diff --git a/libraries/plugins/export/ExportPdf.class.php b/libraries/plugins/export/ExportPdf.class.php index df3867f518..996de3c232 100644 --- a/libraries/plugins/export/ExportPdf.class.php +++ b/libraries/plugins/export/ExportPdf.class.php @@ -66,12 +66,12 @@ class ExportPdf extends ExportPlugin protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/MessageOnlyPropertyItem.class.php"; - require_once "$props/options/items/TextPropertyItem.class.php"; - require_once "$props/options/items/HiddenPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/MessageOnlyPropertyItem.class.php"; + include_once "$props/options/items/TextPropertyItem.class.php"; + include_once "$props/options/items/HiddenPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('PDF'); @@ -92,9 +92,9 @@ class ExportPdf extends ExportPlugin // create primary items and add them to the group $leaf = new MessageOnlyPropertyItem(); $leaf->setName("explanation"); - $leaf->setText(__( - '(Generates a report containing the data of a single table)' - )); + $leaf->setText( + __('(Generates a report containing the data of a single table)') + ); $generalOptions->addProperty($leaf); $leaf = new TextPropertyItem(); $leaf->setName("report_title"); diff --git a/libraries/plugins/export/ExportPhparray.class.php b/libraries/plugins/export/ExportPhparray.class.php index c1116d3906..66bf43fd6b 100644 --- a/libraries/plugins/export/ExportPhparray.class.php +++ b/libraries/plugins/export/ExportPhparray.class.php @@ -36,10 +36,10 @@ class ExportPhparray extends ExportPlugin protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/HiddenPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/HiddenPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('PHP array'); @@ -119,8 +119,8 @@ class ExportPhparray extends ExportPlugin { PMA_exportOutputHandler( '//' . $GLOBALS['crlf'] - . '// Database ' . PMA_CommonFunctions::getInstance()->backquote($db) . $GLOBALS['crlf'] - . '//' . $GLOBALS['crlf'] + . '// Database ' . PMA_CommonFunctions::getInstance()->backquote($db) + . $GLOBALS['crlf'] . '//' . $GLOBALS['crlf'] ); return true; } @@ -195,7 +195,8 @@ class ExportPhparray extends ExportPlugin // Output table name as comment if it's the first record of the table if ($record_cnt == 1) { - $buffer .= $crlf . '// '. PMA_CommonFunctions::getInstance()->backquote($db) . '.' + $buffer .= $crlf . '// ' + . PMA_CommonFunctions::getInstance()->backquote($db) . '.' . PMA_CommonFunctions::getInstance()->backquote($table) . $crlf; $buffer .= '$' . $tablefixed . ' = array(' . $crlf; $buffer .= ' array('; diff --git a/libraries/plugins/export/ExportSql.class.php b/libraries/plugins/export/ExportSql.class.php new file mode 100644 index 0000000000..9a0a38add6 --- /dev/null +++ b/libraries/plugins/export/ExportSql.class.php @@ -0,0 +1,1720 @@ +setProperties(); + + // Avoids undefined variables, use NULL so isset() returns false + if (! isset($GLOBALS['sql_backquotes'])) { + $GLOBALS['sql_backquotes'] = null; + } + } + + /** + * Sets the export SQL properties + * + * @return void + */ + protected function setProperties() + { + global $plugin_param; + + $hide_sql = false; + $hide_structure = false; + if ($plugin_param['export_type'] == 'table' + && ! $plugin_param['single_table'] + ) { + $hide_structure = true; + $hide_sql = true; + } + + if (! $hide_sql) { + $props = 'libraries/properties/'; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/groups/OptionsPropertySubgroup.class.php"; + include_once "$props/options/items/BoolPropertyItem.class.php"; + include_once "$props/options/items/MessageOnlyPropertyItem.class.php"; + include_once "$props/options/items/RadioPropertyItem.class.php"; + include_once "$props/options/items/SelectPropertyItem.class.php"; + include_once "$props/options/items/TextPropertyItem.class.php"; + + $exportPluginProperties = new ExportPluginProperties(); + $exportPluginProperties->setText('SQL'); + $exportPluginProperties->setExtension('sql'); + $exportPluginProperties->setMimeType('text/x-sql'); + $exportPluginProperties->setOptionsText(__('Options')); + + // create the root group that will be the options field for + // $exportPluginProperties + // this will be shown as "Format specific options" + $exportSpecificOptions = new OptionsPropertyRootGroup(); + $exportSpecificOptions->setName("Format Specific Options"); + + // general options main group + $generalOptions = new OptionsPropertyMainGroup(); + $generalOptions->setName("general_opts"); + + // comments + $subgroup = new OptionsPropertySubgroup(); + $subgroup->setName("include_comments"); + $leaf = new BoolPropertyItem(); + $leaf->setName('include_comments'); + $leaf->setText( + __( + 'Display comments (includes info such as export' + . ' timestamp, PHP version, and server version)' + ) + ); + $subgroup->setSubgroupHeader($leaf); + + $leaf = new TextPropertyItem(); + $leaf->setName('header_comment'); + $leaf->setText( + __('Additional custom header comment (\n splits lines):') + ); + $subgroup->addProperty($leaf); + $leaf = new BoolPropertyItem(); + $leaf->setName('dates'); + $leaf->setText( + __( + 'Include a timestamp of when databases were created, last' + . ' updated, and last checked' + ) + ); + $subgroup->addProperty($leaf); + if (! empty($GLOBALS['cfgRelation']['relation'])) { + $leaf = new BoolPropertyItem(); + $leaf->setName('relation'); + $leaf->setText(__('Display foreign key relationships')); + $subgroup->addProperty($leaf); + } + if (! empty($GLOBALS['cfgRelation']['mimework'])) { + $leaf = new BoolPropertyItem(); + $leaf->setName('mime'); + $leaf->setText(__('Display MIME types')); + $subgroup->addProperty($leaf); + } + $generalOptions->addProperty($subgroup); + + // enclose in a transaction + $leaf = new BoolPropertyItem(); + $leaf->setName("use_transaction"); + $leaf->setText(__('Enclose export in a transaction')); + $leaf->setDoc( + array( + 'programs', + 'mysqldump', + 'option_mysqldump_single-transaction' + ) + ); + $generalOptions->addProperty($leaf); + + // disable foreign key checks + $leaf = new BoolPropertyItem(); + $leaf->setName("disable_fk"); + $leaf->setText(__('Disable foreign key checks')); + $leaf->setDoc( + array( + 'manual_MySQL_Database_Administration', + 'server-system-variables', + 'sysvar_foreign_key_checks' + ) + ); + $generalOptions->addProperty($leaf); + + // compatibility maximization + $compats = PMA_DBI_getCompatibilities(); + if (count($compats) > 0) { + $values = array(); + foreach ($compats as $val) { + $values[$val] = $val; + } + + $leaf = new SelectPropertyItem(); + $leaf->setName("compatibility"); + $leaf->setText( + __( + 'Database system or older MySQL server to maximize output' + . ' compatibility with:' + ) + ); + $leaf->setValues($values); + $leaf->setDoc( + array( + 'manual_MySQL_Database_Administration', + 'Server_SQL_mode' + ) + ); + $generalOptions->addProperty($leaf); + + unset($values); + } + + // server export options + if ($plugin_param['export_type'] == 'server') { + $leaf = new BoolPropertyItem(); + $leaf->setName("drop_database"); + $leaf->setText( + sprintf(__('Add %s statement'), 'DROP DATABASE') + ); + $generalOptions->addProperty($leaf); + } + + // what to dump (structure/data/both) + $subgroup = new OptionsPropertySubgroup(); + $subgroup->setName("dump_table"); + $subgroup->setText("Dump table"); + $leaf = new RadioPropertyItem(); + $leaf->setName('structure_or_data'); + $leaf->setValues( + array( + 'structure' => __('structure'), + 'data' => __('data'), + 'structure_and_data' => __('structure and data') + ) + ); + $subgroup->setSubgroupHeader($leaf); + $generalOptions->addProperty($subgroup); + + // add the main group to the root group + $exportSpecificOptions->addProperty($generalOptions); + + + // structure options main group + if (! $hide_structure) { + $structureOptions = new OptionsPropertyMainGroup(); + $structureOptions->setName("structure"); + $structureOptions->setText(__('Object creation options')); + $structureOptions->setForce('data'); + + // begin SQL Statements + $subgroup = new OptionsPropertySubgroup(); + $leaf = new MessageOnlyPropertyItem(); + $leaf->setName('add_statements'); + $leaf->setText(__('Add statements:')); + $subgroup->setSubgroupHeader($leaf); + if ($plugin_param['export_type'] == 'table') { + if (PMA_Table::isView($GLOBALS['db'], $GLOBALS['table'])) { + $drop_clause = 'DROP VIEW'; + } else { + $drop_clause = 'DROP TABLE'; + } + } else { + if (PMA_DRIZZLE) { + $drop_clause = 'DROP TABLE'; + } else { + $drop_clause = 'DROP TABLE / VIEW / PROCEDURE' + . ' / FUNCTION'; + if (PMA_MYSQL_INT_VERSION > 50100) { + $drop_clause .= ' / EVENT'; + } + } + } + $leaf = new BoolPropertyItem(); + $leaf->setName('drop_table'); + $leaf->setText(sprintf(__('Add %s statement'), $drop_clause)); + $subgroup->addProperty($leaf); + // Drizzle doesn't support procedures and functions + if (! PMA_DRIZZLE) { + $leaf = new BoolPropertyItem(); + $leaf->setName('procedure_function'); + $leaf->setText( + sprintf( + __('Add %s statement'), + 'CREATE PROCEDURE / FUNCTION' + . (PMA_MYSQL_INT_VERSION > 50100 + ? ' / EVENT' : '') + ) + ); + $subgroup->addProperty($leaf); + } + + // begin CREATE TABLE statements + $subgroup_create_table = new OptionsPropertySubgroup(); + $leaf = new BoolPropertyItem(); + $leaf->setName('create_table_statements'); + $leaf->setText(__('CREATE TABLE options:')); + $subgroup_create_table->setSubgroupHeader($leaf); + $leaf = new BoolPropertyItem(); + $leaf->setName('if_not_exists'); + $leaf->setText('IF NOT EXISTS'); + $subgroup_create_table->addProperty($leaf); + $leaf = new BoolPropertyItem(); + $leaf->setName('auto_increment'); + $leaf->setText('AUTO_INCREMENT'); + $subgroup_create_table->addProperty($leaf); + $subgroup->addProperty($subgroup_create_table); + $structureOptions->addProperty($subgroup); + + $leaf = new BoolPropertyItem(); + $leaf->setName("backquotes"); + $leaf->setText( + __( + 'Enclose table and column names with backquotes ' + . '(Protects column and table names formed with' + . ' special characters or keywords)' + ) + ); + + $structureOptions->addProperty($leaf); + + // add the main group to the root group + $exportSpecificOptions->addProperty($structureOptions); + } + + + // begin Data options + $dataOptions = new OptionsPropertyMainGroup(); + $dataOptions->setName("data"); + $dataOptions->setText(__('Data creation options')); + $dataOptions->setForce('structure'); + $leaf = new BoolPropertyItem(); + $leaf->setName("truncate"); + $leaf->setText(__('Truncate table before insert')); + $dataOptions->addProperty($leaf); + + // begin SQL Statements + $subgroup = new OptionsPropertySubgroup(); + $leaf = new MessageOnlyPropertyItem(); + $leaf->setText(__('Instead of INSERT statements, use:')); + $subgroup->setSubgroupHeader($leaf); + // Not supported in Drizzle + if (! PMA_DRIZZLE) { + $leaf = new BoolPropertyItem(); + $leaf->setName("delayed"); + $leaf->setText(__('INSERT DELAYED statements')); + $leaf->setDoc( + array( + 'manual_MySQL_Database_Administration', + 'insert_delayed' + ) + ); + $subgroup->addProperty($leaf); + } + $leaf = new BoolPropertyItem(); + $leaf->setName("ignore"); + $leaf->setText(__('INSERT IGNORE statements')); + $leaf->setDoc( + array( + 'manual_MySQL_Database_Administration', + 'insert' + ) + ); + $subgroup->addProperty($leaf); + $dataOptions->addProperty($subgroup); + + // Function to use when dumping dat + $leaf = new SelectPropertyItem(); + $leaf->setName("type"); + $leaf->setText(__('Function to use when dumping data:')); + $leaf->setValues( + array( + 'INSERT' => 'INSERT', + 'UPDATE' => 'UPDATE', + 'REPLACE' => 'REPLACE' + ) + ); + $dataOptions->addProperty($leaf); + + /* Syntax to use when inserting data */ + $subgroup = new OptionsPropertySubgroup(); + $leaf = new MessageOnlyPropertyItem(); + $leaf->setText(__('Syntax to use when inserting data:')); + $subgroup->setSubgroupHeader($leaf); + $leaf = new RadioPropertyItem(); + $leaf->setName("insert_syntax"); + $leaf->setText(__('INSERT IGNORE statements')); + $leaf->setValues( + array( + 'complete' => __( + 'include column names in every INSERT statement' + . '
      Example: INSERT INTO' + . ' tbl_name (col_A,col_B,col_C) VALUES (1,2,3)' + ), + 'extended' => __( + 'insert multiple rows in every INSERT statement' + . '
      Example: INSERT INTO' + . ' tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)' + ), + 'both' => __( + 'both of the above
      Example:' + . ' INSERT INTO tbl_name (col_A,col_B) VALUES (1,2,3),' + . ' (4,5,6), (7,8,9)' + ), + 'none' => __( + 'neither of the above
      Example:' + . ' INSERT INTO tbl_name VALUES (1,2,3)' + ) + ) + ); + $subgroup->addProperty($leaf); + $dataOptions->addProperty($subgroup); + + // Max length of query + $leaf = new TextPropertyItem(); + $leaf->setName("max_query_size"); + $leaf->setText(__('Maximal length of created query')); + $dataOptions->addProperty($leaf); + + // Dump binary columns in hexadecimal + $leaf = new BoolPropertyItem(); + $leaf->setName("hex_for_blob"); + $leaf->setText( + __( + 'Dump binary columns in hexadecimal notation' + . ' (for example, "abc" becomes 0x616263)' + ) + ); + $dataOptions->addProperty($leaf); + + // Drizzle works only with UTC timezone + if (! PMA_DRIZZLE) { + // Dump time in UTC + $leaf = new BoolPropertyItem(); + $leaf->setName("utc_time"); + $leaf->setText( + __( + 'Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns' + . ' to be dumped and reloaded between servers in different' + . ' time zones)' + ) + ); + $dataOptions->addProperty($leaf); + } + + // add the main group to the root group + $exportSpecificOptions->addProperty($dataOptions); + + // set the options for the export plugin property item + $exportPluginProperties->setOptions($exportSpecificOptions); + $this->properties = $exportPluginProperties; + } + } + + /** + * This method is called when any PluginManager to which the observer + * is attached calls PluginManager::notify() + * + * @param SplSubject $subject The PluginManager notifying the observer + * of an update. + * + * @return void + */ + public function update (SplSubject $subject) + { + } + + /** + * Exports routines (procedures and functions) + * + * @param string $db Database + * + * @return bool Whether it succeeded + */ + public function exportRoutines($db) + { + global $crlf; + + $common_functions = PMA_CommonFunctions::getInstance(); + $text = ''; + $delimiter = '$$'; + + $procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE'); + $function_names = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION'); + + if ($procedure_names || $function_names) { + $text .= $crlf + . 'DELIMITER ' . $delimiter . $crlf; + } + + if ($procedure_names) { + $text .= + $this->_exportComment() + . $this->_exportComment(__('Procedures')) + . $this->_exportComment(); + + foreach ($procedure_names as $procedure_name) { + if (! empty($GLOBALS['sql_drop_table'])) { + $text .= 'DROP PROCEDURE IF EXISTS ' + . $common_functions->backquote($procedure_name) + . $delimiter . $crlf; + } + $text .= PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name) + . $delimiter . $crlf . $crlf; + } + } + + if ($function_names) { + $text .= + $this->_exportComment() + . $this->_exportComment(__('Functions')) + . $this->_exportComment(); + + foreach ($function_names as $function_name) { + if (! empty($GLOBALS['sql_drop_table'])) { + $text .= 'DROP FUNCTION IF EXISTS ' + . $common_functions->backquote($function_name) + . $delimiter . $crlf; + } + $text .= PMA_DBI_get_definition($db, 'FUNCTION', $function_name) + . $delimiter . $crlf . $crlf; + } + } + + if ($procedure_names || $function_names) { + $text .= 'DELIMITER ;' . $crlf; + } + + if (! empty($text)) { + return PMA_exportOutputHandler($text); + } else { + return false; + } + } + + /** + * Possibly outputs comment + * + * @param string $text Text of comment + * + * @return string The formatted comment + */ + private function _exportComment($text = '') + { + if (isset($GLOBALS['sql_include_comments']) + && $GLOBALS['sql_include_comments'] + ) { + // see http://dev.mysql.com/doc/refman/5.0/en/ansi-diff-comments.html + return '--' . (empty($text) ? '' : ' ') . $text . $GLOBALS['crlf']; + } else { + return ''; + } + } + + /** + * Possibly outputs CRLF + * + * @return string $crlf or nothing + */ + private function _possibleCRLF() + { + if (isset($GLOBALS['sql_include_comments']) + && $GLOBALS['sql_include_comments'] + ) { + return $GLOBALS['crlf']; + } else { + return ''; + } + } + + /** + * Outputs export footer + * + * @return bool Whether it succeeded + */ + public function exportFooter() + { + global $crlf, $mysql_charset_map; + + $foot = ''; + + if (isset($GLOBALS['sql_disable_fk'])) { + $foot .= 'SET FOREIGN_KEY_CHECKS=1;' . $crlf; + } + + if (isset($GLOBALS['sql_use_transaction'])) { + $foot .= 'COMMIT;' . $crlf; + } + + // restore connection settings + $charset_of_file = isset($GLOBALS['charset_of_file']) + ? $GLOBALS['charset_of_file'] : ''; + if (! empty($GLOBALS['asfile']) + && isset($mysql_charset_map[$charset_of_file]) + && ! PMA_DRIZZLE + ) { + $foot .= $crlf + . '/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;' + . $crlf + . '/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;' + . $crlf + . '/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;' + . $crlf; + } + + /* Restore timezone */ + if (isset($GLOBALS['sql_utc_time']) && $GLOBALS['sql_utc_time']) { + PMA_DBI_query('SET time_zone = "' . $GLOBALS['old_tz'] . '"'); + } + + return PMA_exportOutputHandler($foot); + } + + /** + * Outputs export header. It is the first method to be called, so all + * the required variables are initialized here. + * + * @return bool Whether it succeeded + */ + public function exportHeader() + { + global $crlf, $cfg; + global $mysql_charset_map; + + if (isset($GLOBALS['sql_compatibility'])) { + $tmp_compat = $GLOBALS['sql_compatibility']; + if ($tmp_compat == 'NONE') { + $tmp_compat = ''; + } + PMA_DBI_try_query('SET SQL_MODE="' . $tmp_compat . '"'); + unset($tmp_compat); + } + $head = $this->_exportComment('phpMyAdmin SQL Dump') + . $this->_exportComment('version ' . PMA_VERSION) + . $this->_exportComment('http://www.phpmyadmin.net') + . $this->_exportComment(); + $host_string = __('Host') . ': ' . $cfg['Server']['host']; + if (! empty($cfg['Server']['port'])) { + $host_string .= ':' . $cfg['Server']['port']; + } + $head .= $this->_exportComment($host_string); + $head .= + $this->_exportComment( + __('Generation Time') . ': ' + . PMA_CommonFunctions::getInstance()->localisedDate() + ) + . $this->_exportComment( + __('Server version') . ': ' . PMA_MYSQL_STR_VERSION + ) + . $this->_exportComment(__('PHP Version') . ': ' . phpversion()) + . $this->_possibleCRLF(); + + if (isset($GLOBALS['sql_header_comment']) + && ! empty($GLOBALS['sql_header_comment']) + ) { + // '\n' is not a newline (like "\n" would be), it's the characters + // backslash and n, as explained on the export interface + $lines = explode('\n', $GLOBALS['sql_header_comment']); + $head .= $this->_exportComment(); + foreach ($lines as $one_line) { + $head .= $this->_exportComment($one_line); + } + $head .= $this->_exportComment(); + } + + if (isset($GLOBALS['sql_disable_fk'])) { + $head .= 'SET FOREIGN_KEY_CHECKS=0;' . $crlf; + } + + // We want exported AUTO_INCREMENT columns to have still same value, + // do this only for recent MySQL exports + if ((! isset($GLOBALS['sql_compatibility']) + || $GLOBALS['sql_compatibility'] == 'NONE') + && ! PMA_DRIZZLE + ) { + $head .= 'SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";' . $crlf; + } + + if (isset($GLOBALS['sql_use_transaction'])) { + $head .= 'SET AUTOCOMMIT = 0;' . $crlf + . 'START TRANSACTION;' . $crlf; + } + + /* Change timezone if we should export timestamps in UTC */ + if (isset($GLOBALS['sql_utc_time']) && $GLOBALS['sql_utc_time']) { + $head .= 'SET time_zone = "+00:00";' . $crlf; + $GLOBALS['old_tz'] = PMA_DBI_fetch_value('SELECT @@session.time_zone'); + PMA_DBI_query('SET time_zone = "+00:00"'); + } + + $head .= $this->_possibleCRLF(); + + if (! empty($GLOBALS['asfile']) && ! PMA_DRIZZLE) { + // we are saving as file, therefore we provide charset information + // so that a utility like the mysql client can interpret + // the file correctly + if (isset($GLOBALS['charset_of_file']) + && isset($mysql_charset_map[$GLOBALS['charset_of_file']]) + ) { + // we got a charset from the export dialog + $set_names = $mysql_charset_map[$GLOBALS['charset_of_file']]; + } else { + // by default we use the connection charset + $set_names = $mysql_charset_map['utf-8']; + } + $head .= $crlf + . '/*!40101 SET @OLD_CHARACTER_SET_CLIENT=' + . '@@CHARACTER_SET_CLIENT */;' . $crlf + . '/*!40101 SET @OLD_CHARACTER_SET_RESULTS=' + . '@@CHARACTER_SET_RESULTS */;' . $crlf + . '/*!40101 SET @OLD_COLLATION_CONNECTION=' + . '@@COLLATION_CONNECTION */;'. $crlf + . '/*!40101 SET NAMES ' . $set_names . ' */;' . $crlf . $crlf; + } + + return PMA_exportOutputHandler($head); + } + + /** + * Outputs CREATE DATABASE statement + * + * @param string $db Database name + * + * @return bool Whether it succeeded + */ + public function exportDBCreate($db) + { + global $crlf; + + $common_functions = PMA_CommonFunctions::getInstance(); + + if (isset($GLOBALS['sql_drop_database'])) { + if (! PMA_exportOutputHandler( + 'DROP DATABASE ' + . (isset($GLOBALS['sql_backquotes']) + ? $common_functions->backquote($db) : $db) + . ';' . $crlf + )) { + return false; + } + } + $create_query = 'CREATE DATABASE ' + . (isset($GLOBALS['sql_backquotes']) + ? $common_functions->backquote($db) : $db); + $collation = PMA_getDbCollation($db); + if (PMA_DRIZZLE) { + $create_query .= ' COLLATE ' . $collation; + } else { + if (strpos($collation, '_')) { + $create_query .= ' DEFAULT CHARACTER SET ' + . substr($collation, 0, strpos($collation, '_')) + . ' COLLATE ' . $collation; + } else { + $create_query .= ' DEFAULT CHARACTER SET ' . $collation; + } + } + $create_query .= ';' . $crlf; + if (! PMA_exportOutputHandler($create_query)) { + return false; + } + if (isset($GLOBALS['sql_backquotes']) + && ((isset($GLOBALS['sql_compatibility']) + && $GLOBALS['sql_compatibility'] == 'NONE') + || PMA_DRIZZLE) + ) { + $result = PMA_exportOutputHandler( + 'USE ' . $common_functions->backquote($db) . ';' . $crlf + ); + } else { + $result = PMA_exportOutputHandler('USE ' . $db . ';' . $crlf); + } + + return $result; + } + + /** + * Outputs database header + * + * @param string $db Database name + * + * @return bool Whether it succeeded + */ + public function exportDBHeader($db) + { + $head = $this->_exportComment() + . $this->_exportComment( + __('Database') . ': ' + . (isset($GLOBALS['sql_backquotes']) + ? PMA_CommonFunctions::getInstance()->backquote($db) + : '\'' . $db . '\'') + ) + . $this->_exportComment(); + return PMA_exportOutputHandler($head); + } + + /** + * Outputs database footer + * + * @param string $db Database name + * + * @return bool Whether it succeeded + */ + public function exportDBFooter($db) + { + global $crlf; + + $common_functions = PMA_CommonFunctions::getInstance(); + $result = true; + if (isset($GLOBALS['sql_constraints'])) { + $result = PMA_exportOutputHandler($GLOBALS['sql_constraints']); + unset($GLOBALS['sql_constraints']); + } + + if (($GLOBALS['sql_structure_or_data'] == 'structure' + || $GLOBALS['sql_structure_or_data'] == 'structure_and_data') + && isset($GLOBALS['sql_procedure_function']) + ) { + $text = ''; + $delimiter = '$$'; + + if (PMA_MYSQL_INT_VERSION > 50100) { + $event_names = PMA_DBI_fetch_result( + 'SELECT EVENT_NAME FROM information_schema.EVENTS WHERE' + . ' EVENT_SCHEMA= \'' + . $common_functions->sqlAddSlashes($db, true) + . '\';' + ); + } else { + $event_names = array(); + } + + if ($event_names) { + $text .= $crlf + . 'DELIMITER ' . $delimiter . $crlf; + + $text .= + $this->_exportComment() + . $this->_exportComment(__('Events')) + . $this->_exportComment(); + + foreach ($event_names as $event_name) { + if (! empty($GLOBALS['sql_drop_table'])) { + $text .= 'DROP EVENT ' + . $common_functions->backquote($event_name) + . $delimiter . $crlf; + } + $text .= PMA_DBI_get_definition($db, 'EVENT', $event_name) + . $delimiter . $crlf . $crlf; + } + + $text .= 'DELIMITER ;' . $crlf; + } + + if (! empty($text)) { + $result = PMA_exportOutputHandler($text); + } + } + return $result; + } + + /** + * Returns a stand-in CREATE definition to resolve view dependencies + * + * @param string $db the database name + * @param string $view the view name + * @param string $crlf the end of line sequence + * + * @return string resulting definition + */ + public function getTableDefStandIn($db, $view, $crlf) + { + + $common_functions = PMA_CommonFunctions::getInstance(); + $create_query = ''; + if (! empty($GLOBALS['sql_drop_table'])) { + $create_query .= 'DROP VIEW IF EXISTS ' + . $common_functions->backquote($view) + . ';' . $crlf; + } + + $create_query .= 'CREATE TABLE '; + + if (isset($GLOBALS['sql_if_not_exists']) + && $GLOBALS['sql_if_not_exists'] + ) { + $create_query .= 'IF NOT EXISTS '; + } + $create_query .= $common_functions->backquote($view) . ' (' . $crlf; + $tmp = array(); + $columns = PMA_DBI_get_columns_full($db, $view); + foreach ($columns as $column_name => $definition) { + $tmp[] = $common_functions->backquote($column_name) . ' ' . + $definition['Type'] . $crlf; + } + $create_query .= implode(',', $tmp) . ');'; + return($create_query); + } + + /** + * Returns $table's CREATE definition + * + * @param string $db the database name + * @param string $table the table name + * @param string $crlf the end of line sequence + * @param string $error_url the url to go back in case of error + * @param bool $show_dates whether to include creation/update/check + * dates + * @param bool $add_semicolon whether to add semicolon and end-of-line at + * the end + * @param bool $view whether we're handling a view + * + * @return string resulting schema + */ + public function getTableDef( + $db, + $table, + $crlf, + $error_url, + $show_dates = false, + $add_semicolon = true, + $view = false + ) { + global $sql_drop_table, $sql_backquotes, $sql_constraints, + $sql_constraints_query, $sql_drop_foreign_keys; + + $common_functions = PMA_CommonFunctions::getInstance(); + $schema_create = ''; + $auto_increment = ''; + $new_crlf = $crlf; + + // need to use PMA_DBI_QUERY_STORE with PMA_DBI_num_rows() in mysqli + $result = PMA_DBI_query( + 'SHOW TABLE STATUS FROM ' . $common_functions->backquote($db) + . ' LIKE \'' . $common_functions->sqlAddSlashes($table, true) . '\'', + null, + PMA_DBI_QUERY_STORE + ); + if ($result != false) { + if (PMA_DBI_num_rows($result) > 0) { + $tmpres = PMA_DBI_fetch_assoc($result); + if (PMA_DRIZZLE && $show_dates) { + // Drizzle doesn't give Create_time and Update_time in + // SHOW TABLE STATUS, add it + $sql ="SELECT + TABLE_CREATION_TIME AS Create_time, + TABLE_UPDATE_TIME AS Update_time + FROM data_dictionary.TABLES + WHERE TABLE_SCHEMA = '" + . $common_functions->sqlAddSlashes($db) . "' + AND TABLE_NAME = '" + . $common_functions->sqlAddSlashes($table) . "'"; + $tmpres = array_merge(PMA_DBI_fetch_single_row($sql), $tmpres); + } + // Here we optionally add the AUTO_INCREMENT next value, + // but starting with MySQL 5.0.24, the clause is already included + // in SHOW CREATE TABLE so we'll remove it below + // It's required for Drizzle because SHOW CREATE TABLE uses + // the value from table's creation time + if (isset($GLOBALS['sql_auto_increment']) + && ! empty($tmpres['Auto_increment']) + ) { + $auto_increment .= ' AUTO_INCREMENT=' + . $tmpres['Auto_increment'] . ' '; + } + + if ($show_dates + && isset($tmpres['Create_time']) + && ! empty($tmpres['Create_time']) + ) { + $schema_create .= $this->_exportComment( + __('Creation') . ': ' + . $common_functions->localisedDate( + strtotime($tmpres['Create_time']) + ) + ); + $new_crlf = $this->_exportComment() . $crlf; + } + + if ($show_dates + && isset($tmpres['Update_time']) + && ! empty($tmpres['Update_time']) + ) { + $schema_create .= $this->_exportComment( + __('Last update') . ': ' + . $common_functions->localisedDate( + strtotime($tmpres['Update_time']) + ) + ); + $new_crlf = $this->_exportComment() . $crlf; + } + + if ($show_dates + && isset($tmpres['Check_time']) + && ! empty($tmpres['Check_time']) + ) { + $schema_create .= $this->_exportComment( + __('Last check') . ': ' + . $common_functions->localisedDate( + strtotime($tmpres['Check_time']) + ) + ); + $new_crlf = $this->_exportComment() . $crlf; + } + } + PMA_DBI_free_result($result); + } + + $schema_create .= $new_crlf; + + // no need to generate a DROP VIEW here, it was done earlier + if (! empty($sql_drop_table) && ! PMA_Table::isView($db, $table)) { + $schema_create .= 'DROP TABLE IF EXISTS ' + . $common_functions->backquote($table, $sql_backquotes) . ';' + . $crlf; + } + + // Complete table dump, + // Whether to quote table and column names or not + // Drizzle always quotes names + if (! PMA_DRIZZLE) { + if ($sql_backquotes) { + PMA_DBI_query('SET SQL_QUOTE_SHOW_CREATE = 1'); + } else { + PMA_DBI_query('SET SQL_QUOTE_SHOW_CREATE = 0'); + } + } + + // I don't see the reason why this unbuffered query could cause problems, + // because SHOW CREATE TABLE returns only one row, and we free the + // results below. Nonetheless, we got 2 user reports about this + // (see bug 1562533) so I removed the unbuffered mode. + // $result = PMA_DBI_query('SHOW CREATE TABLE ' . backquote($db) + // . '.' . backquote($table), null, PMA_DBI_QUERY_UNBUFFERED); + // + // Note: SHOW CREATE TABLE, at least in MySQL 5.1.23, does not + // produce a displayable result for the default value of a BIT + // column, nor does the mysqldump command. See MySQL bug 35796 + $result = PMA_DBI_try_query( + 'SHOW CREATE TABLE ' . $common_functions->backquote($db) . '.' + . $common_functions->backquote($table) + ); + // an error can happen, for example the table is crashed + $tmp_error = PMA_DBI_getError(); + if ($tmp_error) { + return $this->_exportComment(__('in use') . '(' . $tmp_error . ')'); + } + + if ($result != false && ($row = PMA_DBI_fetch_row($result))) { + $create_query = $row[1]; + unset($row); + + // Convert end of line chars to one that we want (note that MySQL + // doesn't return query it will accept in all cases) + if (strpos($create_query, "(\r\n ")) { + $create_query = str_replace("\r\n", $crlf, $create_query); + } elseif (strpos($create_query, "(\n ")) { + $create_query = str_replace("\n", $crlf, $create_query); + } elseif (strpos($create_query, "(\r ")) { + $create_query = str_replace("\r", $crlf, $create_query); + } + + /* + * Drop database name from VIEW creation. + * + * This is a bit tricky, but we need to issue SHOW CREATE TABLE with + * database name, but we don't want name to show up in CREATE VIEW + * statement. + */ + if ($view) { + $create_query = preg_replace( + '/' . $common_functions->backquote($db) . '\./', + '', + $create_query + ); + } + + // Should we use IF NOT EXISTS? + if (isset($GLOBALS['sql_if_not_exists'])) { + $create_query = preg_replace( + '/^CREATE TABLE/', + 'CREATE TABLE IF NOT EXISTS', + $create_query + ); + } + + // Drizzle (checked on 2011.03.13) returns ROW_FORMAT surrounded + // with quotes, which is not accepted by parser + if (PMA_DRIZZLE) { + $create_query = preg_replace( + '/ROW_FORMAT=\'(\S+)\'/', + 'ROW_FORMAT=$1', + $create_query + ); + } + + // are there any constraints to cut out? + if (preg_match('@CONSTRAINT|FOREIGN[\s]+KEY@', $create_query)) { + + // Split the query into lines, so we can easily handle it. + // We know lines are separated by $crlf (done few lines above). + $sql_lines = explode($crlf, $create_query); + $sql_count = count($sql_lines); + + // lets find first line with constraints + for ($i = 0; $i < $sql_count; $i++) { + if (preg_match( + '@^[\s]*(CONSTRAINT|FOREIGN[\s]+KEY)@', + $sql_lines[$i] + )) { + break; + } + } + + // If we really found a constraint + if ($i != $sql_count) { + + // remove, from the end of create statement + $sql_lines[$i - 1] = preg_replace( + '@,$@', + '', + $sql_lines[$i - 1] + ); + + // prepare variable for constraints + if (! isset($sql_constraints)) { + if (isset($GLOBALS['no_constraints_comments'])) { + $sql_constraints = ''; + } else { + $sql_constraints = $crlf + . $this->_exportComment() + . $this->_exportComment( + __('Constraints for dumped tables') + ) + . $this->_exportComment(); + } + } + + // comments for current table + if (! isset($GLOBALS['no_constraints_comments'])) { + $sql_constraints .= $crlf + . $this->_exportComment() + . $this->_exportComment( + __('Constraints for table') + . ' ' + . $common_functions->backquote($table) + ) + . $this->_exportComment(); + } + + // let's do the work + $sql_constraints_query .= 'ALTER TABLE ' + . $common_functions->backquote($table) . $crlf; + $sql_constraints .= 'ALTER TABLE ' + . $common_functions->backquote($table) . $crlf; + $sql_drop_foreign_keys .= 'ALTER TABLE ' + . $common_functions->backquote($db) . '.' + . $common_functions->backquote($table) . $crlf; + + $first = true; + for ($j = $i; $j < $sql_count; $j++) { + if (preg_match( + '@CONSTRAINT|FOREIGN[\s]+KEY@', + $sql_lines[$j] + )) { + if (! $first) { + $sql_constraints .= $crlf; + } + if (strpos($sql_lines[$j], 'CONSTRAINT') === false) { + $tmp_str = preg_replace( + '/(FOREIGN[\s]+KEY)/', + 'ADD \1', + $sql_lines[$j] + ); + $sql_constraints_query .= $tmp_str; + $sql_constraints .= $tmp_str; + } else { + $tmp_str = preg_replace( + '/(CONSTRAINT)/', + 'ADD \1', + $sql_lines[$j] + ); + $sql_constraints_query .= $tmp_str; + $sql_constraints .= $tmp_str; + preg_match( + '/(CONSTRAINT)([\s])([\S]*)([\s])/', + $sql_lines[$j], + $matches + ); + if (! $first) { + $sql_drop_foreign_keys .= ', '; + } + $sql_drop_foreign_keys .= 'DROP FOREIGN KEY ' + . $matches[3]; + } + $first = false; + } else { + break; + } + } + $sql_constraints .= ';' . $crlf; + $sql_constraints_query .= ';'; + + $create_query = implode( + $crlf, + array_slice($sql_lines, 0, $i) + ) + . $crlf + . implode( + $crlf, + array_slice($sql_lines, $j, $sql_count - 1) + ); + unset($sql_lines); + } + } + $schema_create .= $create_query; + } + + // remove a possible "AUTO_INCREMENT = value" clause + // that could be there starting with MySQL 5.0.24 + // in Drizzle it's useless as it contains the value given at table + // creation time + $schema_create = preg_replace( + '/AUTO_INCREMENT\s*=\s*([0-9])+/', + '', + $schema_create + ); + + $schema_create .= $auto_increment; + + PMA_DBI_free_result($result); + return $schema_create . ($add_semicolon ? ';' . $crlf : ''); + } // end of the 'getTableDef()' function + + /** + * Returns $table's comments, relations etc. + * + * @param string $db database name + * @param string $table table name + * @param string $crlf end of line sequence + * @param bool $do_relation whether to include relation comments + * @param bool $do_mime whether to include mime comments + * + * @return string resulting comments + */ + private function _getTableComments( + $db, + $table, + $crlf, + $do_relation = false, + $do_mime = false + ) { + global $cfgRelation, $sql_backquotes; + + $common_functions = PMA_CommonFunctions::getInstance(); + $schema_create = ''; + + // Check if we can use Relations + if ($do_relation && ! empty($cfgRelation['relation'])) { + // Find which tables are related with the current one and write it in + // an array + $res_rel = PMA_getForeigners($db, $table); + + if ($res_rel && count($res_rel) > 0) { + $have_rel = true; + } else { + $have_rel = false; + } + } else { + $have_rel = false; + } // end if + + if ($do_mime && $cfgRelation['mimework']) { + if (! ($mime_map = PMA_getMIME($db, $table, true))) { + unset($mime_map); + } + } + + if (isset($mime_map) && count($mime_map) > 0) { + $schema_create .= $this->_possibleCRLF() + . $this->_exportComment() + . $this->_exportComment( + __('MIME TYPES FOR TABLE'). ' ' + . $common_functions->backquote($table, $sql_backquotes) . ':' + ); + @reset($mime_map); + foreach ($mime_map AS $mime_field => $mime) { + $schema_create .= + $this->_exportComment( + ' ' + . $common_functions->backquote($mime_field, $sql_backquotes) + ) + . $this->_exportComment( + ' ' + . $common_functions->backquote( + $mime['mimetype'], + $sql_backquotes + ) + ); + } + $schema_create .= $this->_exportComment(); + } + + if ($have_rel) { + $schema_create .= $this->_possibleCRLF() + . $this->_exportComment() + . $this->_exportComment( + __('RELATIONS FOR TABLE') . ' ' + . $common_functions->backquote($table, $sql_backquotes) + . ':' + ); + foreach ($res_rel AS $rel_field => $rel) { + $schema_create .= + $this->_exportComment( + ' ' + . $common_functions->backquote($rel_field, $sql_backquotes) + ) + . $this->_exportComment( + ' ' + . $common_functions->backquote( + $rel['foreign_table'], + $sql_backquotes + ) + . ' -> ' + . $common_functions->backquote( + $rel['foreign_field'], + $sql_backquotes + ) + ); + } + $schema_create .= $this->_exportComment(); + } + + return $schema_create; + + } // end of the '_getTableComments()' function + + /** + * Outputs table's structure + * + * @param string $db database name + * @param string $table table name + * @param string $crlf the end of line sequence + * @param string $error_url the url to go back in case of error + * @param string $export_mode 'create_table','triggers','create_view', + * 'stand_in' + * @param string $export_type 'server', 'database', 'table' + * @param bool $relation whether to include relation comments + * @param bool $comments whether to include the pmadb-style column + * comments as comments in the structure; this is + * deprecated but the parameter is left here + * because export.php calls exportStructure() + * also for other export types which use this + * parameter + * @param bool $mime whether to include mime comments + * @param bool $dates whether to include creation/update/check dates + * + * @return bool Whether it succeeded + */ + public function exportStructure( + $db, + $table, + $crlf, + $error_url, + $export_mode, + $export_type, + $relation = false, + $comments = false, + $mime = false, + $dates = false + ) { + + $common_functions = PMA_CommonFunctions::getInstance(); + + $formatted_table_name = (isset($GLOBALS['sql_backquotes'])) + ? $common_functions->backquote($table) : '\'' . $table . '\''; + $dump = $this->_possibleCRLF() + . $this->_exportComment(str_repeat('-', 56)) + . $this->_possibleCRLF() + . $this->_exportComment(); + + switch($export_mode) { + case 'create_table': + $dump .= $this->_exportComment( + __('Table structure for table') . ' '. $formatted_table_name + ); + $dump .= $this->_exportComment(); + $dump .= $this->getTableDef($db, $table, $crlf, $error_url, $dates); + $dump .= $this->_getTableComments($db, $table, $crlf, $relation, $mime); + break; + case 'triggers': + $dump = ''; + $triggers = PMA_DBI_get_triggers($db, $table); + if ($triggers) { + $dump .= $this->_possibleCRLF() + . $this->_exportComment() + . $this->_exportComment( + __('Triggers') . ' ' . $formatted_table_name + ) + . $this->_exportComment(); + $delimiter = '//'; + foreach ($triggers as $trigger) { + $dump .= $trigger['drop'] . ';' . $crlf; + $dump .= 'DELIMITER ' . $delimiter . $crlf; + $dump .= $trigger['create']; + $dump .= 'DELIMITER ;' . $crlf; + } + } + break; + case 'create_view': + $dump .= + $this->_exportComment( + __('Structure for view') + . ' ' + . $formatted_table_name + ) + . $this->_exportComment(); + // delete the stand-in table previously created (if any) + if ($export_type != 'table') { + $dump .= 'DROP TABLE IF EXISTS ' + . $common_functions->backquote($table) . ';' . $crlf; + } + $dump .= $this->getTableDef( + $db, $table, $crlf, $error_url, $dates, true, true + ); + break; + case 'stand_in': + $dump .= + $this->_exportComment( + __('Stand-in structure for view') . ' ' . $formatted_table_name + ) + . $this->_exportComment(); + // export a stand-in definition to resolve view dependencies + $dump .= getTableDefStandIn($db, $table, $crlf); + } // end switch + + // this one is built by getTableDef() to use in table copy/move + // but not in the case of export + unset($GLOBALS['sql_constraints_query']); + + return PMA_exportOutputHandler($dump); + } + + /** + * Outputs the content of a table in SQL format + * + * @param string $db database name + * @param string $table table name + * @param string $crlf the end of line sequence + * @param string $error_url the url to go back in case of error + * @param string $sql_query SQL query for obtaining data + * + * @return bool Whether it succeeded + */ + public function exportData($db, $table, $crlf, $error_url, $sql_query) + { + global $current_row, $sql_backquotes; + + $common_functions = PMA_CommonFunctions::getInstance(); + $formatted_table_name = (isset($GLOBALS['sql_backquotes'])) + ? $common_functions->backquote($table) + : '\'' . $table . '\''; + + // Do not export data for a VIEW + // (For a VIEW, this is called only when exporting a single VIEW) + if (PMA_Table::isView($db, $table)) { + $head = $this->_possibleCRLF() + . $this->_exportComment() + . $this->_exportComment('VIEW ' . ' ' . $formatted_table_name) + . $this->_exportComment(__('Data') . ': ' . __('None')) + . $this->_exportComment() + . $this->_possibleCRLF(); + + if (! PMA_exportOutputHandler($head)) { + return false; + } + return true; + } + + // analyze the query to get the true column names, not the aliases + // (this fixes an undefined index, also if Complete inserts + // are used, we did not get the true column name in case of aliases) + $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($sql_query)); + + $result = PMA_DBI_try_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED); + // a possible error: the table has crashed + $tmp_error = PMA_DBI_getError(); + if ($tmp_error) { + return PMA_exportOutputHandler( + $this->_exportComment( + __('Error reading data:') . ' (' . $tmp_error . ')' + ) + ); + } + + if ($result != false) { + $fields_cnt = PMA_DBI_num_fields($result); + + // Get field information + $fields_meta = PMA_DBI_get_fields_meta($result); + $field_flags = array(); + for ($j = 0; $j < $fields_cnt; $j++) { + $field_flags[$j] = PMA_DBI_field_flags($result, $j); + } + + for ($j = 0; $j < $fields_cnt; $j++) { + if (isset($analyzed_sql[0]['select_expr'][$j]['column'])) { + $field_set[$j] = $common_functions->backquote( + $analyzed_sql[0]['select_expr'][$j]['column'], + $sql_backquotes + ); + } else { + $field_set[$j] = $common_functions->backquote( + $fields_meta[$j]->name, + $sql_backquotes + ); + } + } + + if (isset($GLOBALS['sql_type']) + && $GLOBALS['sql_type'] == 'UPDATE' + ) { + // update + $schema_insert = 'UPDATE '; + if (isset($GLOBALS['sql_ignore'])) { + $schema_insert .= 'IGNORE '; + } + // avoid EOL blank + $schema_insert .= $common_functions->backquote( + $table, + $sql_backquotes + ) . ' SET'; + } else { + // insert or replace + if (isset($GLOBALS['sql_type']) + && $GLOBALS['sql_type'] == 'REPLACE' + ) { + $sql_command = 'REPLACE'; + } else { + $sql_command = 'INSERT'; + } + + // delayed inserts? + if (isset($GLOBALS['sql_delayed'])) { + $insert_delayed = ' DELAYED'; + } else { + $insert_delayed = ''; + } + + // insert ignore? + if (isset($GLOBALS['sql_type']) + && $GLOBALS['sql_type'] == 'INSERT' + && isset($GLOBALS['sql_ignore']) + ) { + $insert_delayed .= ' IGNORE'; + } + //truncate table before insert + if (isset($GLOBALS['sql_truncate']) + && $GLOBALS['sql_truncate'] + && $sql_command == 'INSERT' + ) { + $truncate = 'TRUNCATE TABLE ' + . $common_functions->backquote( + $table, + $sql_backquotes + ) . ";"; + $truncatehead = $this->_possibleCRLF() + . $this->_exportComment() + . $this->_exportComment( + __('Truncate table before insert') . ' ' + . $formatted_table_name + ) + . $this->_exportComment() + . $crlf; + PMA_exportOutputHandler($truncatehead); + PMA_exportOutputHandler($truncate); + } else { + $truncate = ''; + } + // scheme for inserting fields + if ($GLOBALS['sql_insert_syntax'] == 'complete' + || $GLOBALS['sql_insert_syntax'] == 'both' + ) { + $fields = implode(', ', $field_set); + $schema_insert = $sql_command . $insert_delayed .' INTO ' + . $common_functions->backquote($table, $sql_backquotes) + // avoid EOL blank + . ' (' . $fields . ') VALUES'; + } else { + $schema_insert = $sql_command . $insert_delayed .' INTO ' + . $common_functions->backquote($table, $sql_backquotes) + . ' VALUES'; + } + } + + //\x08\\x09, not required + $search = array("\x00", "\x0a", "\x0d", "\x1a"); + $replace = array('\0', '\n', '\r', '\Z'); + $current_row = 0; + $query_size = 0; + if (($GLOBALS['sql_insert_syntax'] == 'extended' + || $GLOBALS['sql_insert_syntax'] == 'both') + && (! isset($GLOBALS['sql_type']) + || $GLOBALS['sql_type'] != 'UPDATE') + ) { + $separator = ','; + $schema_insert .= $crlf; + } else { + $separator = ';'; + } + + while ($row = PMA_DBI_fetch_row($result)) { + if ($current_row == 0) { + $head = $this->_possibleCRLF() + . $this->_exportComment() + . $this->_exportComment( + __('Dumping data for table') . ' ' + . $formatted_table_name + ) + . $this->_exportComment() + . $crlf; + if (! PMA_exportOutputHandler($head)) { + return false; + } + } + $current_row++; + for ($j = 0; $j < $fields_cnt; $j++) { + // NULL + if (! isset($row[$j]) || is_null($row[$j])) { + $values[] = 'NULL'; + } elseif ($fields_meta[$j]->numeric + && $fields_meta[$j]->type != 'timestamp' + && ! $fields_meta[$j]->blob + ) { + // a number + // timestamp is numeric on some MySQL 4.1, BLOBs are + // sometimes numeric + $values[] = $row[$j]; + } elseif (stristr($field_flags[$j], 'BINARY') + && $fields_meta[$j]->blob + && isset($GLOBALS['sql_hex_for_blob']) + ) { + // a true BLOB + // - mysqldump only generates hex data when the --hex-blob + // option is used, for fields having the binary attribute + // no hex is generated + // - a TEXT field returns type blob but a real blob + // returns also the 'binary' flag + + // empty blobs need to be different, but '0' is also empty + // :-( + if (empty($row[$j]) && $row[$j] != '0') { + $values[] = '\'\''; + } else { + $values[] = '0x' . bin2hex($row[$j]); + } + } elseif ($fields_meta[$j]->type == 'bit') { + // detection of 'bit' works only on mysqli extension + $values[] = "b'" . $common_functions->sqlAddSlashes( + $common_functions->printableBitValue( + $row[$j], $fields_meta[$j]->length + ) + ) + . "'"; + } else { + // something else -> treat as a string + $values[] = '\'' + . str_replace( + $search, $replace, + $common_functions->sqlAddSlashes($row[$j]) + ) + . '\''; + } // end if + } // end for + + // should we make update? + if (isset($GLOBALS['sql_type']) + && $GLOBALS['sql_type'] == 'UPDATE' + ) { + + $insert_line = $schema_insert; + for ($i = 0; $i < $fields_cnt; $i++) { + if (0 == $i) { + $insert_line .= ' '; + } + if ($i > 0) { + // avoid EOL blank + $insert_line .= ','; + } + $insert_line .= $field_set[$i] . ' = ' . $values[$i]; + } + + list($tmp_unique_condition, $tmp_clause_is_unique) + = $common_functions->getUniqueCondition( + $result, + $fields_cnt, + $fields_meta, + $row + ); + $insert_line .= ' WHERE ' . $tmp_unique_condition; + unset($tmp_unique_condition, $tmp_clause_is_unique); + + } else { + + // Extended inserts case + if ($GLOBALS['sql_insert_syntax'] == 'extended' + || $GLOBALS['sql_insert_syntax'] == 'both' + ) { + if ($current_row == 1) { + $insert_line = $schema_insert . '(' + . implode(', ', $values) . ')'; + } else { + $insert_line = '(' . implode(', ', $values) . ')'; + $sql_max_size = $GLOBALS['sql_max_query_size']; + if (isset($sql_max_size) + && $sql_max_size > 0 + && $query_size + strlen($insert_line) > $sql_max_size + ) { + if (! PMA_exportOutputHandler(';' . $crlf)) { + return false; + } + $query_size = 0; + $current_row = 1; + $insert_line = $schema_insert . $insert_line; + } + } + $query_size += strlen($insert_line); + // Other inserts case + } else { + $insert_line = $schema_insert + . '(' + . implode(', ', $values) + . ')'; + } + } + unset($values); + + if (! PMA_exportOutputHandler( + ($current_row == 1 ? '' : $separator . $crlf) + . $insert_line + )) { + return false; + } + + } // end while + if ($current_row > 0) { + if (! PMA_exportOutputHandler(';' . $crlf)) { + return false; + } + } + } // end if ($result != false) + PMA_DBI_free_result($result); + + return true; + } // end of the 'exportData()' function +} \ No newline at end of file diff --git a/libraries/plugins/export/ExportTexytext.class.php b/libraries/plugins/export/ExportTexytext.class.php index be87426a02..4907b4e73b 100644 --- a/libraries/plugins/export/ExportTexytext.class.php +++ b/libraries/plugins/export/ExportTexytext.class.php @@ -36,12 +36,12 @@ class ExportTexytext extends ExportPlugin protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/RadioPropertyItem.class.php"; - require_once "$props/options/items/BoolPropertyItem.class.php"; - require_once "$props/options/items/TextPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/RadioPropertyItem.class.php"; + include_once "$props/options/items/BoolPropertyItem.class.php"; + include_once "$props/options/items/TextPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('Texy! text'); @@ -62,11 +62,13 @@ class ExportTexytext extends ExportPlugin // create primary items and add them to the group $leaf = new RadioPropertyItem(); $leaf->setName("structure_or_data"); - $leaf->setValues(array( - 'structure' => __('structure'), - 'data' => __('data'), - 'structure_and_data' => __('structure and data') - )); + $leaf->setValues( + array( + 'structure' => __('structure'), + 'data' => __('data'), + 'structure_and_data' => __('structure and data') + ) + ); $dumpWhat->addProperty($leaf); // add the main group to the root group $exportSpecificOptions->addProperty($dumpWhat); @@ -177,7 +179,6 @@ class ExportTexytext extends ExportPlugin public function exportData($db, $table, $crlf, $error_url, $sql_query) { global $what; - $this->setWhat($what); if (! PMA_exportOutputHandler( '== ' . __('Dumping data for table') . ' ' . $table . "\n\n" @@ -314,7 +315,6 @@ class ExportTexytext extends ExportPlugin $view = false ) { global $cfgRelation; - $this->setCfgRelation($cfgRelation); $text_output = ''; diff --git a/libraries/plugins/export/ExportXml.class.php b/libraries/plugins/export/ExportXml.class.php index 3fb8452afd..7681d3fe2d 100644 --- a/libraries/plugins/export/ExportXml.class.php +++ b/libraries/plugins/export/ExportXml.class.php @@ -65,11 +65,11 @@ class ExportXml extends ExportPlugin protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/HiddenPropertyItem.class.php"; - require_once "$props/options/items/BoolPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/HiddenPropertyItem.class.php"; + include_once "$props/options/items/BoolPropertyItem.class.php"; // create the export plugin property item $exportPluginProperties = new ExportPluginProperties(); @@ -164,9 +164,6 @@ class ExportXml extends ExportPlugin { $this->initSpecificVariables(); global $crlf, $cfg, $db; - $this->setCrlf($crlf); - $this->setCfg($cfg); - $this->setDb($db); $table = $this->_getTable(); $tables = $this->_getTables(); @@ -214,7 +211,8 @@ class ExportXml extends ExportPlugin 'utf8' AS DEFAULT_CHARACTER_SET_NAME, DEFAULT_COLLATION_NAME FROM data_dictionary.SCHEMAS - WHERE SCHEMA_NAME = '" . $common_functions->sqlAddSlashes($db) . "'" + WHERE SCHEMA_NAME = '" + . $common_functions->sqlAddSlashes($db) . "'" ); } else { $result = PMA_DBI_fetch_result( @@ -382,7 +380,7 @@ class ExportXml extends ExportPlugin */ public function exportDBHeader ($db) { - $crlf = $this->getCrlf(); + global $crlf; if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents'] @@ -407,7 +405,7 @@ class ExportXml extends ExportPlugin */ public function exportDBFooter ($db) { - $crlf = $this->getCrlf(); + global $crlf; if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents'] diff --git a/libraries/plugins/export/ExportYaml.class.php b/libraries/plugins/export/ExportYaml.class.php index 9c084e6b92..4b3dd3bc5f 100644 --- a/libraries/plugins/export/ExportYaml.class.php +++ b/libraries/plugins/export/ExportYaml.class.php @@ -36,10 +36,10 @@ class ExportYaml extends ExportPlugin protected function setProperties() { $props = 'libraries/properties/'; - require_once "$props/plugins/ExportPluginProperties.class.php"; - require_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; - require_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; - require_once "$props/options/items/HiddenPropertyItem.class.php"; + include_once "$props/plugins/ExportPluginProperties.class.php"; + include_once "$props/options/groups/OptionsPropertyRootGroup.class.php"; + include_once "$props/options/groups/OptionsPropertyMainGroup.class.php"; + include_once "$props/options/items/HiddenPropertyItem.class.php"; $exportPluginProperties = new ExportPluginProperties(); $exportPluginProperties->setText('YAML'); diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index e1e0975675..1fd2eae399 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -79,7 +79,7 @@ function PMA_getRelationsParam() */ function PMA_getRelationsParamDiagnostic($cfgRelation) { - + $common_functions = PMA_CommonFunctions::getInstance(); $retval = ''; @@ -497,7 +497,7 @@ function PMA__getRelationsParam() */ function PMA_getForeigners($db, $table, $column = '', $source = 'both') { - + $common_functions = PMA_CommonFunctions::getInstance(); $cfgRelation = PMA_getRelationsParam(); $foreign = array(); @@ -518,6 +518,7 @@ function PMA_getForeigners($db, $table, $column = '', $source = 'both') } if (($source == 'both' || $source == 'foreign') && strlen($table)) { + $show_create_table_query = 'SHOW CREATE TABLE ' . $common_functions->backquote($db) . '.' . $common_functions->backquote($table); $show_create_table = PMA_DBI_fetch_value($show_create_table_query, 0, 1); @@ -602,7 +603,7 @@ function PMA_getForeigners($db, $table, $column = '', $source = 'both') */ function PMA_getDisplayField($db, $table) { - + $common_functions = PMA_CommonFunctions::getInstance(); $cfgRelation = PMA_getRelationsParam(); @@ -683,7 +684,7 @@ function PMA_getComments($db, $table = '') */ function PMA_getDbComment($db) { - + $common_functions = PMA_CommonFunctions::getInstance(); $cfgRelation = PMA_getRelationsParam(); $comment = ''; @@ -717,7 +718,7 @@ function PMA_getDbComment($db) */ function PMA_getDbComments() { - + $common_functions = PMA_CommonFunctions::getInstance(); $cfgRelation = PMA_getRelationsParam(); $comments = array(); @@ -753,7 +754,7 @@ function PMA_getDbComments() */ function PMA_setDbComment($db, $comment = '') { - + $common_functions = PMA_CommonFunctions::getInstance(); $cfgRelation = PMA_getRelationsParam(); @@ -803,9 +804,9 @@ function PMA_setDbComment($db, $comment = '') */ function PMA_setHistory($db, $table, $username, $sqlquery) { - + $common_functions = PMA_CommonFunctions::getInstance(); - + if (strlen($sqlquery) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) { return; } @@ -865,7 +866,7 @@ function PMA_setHistory($db, $table, $username, $sqlquery) */ function PMA_getHistory($username) { - + $common_functions = PMA_CommonFunctions::getInstance(); $cfgRelation = PMA_getRelationsParam(); @@ -898,7 +899,7 @@ function PMA_getHistory($username) */ function PMA_purgeHistory($username) { - + $common_functions = PMA_CommonFunctions::getInstance(); $cfgRelation = PMA_getRelationsParam(); if (! $GLOBALS['cfg']['QueryHistoryDB'] || ! $cfgRelation['historywork']) { @@ -1086,9 +1087,9 @@ function PMA_foreignDropdown($disp_row, $foreign_field, $foreign_display, $data, function PMA_getForeignData($foreigners, $field, $override_total, $foreign_filter, $foreign_limit) { - + $common_functions = PMA_CommonFunctions::getInstance(); - + // we always show the foreign field in the drop-down; if a display // field is defined, we show it besides the foreign field $foreign_link = false; @@ -1161,54 +1162,66 @@ function PMA_getForeignData($foreigners, $field, $override_total, $foreign_filte /** * Finds all related tables * - * @param string $from whether to go from master to foreign or vice versa - * - * @return boolean always true - * - * @global array $tab_left the list of tables that we still couldn't connect - * @global array $tab_know the list of allready connected tables - * @global string $fromclause + * @param array $all_tables All the involved tables + * @param string $master The master table to form the LEFT JOIN clause * + * @return string LEFT JOIN * @access private */ -function PMA_getRelatives($from) +function PMA_getRelatives($all_tables, $master) { - global $tab_left, $tab_know, $fromclause; - + $fromclause = ''; + $emerg = ''; $common_functions = PMA_CommonFunctions::getInstance(); - - if ($from == 'master') { - $to = 'foreign'; - } else { - $to = 'master'; - } - $in_know = '(\'' . implode('\', \'', $tab_know) . '\')'; - $in_left = '(\'' . implode('\', \'', $tab_left) . '\')'; - - $rel_query = 'SELECT *' - . ' FROM ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) - . '.' . $common_functions->backquote($GLOBALS['cfgRelation']['relation']) - . ' WHERE ' . $from . '_db = \'' . $common_functions->sqlAddSlashes($GLOBALS['db']) . '\'' - . ' AND ' . $to . '_db = \'' . $common_functions->sqlAddSlashes($GLOBALS['db']) . '\'' - . ' AND ' . $from . '_table IN ' . $in_know - . ' AND ' . $to . '_table IN ' . $in_left; - $relations = @PMA_DBI_query($rel_query, $GLOBALS['controllink']); - while ($row = PMA_DBI_fetch_assoc($relations)) { - $found_table = $row[$to . '_table']; - if (isset($tab_left[$found_table])) { - $fromclause - .= "\n" . ' LEFT JOIN ' - . $common_functions->backquote($GLOBALS['db']) . '.' . $common_functions->backquote($row[$to . '_table']) . ' ON ' - . $common_functions->backquote($row[$from . '_table']) . '.' - . $common_functions->backquote($row[$from . '_field']) . ' = ' - . $common_functions->backquote($row[$to . '_table']) . '.' - . $common_functions->backquote($row[$to . '_field']) . ' '; - $tab_know[$found_table] = $found_table; - unset($tab_left[$found_table]); + // The list of tables that we still couldn't connect + $remaining_tables = $all_tables; + unset($remaining_tables[$master]); + // The list of allready connected tables + $known_tables[$master] = $master; + $run = 0; + while (count($remaining_tables) > 0) { + // Whether to go from master to foreign or vice versa + if ($run % 2 == 0) { + $from = 'master'; + $to = 'foreign'; + } else { + $from = 'foreign'; + $to = 'master'; + } + $in_know = '(\'' . implode('\', \'', $known_tables) . '\')'; + $in_left = '(\'' . implode('\', \'', $remaining_tables) . '\')'; + $rel_query = 'SELECT *' + . ' FROM ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) + . '.' . $common_functions->backquote($GLOBALS['cfgRelation']['relation']) + . ' WHERE ' . $from . '_db = \'' . $common_functions->sqlAddSlashes($GLOBALS['db']) . '\'' + . ' AND ' . $to . '_db = \'' . $common_functions->sqlAddSlashes($GLOBALS['db']) . '\'' + . ' AND ' . $from . '_table IN ' . $in_know + . ' AND ' . $to . '_table IN ' . $in_left; + $relations = @PMA_DBI_query($rel_query, $GLOBALS['controllink']); + while ($row = PMA_DBI_fetch_assoc($relations)) { + $found_table = $row[$to . '_table']; + if (isset($remaining_tables[$found_table])) { + $fromclause + .= "\n" . ' LEFT JOIN ' + . $common_functions->backquote($GLOBALS['db']) . '.' . $common_functions->backquote($row[$to . '_table']) . ' ON ' + . $common_functions->backquote($row[$from . '_table']) . '.' + . $common_functions->backquote($row[$from . '_field']) . ' = ' + . $common_functions->backquote($row[$to . '_table']) . '.' + . $common_functions->backquote($row[$to . '_field']) . ' '; + $known_tables[$found_table] = $found_table; + unset($remaining_tables[$found_table]); + } + } // end while + $run++; + if ($run > 5) { + foreach ($remaining_tables as $table) { + $emerg .= ', ' . $common_functions->backquote($table); + unset($remaining_tables[$table]); + } } } // end while - - return true; + $fromclause = $emerg . $fromclause; + return $fromclause; } // end of the "PMA_getRelatives()" function /** @@ -1225,7 +1238,7 @@ function PMA_getRelatives($from) */ function PMA_REL_renameField($db, $table, $field, $new_name) { - + $common_functions = PMA_CommonFunctions::getInstance(); $cfgRelation = PMA_getRelationsParam(); @@ -1281,9 +1294,9 @@ function PMA_REL_renameSingleTable($table, $source_table, $target_table, $db_field, $table_field ) { - + $common_functions = PMA_CommonFunctions::getInstance(); - + $query = 'UPDATE ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' . $common_functions->backquote($GLOBALS['cfgRelation'][$table]) @@ -1386,9 +1399,9 @@ function PMA_REL_renameTable($source_db, $target_db, $source_table, $target_tabl */ function PMA_REL_createPage($newpage, $cfgRelation, $db) { - + $common_functions = PMA_CommonFunctions::getInstance(); - + if (! isset($newpage) || $newpage == '') { $newpage = __('no description'); } @@ -1400,7 +1413,7 @@ function PMA_REL_createPage($newpage, $cfgRelation, $db) . $common_functions->sqlAddSlashes($db) . '\', \'' . $common_functions->sqlAddSlashes($newpage) . '\')'; PMA_queryAsControlUser($ins_query, false); - + return PMA_DBI_insert_id( isset($GLOBALS['controllink']) ? $GLOBALS['controllink'] : '' ); diff --git a/libraries/rte/rte_routines.lib.php b/libraries/rte/rte_routines.lib.php index 89d0bddb84..8c13151c59 100644 --- a/libraries/rte/rte_routines.lib.php +++ b/libraries/rte/rte_routines.lib.php @@ -1267,22 +1267,7 @@ function PMA_RTN_handleExecute() // Generate output if ($outcome) { - $message = __('Your SQL query has been executed successfully'); - if ($routine['item_type'] == 'PROCEDURE') { - $message .= '
'; - - // TODO : message need to be modified according to the - // output from the routine - $message .= sprintf( - _ngettext( - '%d row affected by the last statement inside the procedure', - '%d rows affected by the last statement inside the procedure', - $affected - ), - $affected - ); - } - $message = PMA_message::success($message); + // Pass the SQL queries through the "pretty printer" $output = ''; $output .= PMA_SQP_formatHtml(PMA_SQP_parse(implode($queries))); @@ -1331,6 +1316,7 @@ function PMA_RTN_handleExecute() $output .= ""; $num_of_rusults_set_to_display++; + $affected = $num_rows; } @@ -1346,6 +1332,23 @@ function PMA_RTN_handleExecute() $output .= ""; + $message = __('Your SQL query has been executed successfully'); + if ($routine['item_type'] == 'PROCEDURE') { + $message .= '
'; + + // TODO : message need to be modified according to the + // output from the routine + $message .= sprintf( + _ngettext( + '%d row affected by the last statement inside the procedure', + '%d rows affected by the last statement inside the procedure', + $affected + ), + $affected + ); + } + $message = PMA_message::success($message); + if ($num_of_rusults_set_to_display == 0) { $notice = __('MySQL returned an empty result set (i.e. zero rows).'); $output .= PMA_message::notice($notice)->getDisplay(); diff --git a/pmd_pdf.php b/pmd_pdf.php index d5a1055261..69260da7cd 100644 --- a/pmd_pdf.php +++ b/pmd_pdf.php @@ -40,8 +40,10 @@ if (isset($mode)) { die(""); } - $pmd_table = $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' . $common_functions->backquote($GLOBALS['cfgRelation']['designer_coords']); - $pma_table = $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' . $common_functions->backquote($cfgRelation['table_coords']); + $pmd_table = $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' + . $common_functions->backquote($GLOBALS['cfgRelation']['designer_coords']); + $pma_table = $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' + . $common_functions->backquote($cfgRelation['table_coords']); $scale_q = $common_functions->sqlAddSlashes($scale); if ('create_export' == $mode) { @@ -57,7 +59,12 @@ if (isset($mode)) { $pdf_page_number_q = $common_functions->sqlAddSlashes($pdf_page_number); if ('export' == $mode) { - $sql = "REPLACE INTO " . $pma_table . " (db_name, table_name, pdf_page_number, x, y) SELECT db_name, table_name, " . $pdf_page_number_q . ", ROUND(x/" . $scale_q . ") , ROUND(y/" . $scale_q . ") y FROM " . $pmd_table . " WHERE db_name = '" . $common_functions->sqlAddSlashes($db) . "'"; + $sql = "REPLACE INTO " . $pma_table + . " (db_name, table_name, pdf_page_number, x, y)" + . " SELECT db_name, table_name, " . $pdf_page_number_q . "," + . " ROUND(x/" . $scale_q . ") , ROUND(y/" . $scale_q . ") y" + . " FROM " . $pmd_table + . " WHERE db_name = '" . $common_functions->sqlAddSlashes($db) . "'"; PMA_queryAsControlUser($sql, true, PMA_DBI_QUERY_STORE); } @@ -72,7 +79,7 @@ if (isset($mode)) { AND ' . $pmd_table . '.`table_name` = ' . $pma_table . '.`table_name` AND - ' . $pmd_table . '.`db_name`=\''. $common_functions->sqlAddSlashes($db) .'\' + ' . $pmd_table . '.`db_name`=\''. $common_functions->sqlAddSlashes($db) . '\' AND pdf_page_number = ' . $pdf_page_number_q . ';', true, PMA_DBI_QUERY_STORE ); diff --git a/pmd_relation_new.php b/pmd_relation_new.php index bb8cb8b1cd..d78a8eb77e 100644 --- a/pmd_relation_new.php +++ b/pmd_relation_new.php @@ -35,14 +35,14 @@ if ($common_functions->isForeignKeySupported($type_T1) ) { PMD_return_new(0, __('Error: relation already exists.')); } -// note: in InnoDB, the index does not requires to be on a PRIMARY -// or UNIQUE key -// improve: check all other requirements for InnoDB relations + // note: in InnoDB, the index does not requires to be on a PRIMARY + // or UNIQUE key + // improve: check all other requirements for InnoDB relations $result = PMA_DBI_query( 'SHOW INDEX FROM ' . $common_functions->backquote($db) . '.' . $common_functions->backquote($T1) . ';' ); - $index_array1 = array(); // will be use to emphasis prim. keys in the table view + $index_array1 = array(); // will be use to emphasis prim. keys in the table view while ($row = PMA_DBI_fetch_assoc($result)) { $index_array1[$row['Column_name']] = 1; } @@ -52,7 +52,7 @@ if ($common_functions->isForeignKeySupported($type_T1) 'SHOW INDEX FROM ' . $common_functions->backquote($db) . '.' . $common_functions->backquote($T2) . ';' ); - $index_array2 = array(); // will be used to emphasis prim. keys in the table view + $index_array2 = array(); // will be used to emphasis prim. keys in the table view while ($row = PMA_DBI_fetch_assoc($result)) { $index_array2[$row['Column_name']] = 1; } @@ -76,11 +76,9 @@ if ($common_functions->isForeignKeySupported($type_T1) } $upd_query .= ';'; PMA_DBI_try_query($upd_query) or PMD_return_new(0, __('Error: Relation not added.')); - PMD_return_new(1, __('FOREIGN KEY relation added')); + PMD_return_new(1, __('FOREIGN KEY relation added')); } - -// internal (pmadb) relation -} else { +} else { // internal (pmadb) relation if ($GLOBALS['cfgRelation']['relwork'] == false) { PMD_return_new(0, _('General relation features') . ':' . _('Disabled')); } else { @@ -102,7 +100,7 @@ if ($common_functions->isForeignKeySupported($type_T1) } else { PMD_return_new(0, __('Error: Relation not added.')); } - } + } } function PMD_return_new($b,$ret) diff --git a/pmd_save_pos.php b/pmd_save_pos.php index a0cfc944ea..a009ef146a 100644 --- a/pmd_save_pos.php +++ b/pmd_save_pos.php @@ -38,17 +38,20 @@ foreach ($post_params as $one_post_param) { } foreach ($t_x as $key => $value) { - $KEY = empty($IS_AJAX) ? urldecode($key) : $key; // table name decode (post PDF exp/imp) + // table name decode (post PDF exp/imp) + $KEY = empty($IS_AJAX) ? urldecode($key) : $key; list($DB,$TAB) = explode(".", $KEY); PMA_queryAsControlUser( - 'DELETE FROM ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' . $common_functions->backquote($GLOBALS['cfgRelation']['designer_coords']) + 'DELETE FROM ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) + . '.' . $common_functions->backquote($GLOBALS['cfgRelation']['designer_coords']) . ' WHERE `db_name` = \'' . $common_functions->sqlAddSlashes($DB) . '\'' . ' AND `table_name` = \'' . $common_functions->sqlAddSlashes($TAB) . '\'', true, PMA_DBI_QUERY_STORE ); PMA_queryAsControlUser( - 'INSERT INTO ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' . $common_functions->backquote($GLOBALS['cfgRelation']['designer_coords']) + 'INSERT INTO ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) + . '.' . $common_functions->backquote($GLOBALS['cfgRelation']['designer_coords']) . ' (db_name, table_name, x, y, v, h)' . ' VALUES (' . '\'' . $common_functions->sqlAddSlashes($DB) . '\', ' diff --git a/po/af.po b/po/af.po index 2dbd27ebb5..7f0e55f7fa 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: afrikaans \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Wys alles" @@ -37,16 +38,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Soek" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -56,24 +57,26 @@ msgstr "Soek" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Gaan" @@ -106,7 +109,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databasis %s is verwyder." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 #, fuzzy msgid "Database comment: " msgstr "Tabel kommentaar" @@ -117,17 +120,17 @@ msgstr "Tabel kommentaar" msgid "Table comments" msgstr "Tabel kommentaar" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "Kolom name" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tipe" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "Null" msgid "Default" msgstr "Verstekwaarde (default)" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "Skakels na" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "Kommentaar" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nee" @@ -241,19 +247,22 @@ msgstr "Nee" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -261,8 +270,8 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Sien die storting (skema) van die databasis" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Geen tabelle in databasis gevind nie." @@ -279,78 +288,78 @@ msgstr "Selekteer Niks" msgid "The database name is empty!" msgstr "Die tabel naam is leeg!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Tabel %s is vernoem na %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Tabel %s is gekopieer na %s." -#: db_operations.php:466 +#: db_operations.php:465 #, fuzzy msgid "Rename database to" msgstr "Hernoem tabel na" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy msgid "Remove database" msgstr "Hernoem tabel na" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Databasis %s is verwyder." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "Geen databasisse" -#: db_operations.php:539 +#: db_operations.php:538 #, fuzzy msgid "Copy database to" msgstr "Geen databasisse" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Slegs struktuur" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktuur en data" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Slegs Data" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -360,7 +369,7 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -372,7 +381,7 @@ msgstr "" "Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " "Om uit te vind hoekom kliek %shier%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" @@ -384,16 +393,18 @@ msgstr "Vertoon PDF skema" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Rye" @@ -403,13 +414,13 @@ msgid "Size" msgstr "Grootte" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "in gebruik" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 #, fuzzy @@ -418,7 +429,7 @@ msgstr "Skep" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -426,7 +437,7 @@ msgstr "" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -440,96 +451,15 @@ msgid_plural "%s tables" msgstr[0] "%s tabel(le)" msgstr[1] "%s tabel(le)" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Jy moet ten minste een Kolom kies om te vertoon" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Dalend" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Dalend" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sorteer" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Wys" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriteria" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Voeg By/Verwyder Kriteria Ry" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Voeg By/Verwyder Veld Kolomme" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Verander Navraag" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Gebruik Tabelle" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Of" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "En" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Verander" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-navraag op databasis %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Doen Navraag" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -572,7 +502,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -600,20 +530,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Met gekose:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Kies Alles" @@ -621,31 +552,32 @@ msgstr "Kies Alles" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Maak Leeg" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -693,17 +625,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Databasis" @@ -722,18 +655,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Aksie" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Wys" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -779,32 +720,32 @@ msgstr "Databasis" msgid "Bad type!" msgstr "Export" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 #, fuzzy msgid "Bad parameters!" msgstr "Hernoem tabel na" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -829,7 +770,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -909,27 +850,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Die boekmerk is verwyder." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -937,46 +878,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -991,7 +932,7 @@ msgstr "Terug" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin verkies 'n frames-kapabele blaaier." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." @@ -1001,7 +942,7 @@ msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." msgid "Do you really want to execute \"%s\"?" msgstr "Wil jy regtig " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1064,16 +1005,20 @@ msgstr "Die gasheer naam is leeg!" msgid "The user name is empty!" msgstr "Die gebruiker naam ontbreek!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Die wagwoord is leeg!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1096,9 +1041,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1360,12 +1305,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Geen" @@ -1549,10 +1495,10 @@ msgid "Explain output" msgstr "Verduidelik SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "" @@ -1886,7 +1832,7 @@ msgstr "SQL-stelling" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Verander" @@ -1895,8 +1841,8 @@ msgstr "Verander" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1976,7 +1922,7 @@ msgstr "Tabel kommentaar" msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2518,14 +2464,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Fout" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-stelling" @@ -2536,7 +2482,7 @@ msgstr "SQL-stelling" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2565,6 +2511,10 @@ msgstr "Sonder PHP Kode" msgid "Create PHP Code" msgstr "Skep PHP Kode" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Doen Navraag" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2589,7 +2539,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2616,7 +2566,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2625,7 +2575,7 @@ msgstr "Begin" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2635,7 +2585,7 @@ msgstr "Vorige" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2645,7 +2595,7 @@ msgstr "Volgende" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2668,16 +2618,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktuur" @@ -2685,21 +2636,20 @@ msgstr "Struktuur" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Voeg by" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Beloer Data" @@ -2720,21 +2670,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "" @@ -2751,6 +2701,78 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Dalend" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Dalend" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sorteer" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriteria" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Voeg By/Verwyder Kriteria Ry" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Voeg By/Verwyder Veld Kolomme" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Verander Navraag" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Gebruik Tabelle" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Of" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "En" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Verander" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-navraag op databasis %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "ten minste een van die woorde" @@ -2794,8 +2816,8 @@ msgstr[1] "%s resultate binne tabel %s" msgid "Delete the matches for the %s table?" msgstr "Stort data vir tabel" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2836,72 +2858,72 @@ msgstr "Binne tabel(le):" msgid "Inside column:" msgstr "Binne tabel(le):" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Sa" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "Hoeveelheid rye per bladsy" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Ma" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horisontale" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikale" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2915,113 +2937,113 @@ msgstr "" msgid "Options" msgstr "Operasies" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Gedeeltelike Tekste" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Volle Tekste" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Relasie uitsig" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy msgid "Relational display column" msgstr "Relasie uitsig" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy msgid "Hide browser transformation" msgstr "Wys PHP informasie" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Die ry is verwyder" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Vermoor" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "in navraag" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Vertoon rye" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "totaal" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "Kolom Kommentaar word vertoon" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Skakel nie gevind nie" @@ -3142,8 +3164,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "databasisse" @@ -3159,11 +3181,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3181,9 +3203,9 @@ msgstr "" msgid "Query" msgstr "Navraag dmv Voorbeeld" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Regte" @@ -3192,7 +3214,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3292,51 +3314,51 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Soek in databasis" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Soek in databasis" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %s is vernoem na %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3345,7 +3367,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksie" @@ -3358,7 +3380,7 @@ msgstr "Operasies" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3403,7 +3425,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3761,7 +3783,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 #, fuzzy msgid "Tables" msgstr "Tabel" @@ -3773,9 +3795,10 @@ msgstr "Tabel" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Data" @@ -3899,33 +3922,33 @@ msgid "Disabled" msgstr "Onbeskikbaar" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Struktuur" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4340,13 +4363,13 @@ msgstr "" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "" @@ -4373,7 +4396,6 @@ msgstr "Velde ontsnap (escaped) deur" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4415,25 +4437,24 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s tabel(le)" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4442,14 +4463,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "" @@ -4491,7 +4512,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4505,7 +4526,7 @@ msgid "Use delayed inserts" msgstr "Uitgebreide toevoegings" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4524,7 +4545,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4535,7 +4556,7 @@ msgid "Export type" msgstr "Export" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4588,7 +4609,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV data" @@ -4648,7 +4668,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 #, fuzzy msgid "LaTeX" msgstr "Etiket" @@ -4881,7 +4900,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5980,9 +5998,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Wagwoord" @@ -6149,7 +6169,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6172,19 +6191,16 @@ msgstr "Databasis statistieke" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV vir M$ Excel data" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6240,25 +6256,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6269,13 +6285,15 @@ msgid "Change password" msgstr "Verander wagwoord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Geen Wagwoord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Tik weer" @@ -6298,8 +6316,9 @@ msgstr "Skep 'n nuwe databasis" msgid "Create" msgstr "Skep" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Geen Regte" @@ -6310,12 +6329,12 @@ msgid "Create table" msgstr "Skep 'n nuwe bladsy" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Naam" @@ -6474,7 +6493,7 @@ msgid "View output as text" msgstr "Stoor as leer (file)" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6932,51 +6951,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Slegs struktuur" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7049,11 +7068,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7305,7 +7324,7 @@ msgstr "phpMyAdmin dokumentasie" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7412,104 +7431,104 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Lyne beeindig deur" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Velde omring met" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Velde ontsnap (escaped) deur" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Lyne beeindig deur" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Databasis statistieke" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Stort data vir tabel" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy msgid "Definition" msgstr "geen Beskrywing" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tabel struktuur vir tabel" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Slegs struktuur" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7527,252 +7546,242 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "Tabel struktuur vir tabel" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy msgid "Table caption (continued)" msgstr "Tabel kommentaar" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Kolom Kommentaar word vertoon" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Display Features" msgid "Display MIME types" msgstr "Vertoon Funksies" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Gasheer (host)" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Generasie Tyd" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Bediener weergawe" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP Version" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "Export" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "Export" msgid "Export table headers" msgstr "Export" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy msgid "Report title:" msgstr "Geen tabelle" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Stellings" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Stellings" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +msgid "Data creation options" +msgstr "Databasis statistieke" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "Funksie" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7841,6 +7850,10 @@ msgstr "Kolom name" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7894,6 +7907,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8079,11 +8096,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "geen Beskrywing" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Kies Niks" @@ -8103,9 +8121,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Gebruiker naam" @@ -8141,34 +8160,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Enige gebruiker" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Enige gasheer (host)" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8182,7 +8210,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8220,8 +8248,8 @@ msgid "Edit event" msgstr "Voeg 'n nuwe gebruiker by" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -8306,7 +8334,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8443,25 +8472,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8608,29 +8637,29 @@ msgstr "Geen tabelle in databasis gevind nie." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Die \"%s\" databasis bestaan nie!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Stel asb. die koordinate op van tabel %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8775,6 +8804,446 @@ msgstr "" msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +#, fuzzy +msgid "No privileges." +msgstr "Geen Regte" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Geen" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limits the number of new connections the user may open per hour." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Nota: MySQL regte name word in Engels vertoon" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +#, fuzzy +msgid "Global privileges" +msgstr "Geen Regte" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +#, fuzzy +msgid "Login Information" +msgstr "Wys PHP informasie" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Moenie die wagwoord verander nie" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Jy het die regte herroep vir %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Gebruiker" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +msgid "User has been added." +msgstr "Veld %s is verwyder" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Enige" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Geen gebruiker(s) gevind nie." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Verander Regte" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Herroep" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Export" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Jy het die regte opgedateer vir %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Regte" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Regte" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Jy het 'n nuwe gebruiker bygevoeg." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -8825,11 +9294,11 @@ msgstr "" msgid "Columns" msgstr "Kolom name" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -9127,12 +9596,6 @@ msgstr "Bediener weergawe" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Gebruiker" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9669,436 +10132,20 @@ msgstr "" msgid "disabled" msgstr "Onbeskikbaar" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -#, fuzzy -msgid "No privileges." -msgstr "Geen Regte" - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Geen" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Nota: MySQL regte name word in Engels vertoon" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -#, fuzzy -msgid "Global privileges" -msgstr "Geen Regte" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -#, fuzzy -msgid "Login Information" -msgstr "Wys PHP informasie" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Moenie die wagwoord verander nie" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Geen gebruiker(s) gevind nie." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Jy het 'n nuwe gebruiker bygevoeg." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Jy het die regte opgedateer vir %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Jy het die regte herroep vir %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Verander Regte" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Herroep" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Export" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Enige" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Regte" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Regte" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -#, fuzzy -msgid "User has been added." -msgstr "Veld %s is verwyder" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11689,41 +11736,41 @@ msgstr "" msgid "Wrong data" msgstr "Geen databasisse" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Wil jy regtig " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL resultaat" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Voortgebring deur" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etiket" diff --git a/po/ar.po b/po/ar.po index f46200667e..ac41b85df3 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2011-09-24 21:48+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "عرض الكل" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "بحث" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "بحث" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "تنفيذ" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "تم إنشاء قاعدة البيانات %1$s." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " @@ -120,17 +123,17 @@ msgstr "ملاحظة قاعدة البيانات: " msgid "Table comments" msgstr "تعليقات الجدول" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "عمود" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "نوع" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "خالي" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "خالي" msgid "Default" msgstr "إفتراضي" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "مرتبط بـ" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "تعليقات" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "لا" @@ -242,19 +248,22 @@ msgstr "لا" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "نعم" @@ -262,8 +271,8 @@ msgstr "نعم" msgid "View dump (schema) of database" msgstr "عرض بنية قاعدة البيانات" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "لا توجد جداول في قاعدة البيانات هذه!." @@ -279,76 +288,76 @@ msgstr "إلغاء تحديد الكل" msgid "The database name is empty!" msgstr "إسم قاعدة البيانات خالي!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "تم إعادة تسمية قاعدة البيانات %s إلى %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "تم نسخ قاعدة البيانات %s إلى %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "حذف قاعدة البيانات" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "تم حذف قاعدة البيانات %s ." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "حذف قاعدة البيانات" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "نسخ قاعدة البيانات إلى" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "البنية فقط" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "البنية والبيانات" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "بيانات فقط" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "إنشاء قاعدة البيانات قبل عملية النسخ" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "أضف %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "أضف قيود" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "التبديل إلى قاعدة البيانات المنسوخة" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -358,7 +367,7 @@ msgstr "التبديل إلى قاعدة البيانات المنسوخة" msgid "Collation" msgstr "Collation" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -367,7 +376,7 @@ msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" "%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "بناء الارتباطات" @@ -377,16 +386,18 @@ msgstr "بناء الارتباطات" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "جدول" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "صفوف" @@ -396,13 +407,13 @@ msgid "Size" msgstr "حجم" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "قيد الإستعمال" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -410,7 +421,7 @@ msgstr "الإنشاء" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -418,7 +429,7 @@ msgstr "التحديث الأخير" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -435,92 +446,15 @@ msgstr[3] "%s جدول (جداول)" msgstr[4] "%s جدول (جداول)" msgstr[5] "%s جدول (جداول)" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "تصاعديا" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "تنازليا" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "ترتيب" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "عرض" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "المعايير" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "إضافه/حذف معايير الصفوف" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "إضافه/حذف عمود" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "تجديد الإستعلام" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "إستخدم الجداول" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "أو" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "و" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "إدخال" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "حذف" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "تعديل" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "التحويل إلى %sالباني المرئي%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "إستعلام SQL في قاعدة البيانات %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "إرسال الإستعلام" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -561,7 +495,7 @@ msgstr "التتبع نشط." msgid "Tracking is not active." msgstr "التتبع غير نشط." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -589,20 +523,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s هو محرك التخزين الإفتراضي لخادم MySQL" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "مع المحدد:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "تحديد الكل" @@ -610,31 +545,32 @@ msgstr "تحديد الكل" msgid "Check tables having overhead" msgstr "تحقق من الجداول التي تحمل عبء زائد" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "تصدير" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "إفراغ" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -678,17 +614,18 @@ msgstr "الجداول المتعقبة" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "قاعدة البيانات" @@ -706,18 +643,26 @@ msgstr "محدث" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "الحالة" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "العملية" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "عرض" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "حذف بيانات التتبع لهذا الجدول" @@ -758,31 +703,31 @@ msgstr "سجل قاعدة البيانات" msgid "Bad type!" msgstr "نوع غير صالح!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "نوع التصدير المحدد سيحفظ في الملف!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "مدخلات غير صالحة!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "لا توجد مساحة كافية لحفظ الملف %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "الملف %s موجود على الخادم بالفعل , غير الاسم أو حدد خيار الكتابة عليه." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "خادم الويب ليس لديه صلاحية لحفظ الملف %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "تم حفظ الـDump إلى الملف %s." @@ -805,7 +750,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "هندسة" @@ -880,7 +825,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -889,20 +834,20 @@ msgstr "" "يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل " "المشكلة." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "عرض العلامة المرجعية" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "لقد حذفت العلامة المرجعية." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "لا يمكن قراءة الملف" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -910,7 +855,7 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "انت تحاول رفع ملف بصيغة ضغط غير معروفة (%s)." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -919,26 +864,26 @@ msgstr "" "لايوجد أي بيانات لإستيرادها , إما انه لم يتم إرسال إسم الملف , أو أن حجم " "الملف أكبر من الحجم المحدد في إعدادات PHP" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "لاتستطيع تغيير ترميز الملفات بدون مكتبة الدوال الخاصة بذلك" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "لايمكن تحميل الإضافات المستوردة ,, فضلاً تحقق من عملية التنصيب ." -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "تم إنشاء العلامة المرجعية %s" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "الإستيراد إنتهى بنجاح , %d إستعلام تم تنفيذه." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -946,7 +891,7 @@ msgstr "" "إنتهى وقت التنفيذ , إذا كنت تريد إنهاء الإستيراد, أعد إرسال نفس الملف وسوف " "يتم إستكمال الإستيراد" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -954,8 +899,8 @@ msgstr "" "لم يتم تحليل البيانات في العملية الأخيرة ,, هذا يعني ان phpMyAdmin لاتستطيع " "إنهاء الإستيراد ,, يجب زيادة المدة المحددة لتنفيذ php" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -970,7 +915,7 @@ msgstr "رجوع" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin أكثر تفهما مع مستعرض الإطارات." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "أمر \"حذف قاعدة البيانات\" معطل." @@ -980,7 +925,7 @@ msgstr "أمر \"حذف قاعدة البيانات\" معطل." msgid "Do you really want to execute \"%s\"?" msgstr "هل تريد حقا" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "أنت على وشك إزالة كامل قاعدة البيانات !" @@ -1043,16 +988,20 @@ msgstr "إسم المستضيف فارغ!" msgid "The user name is empty!" msgstr "إسم المستخدم فارغ!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "كلمة المرور فارغة !" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "كلمتا المرور غير متشابهتان !" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "إضافة مستخدم" @@ -1072,9 +1021,9 @@ msgstr "أغلاق" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1328,12 +1277,13 @@ msgstr "إضافة رسم بياني " msgid "Please add at least one variable to the series" msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "لا شيء" @@ -1516,10 +1466,10 @@ msgid "Explain output" msgstr "شرح SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "وقت" @@ -1835,7 +1785,7 @@ msgstr "إظهار صندوق الإستعلام" msgid "No rows selected" msgstr "لايوجد صفوف مختارة" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "تغيير" @@ -1844,8 +1794,8 @@ msgstr "تغيير" msgid "Query execution time" msgstr "وقت التنفيذ الأقصى" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1922,7 +1872,7 @@ msgstr "جدول المحتويات" msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "نسخ" @@ -2406,14 +2356,14 @@ msgid "en" msgstr "إنجليزي" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "خطأ" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "استعلام SQL" @@ -2424,7 +2374,7 @@ msgstr "استعلام SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2453,6 +2403,10 @@ msgstr "بدون كود PHP" msgid "Create PHP Code" msgstr "أنشئ كود PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "إرسال الإستعلام" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2477,7 +2431,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "مضمن" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "جانبي" @@ -2504,14 +2458,14 @@ msgstr "مدخلات مفقودة:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "بداية" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2519,7 +2473,7 @@ msgstr "سابق" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2527,7 +2481,7 @@ msgstr "التالي" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "نهاية" @@ -2548,16 +2502,17 @@ msgstr "إضغط للإختيار" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "بناء" @@ -2565,21 +2520,20 @@ msgstr "بناء" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "إدخال" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "استعراض" @@ -2600,21 +2554,21 @@ msgstr "تصفح كمبيوترك." msgid "Select from the web server upload directory %s:" msgstr "إختر مجلد الرفع من الخادم %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "لايوجد أي ملفات لرفعها" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "تنفيذ" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "طباعة" @@ -2631,6 +2585,74 @@ msgstr "صلاحيات خاطئة على ملف الإعدادات , لاينب msgid "Font size" msgstr "حجم الخط" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "تصاعديا" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "تنازليا" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "ترتيب" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "المعايير" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "إضافه/حذف معايير الصفوف" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "إضافه/حذف عمود" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "تجديد الإستعلام" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "إستخدم الجداول" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "أو" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "و" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "إدخال" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "حذف" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "تعديل" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "إستعلام SQL في قاعدة البيانات %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "على الأقل أحد الكلمات" @@ -2681,8 +2703,8 @@ msgstr[5] "%s مطابقة في الجدول %s" msgid "Delete the matches for the %s table?" msgstr "حذف التشابهات لجدول %s ؟" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2717,73 +2739,73 @@ msgstr "داخل الجداول:" msgid "Inside column:" msgstr "داخل العمود:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "إضافه/حذف عمود حقل" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "ابدأ" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of tables" msgid "Number of rows" msgstr "عدد الجداول" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "More" msgid "Mode" msgstr "أكثر" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "أفقي" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr ")عناوين ملتفة( أفقيا" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "عمودي" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute" msgid "Headers every %s rows" msgstr "تنفيذ" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "رتب حسب المفتاح" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2796,115 +2818,115 @@ msgstr "رتب حسب المفتاح" msgid "Options" msgstr "خيارات" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "نصوص جزئية" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "نصوص كاملة" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "بناء الارتباطات" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "عرض البيانات الثنائية بالنظام الست عشري" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "تحويل المتصفح" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "لقد تم حذف الصف" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "إبطال" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "في الاستعلام" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "مشاهدة السجلات " -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "المجموع" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "عرض الطباعة (مع النصوص الكاملة)." -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "إظهار بناء ملف PDF" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "تكوين" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" @@ -3026,8 +3048,8 @@ msgid "" msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "قاعدة بيانات" @@ -3043,11 +3065,11 @@ msgid "Tracking" msgstr "تتبع" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3065,9 +3087,9 @@ msgstr "قاعدة البيانات فارغة!" msgid "Query" msgstr "استعلام بواسطة مثال" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "الإمتيازات" @@ -3076,7 +3098,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "أحداث" @@ -3186,52 +3208,52 @@ msgstr "%s معطل في خادم MySQL هذا." msgid "This MySQL server does not support the %s storage engine." msgstr "خادم MySQL هذا لايدعم محرك التخزين %s ." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "حالة الجدول غير معروفة:" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "المظهر %s غير موجود!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "قاعدة البيانات غير صالحة" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "اسم الجدول غير صالح" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "تم إعادة تسمية الجدول %s إلى %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "لا يمكن حفظ تفضيلات جدول UI" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3240,7 +3262,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "دالة" @@ -3252,7 +3274,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3295,7 +3317,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" @@ -3658,7 +3680,7 @@ msgstr "مشترك" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "جداول" @@ -3669,9 +3691,10 @@ msgstr "جداول" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "بيانات" @@ -3791,32 +3814,32 @@ msgid "Disabled" msgstr "معطل" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "بناء" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "بيانات" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "البنية والبيانات" @@ -4227,13 +4250,13 @@ msgstr "الضغط" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "ضع أسماء الحقول في السطر الأول" @@ -4256,7 +4279,6 @@ msgstr "حقل متجاهل بـ" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "استبدل NULL بـ" @@ -4296,23 +4318,22 @@ msgstr "إسم قالب الجدول" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "إفراغ الجدول" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "أضف عنواناً للجدول" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "عنوان الجدول" @@ -4321,14 +4342,14 @@ msgid "Continued table caption" msgstr "عنوان جدول تابع" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Label key" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "نوع MIME" @@ -4365,7 +4386,7 @@ msgid "SQL compatibility mode" msgstr "وضع توافق SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "خيارات CREATE TABLE :" @@ -4378,7 +4399,7 @@ msgid "Use delayed inserts" msgstr "استخدم الإضافات المتأخرة" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "تعطيل التحقق من المفتاح الغريب" @@ -4395,7 +4416,7 @@ msgid "Syntax to use when inserting data" msgstr "بناء الجملة لإستخدامه عند إدخال البيانات" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "أقصى طول للإستعلام المنشئ" @@ -4404,7 +4425,7 @@ msgid "Export type" msgstr "نوع التصدير" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "تضمين التصدير في العملية" @@ -4457,7 +4478,6 @@ msgstr "تخصيص الخيارات الإفتراضية" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "سي إس في" @@ -4516,7 +4536,6 @@ msgid "Set import and export directories and compression options" msgstr "حدد عناوين الإستيراد والتصدير و خيارات الضغط" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4734,7 +4753,6 @@ msgid "Customize text input fields" msgstr "تخصيص حقول الإدخال النصية" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "نص" @@ -5828,9 +5846,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "كلمة السر" @@ -5996,7 +6016,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6020,19 +6039,16 @@ msgstr "خيارات تصدير قاعدة بيانات" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "بيانات CSV لبرنامج ميكروسوفت إكسل" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6090,25 +6106,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6119,13 +6135,15 @@ msgid "Change password" msgstr "تغيير كلمة السر" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "لا كلمة سر" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "أعد كتابة" @@ -6148,8 +6166,9 @@ msgstr "تكوين قاعدة بيانات جديدة" msgid "Create" msgstr "تكوين" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "امتياز غير موجود" @@ -6159,12 +6178,12 @@ msgid "Create table" msgstr "أنشئ الجدول" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "الاسم" @@ -6329,7 +6348,7 @@ msgid "View output as text" msgstr "حفظ كملف" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6795,54 +6814,54 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "لايوجد قواعد بيانات" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "بيانات مفقودة لـ %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "اذهب إلى الجدول" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "البنية فقط" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6913,11 +6932,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7171,7 +7190,7 @@ msgstr "مستندات وثائقية لـ phpMyAdmin (بالإنجليزية)" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7284,84 +7303,84 @@ msgstr "" msgid "Authenticating..." msgstr "مصادقة..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "خطوط مفصولة بـ" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "حقل مضمن بـ" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "حقل متجاهل بـ" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "خطوط مفصولة بـ" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "استبدل NULL بـ" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "إصدارة إكسل" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy #| msgid "Database export options" msgid "Data dump options" msgstr "خيارات تصدير قاعدة بيانات" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "إرجاع أو استيراد بيانات الجدول" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "حدث" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7369,24 +7388,24 @@ msgstr "حدث" msgid "Definition" msgstr "الوصف" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "بنية الجدول" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7406,257 +7425,248 @@ msgstr "(تابع)" msgid "Structure of table @TABLE@" msgstr "بنية الجدول __TABLE__" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "خيارات التحويل" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "عنوان الجدول" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "إظهار تعليقات العمود" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "أنواع MIME المتوفرة" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "المزود" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "أنشئ في" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "إصدارة المزود" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP إصدارة" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "جدول ميدياويكي" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export as %s" msgid "Export table names" msgstr "تصدير كـ %s" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr ")عناوين ملتفة( أفقيا" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "بي دي إف" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "استورد الملفات" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "أوامر" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "أوامر" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "خيارات التحويل" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "القيود للجدول" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "يسمح بقراءة البيانات." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "إكس إم إل" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7725,6 +7735,10 @@ msgstr "اسم العمود" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "جدول ميدياويكي" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7780,6 +7794,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "إكس إم إل" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8010,11 +8028,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "بدون وصف" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "إلغاء تحديد الكل" @@ -8034,9 +8053,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "اسم المستخدم" @@ -8071,34 +8091,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "أي مستخدم" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "استخدم حقل نص" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "أي مزود" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "محلي" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "هذا المضيف" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "استخدم الجدول المضيف" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8112,7 +8141,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8154,8 +8183,8 @@ msgid "Edit event" msgstr "حدث" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "خطأ في معالجة الطلب" @@ -8244,7 +8273,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8396,7 +8426,12 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "نتائج تنفيذ الإجراء %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8407,18 +8442,13 @@ msgstr[3] "%d تأثر بالإجراء الأخير" msgstr[4] "%d تأثر بالإجراء الأخير" msgstr[5] "%d تأثر بالإجراء الأخير" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "نتائج تنفيذ الإجراء %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "تنفيذ" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8579,29 +8609,29 @@ msgstr "لا توجد جداول متوفره في قاعدة البيانات msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "الجدول \"%s\" غير موجود!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "رجاء إعداد الموقع للجدول %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8750,6 +8780,453 @@ msgstr "" msgid "Current Server" msgstr "الخادم الحالي" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "لا صلاحيات." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "يتضمن كل الصلاحيات عدا GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "يسمح بقراءة البيانات." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "يسمح بإضافة واستبدال البيانات." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "يسمح بتعديل البيانات." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "يسمح بحذف البيانات." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "يسمح بحذف قواعد البيانات." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "يسمح بإيقاف عمل الخادم." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "ليس له أي تأثير في نسخة MySQL الحالية." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "يسمح بإنشاء وحذف الفهارس." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"يسمح بالاتصال، حتى لو وصل حد عدد الاتصالات للأقصى.، مطلوب للمهام الإدارية " +"كضبط الإعدادات العامة other users." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "يسمح بإنشاء جداول مؤقتة." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "يسمح بقفل الجداول للعملية الحالية." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "مطلوب لتوابع لاستنساخ." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "لا شيء" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "حدود المصادر" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "يحد عدد الاستعلامات التي يستطيع المستخدم إرسالها إلى الخادم بكل ساعة." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"يحد عدد الأوامر التي ينفذها المستخدم بكل ساعة، والتي تغير أي جدول أو قاعدة " +"بيانات." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "يحد من عدد الاتصالات الجديدة التي يمكن للمستخدم فتحها بكل ساعة." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "صلاحيات خاصة بالجدول" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط " + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "إدارة" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "صلاحيات عامة" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "صلاحيات خاصة بقاعدة البيانات" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "يسمح بإنشاء جداول جديدة." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "يسمح بحذف الجداول." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "بيانات الدخول" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "لاتغير كلمة السر" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "تم تغيير كلمة المرور لـ %s بنجاح." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "لقد أبطلت الامتيازات لـ %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "المستخدم" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "منح" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "The row has been deleted" +msgid "User has been added." +msgstr "لقد تم حذف الصف" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "أي" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "عام" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "خاص بقاعدة بيانات" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "حرف شامل" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "المستخدم(ون) لم يتم إيجادهم." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "تحرير الامتيازات" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "إبطال" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "تصدير" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... أبق القديم." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... احذف القديم من جداول المستخدمين." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "غير معلومات الدخول / انسخ اسم مستخدم" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "صلاحيات خاصة بالحقل" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "إضافة الصلاحيات على قاعدة البيانات التالية" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "إضافة الصلاحيات على الجدول التالي" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "احذف المستخدمين المحددين" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "قيد إعادة قراءة الصلاحيات." + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "تم حذف المستخدمين المحددين بنجاح." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "لقد جددت وحدثت الإمتيازات لـ %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "الإمتيازات" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "الإمتيازات" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "معلومات المستخدم" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL " +"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " +"ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " +"قبل أن تكمل." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "لقد أضفت مستخدم جديد." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8798,11 +9275,11 @@ msgstr "" msgid "Columns" msgstr "اسم العمود" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" @@ -9103,12 +9580,6 @@ msgstr "عرض الإصدارات" msgid "Protocol version" msgstr "نسخة البروتوكول" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "المستخدم" - #: main.php:217 #, fuzzy #| msgid "Remove chart" @@ -9654,443 +10125,20 @@ msgstr "" msgid "disabled" msgstr "معطل" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "يتضمن كل الصلاحيات عدا GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "يسمح بإنشاء جداول جديدة." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "يسمح بإنشاء جداول مؤقتة." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "يسمح بحذف البيانات." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "يسمح بحذف قواعد البيانات." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "يسمح بحذف الجداول." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "يسمح بإنشاء وحذف الفهارس." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "يسمح بإضافة واستبدال البيانات." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "يسمح بقفل الجداول للعملية الحالية." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "يحد من عدد الاتصالات الجديدة التي يمكن للمستخدم فتحها بكل ساعة." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "يحد عدد الاستعلامات التي يستطيع المستخدم إرسالها إلى الخادم بكل ساعة." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"يحد عدد الأوامر التي ينفذها المستخدم بكل ساعة، والتي تغير أي جدول أو قاعدة " -"بيانات." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "ليس له أي تأثير في نسخة MySQL الحالية." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "مطلوب لتوابع لاستنساخ." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "يسمح بقراءة البيانات." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "يسمح بإيقاف عمل الخادم." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"يسمح بالاتصال، حتى لو وصل حد عدد الاتصالات للأقصى.، مطلوب للمهام الإدارية " -"كضبط الإعدادات العامة other users." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "يسمح بتعديل البيانات." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "لا صلاحيات." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "لا شيء" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "صلاحيات خاصة بالجدول" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط " - -#: server_privileges.php:724 -msgid "Administration" -msgstr "إدارة" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "صلاحيات عامة" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "صلاحيات خاصة بقاعدة البيانات" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "حدود المصادر" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "بيانات الدخول" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "لاتغير كلمة السر" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "المستخدم(ون) لم يتم إيجادهم." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "اسم المستخدم %s موجود مسبقاً!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "لقد أضفت مستخدم جديد." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "لقد جددت وحدثت الإمتيازات لـ %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "لقد أبطلت الامتيازات لـ %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "تم تغيير كلمة المرور لـ %s بنجاح." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "قيد حذف %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "قيد إعادة قراءة الصلاحيات." - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "تم حذف المستخدمين المحددين بنجاح." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "تحرير الامتيازات" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "إبطال" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "تصدير" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "أي" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "الإمتيازات" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "الإمتيازات" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "معلومات المستخدم" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "منح" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "احذف المستخدمين المحددين" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL " -"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " -"ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " -"قبل أن تكمل." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "صلاحيات خاصة بالحقل" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "إضافة الصلاحيات على قاعدة البيانات التالية" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "إضافة الصلاحيات على الجدول التالي" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "غير معلومات الدخول / انسخ اسم مستخدم" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... أبق القديم." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... احذف القديم من جداول المستخدمين." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "عام" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "خاص بقاعدة بيانات" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "حرف شامل" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "The row has been deleted" -msgid "User has been added." -msgstr "لقد تم حذف الصف" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11702,41 +11750,41 @@ msgstr "" msgid "Wrong data" msgstr "لايوجد بيانات" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "هل تريد حقا" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "التحقق من استعلام SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "ناتج استعلام SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "أنشئ بواسطة" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "علامة" @@ -13540,6 +13588,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "PDF" +#~ msgstr "بي دي إف" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/az.po b/po/az.po index b6444ac30e..1da52d9de7 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: azerbaijani \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Hamısını göster" @@ -37,16 +38,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Axtarış" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -56,24 +57,26 @@ msgstr "Axtarış" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Davam" @@ -107,7 +110,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s bazası yaradildi." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Baza qısa izahatı: " @@ -117,17 +120,17 @@ msgstr "Baza qısa izahatı: " msgid "Table comments" msgstr "Cedvel haqqında qısa izahat" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "Sütun adları" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tip" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "Null" msgid "Default" msgstr "Başlanğıc deyeri" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "Links to" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "Qısa İzahatlar" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Xeyir" @@ -241,19 +247,22 @@ msgstr "Xeyir" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Beli" @@ -261,8 +270,8 @@ msgstr "Beli" msgid "View dump (schema) of database" msgstr "Me'lumat bazasının sxemini göster" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Me'lumat bazasında cedvel yoxdur." @@ -279,79 +288,79 @@ msgstr "Heç birini seçme" msgid "The database name is empty!" msgstr "Cedveli adı boşdur!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%s cedveli %s - e kopyalandı." -#: db_operations.php:466 +#: db_operations.php:465 #, fuzzy msgid "Rename database to" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy msgid "Remove database" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s bazası leğv edildi." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:539 +#: db_operations.php:538 #, fuzzy msgid "Copy database to" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Sadece quruluş" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Quruluş ve me'lumat" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Sadece me'lumat" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT deyeri elave et" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "" -#: db_operations.php:584 +#: db_operations.php:583 #, fuzzy msgid "Switch to copied database" msgstr "Kopyalanmış cedvele keç" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -362,7 +371,7 @@ msgstr "Kopyalanmış cedvele keç" msgid "Collation" msgstr "Quruluş" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -374,7 +383,7 @@ msgstr "" "Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " "passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -386,16 +395,18 @@ msgstr "Relational schema" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Cedvel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Sıra sayı" @@ -405,13 +416,13 @@ msgid "Size" msgstr "Boy" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "istifadede" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -419,7 +430,7 @@ msgstr "Quruluş" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -427,7 +438,7 @@ msgstr "En son yenilenme" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -441,97 +452,16 @@ msgid_plural "%s tables" msgstr[0] "%s cedvel" msgstr[1] "%s cedvel" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Artan sırada" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Azalan sırada" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sırala" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Göster" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriteriyalar" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Kriteria Setirlerini Elave Et/Sil" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Sahe Sütunlarını Elave Et/Sil" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Sorğunu Yenile" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Use Tables" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "ya da" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Ve" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modify" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Kopyalanmış cedvele keç" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-query on database %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Emri İcra Et" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -574,7 +504,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -603,20 +533,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Seçilenleri:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Hamısını Seç" @@ -624,31 +555,32 @@ msgstr "Hamısını Seç" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Boşalt" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -696,17 +628,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Me'lumat Bazası" @@ -725,18 +658,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Fealiyyetler" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Göster" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -783,22 +724,22 @@ msgstr "Me'lumat Bazası" msgid "Bad type!" msgstr "Sorğu tipi" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Yeni sahe elave et" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s faylını saxlamaq üçün lazım olan yer çatışmır." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -806,12 +747,12 @@ msgstr "" "%s faylı serverda onsuz da mövcuddur, ya faylın adını deyişdir ya da üzerine " "yazma variantlarını." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserver-in %s faylını saxlama izni yoxdur." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Sxem %s faylına qeyd edildi." @@ -835,7 +776,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -916,27 +857,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Bookmark silindi." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Fayl oxuna bilmir" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -944,46 +885,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -1000,7 +941,7 @@ msgstr "" "phpMyAdmin frame-destekli görüntüleyicilerle (browser) daha yaxşı " "işleyir." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." @@ -1010,7 +951,7 @@ msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." msgid "Do you really want to execute \"%s\"?" msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bazanı YOX ETMEK üzeresiniz!" @@ -1080,16 +1021,20 @@ msgstr "Host adı boşdur!" msgid "The user name is empty!" msgstr "İstifadeçi adı boş qaldı!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1114,9 +1059,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1380,12 +1325,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Heç biri" @@ -1570,10 +1516,10 @@ msgid "Explain output" msgstr "SQL-i İzah Et" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Müddet" @@ -1915,7 +1861,7 @@ msgstr "SQL sorğusu" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Deyişdir" @@ -1924,8 +1870,8 @@ msgstr "Deyişdir" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -2006,7 +1952,7 @@ msgstr "İçindekiler Cedveli" msgid "Ignore" msgstr "Diqqete Alma" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2549,14 +2495,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Xeta" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL sorğusu" @@ -2567,7 +2513,7 @@ msgstr "SQL sorğusu" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2596,6 +2542,10 @@ msgstr "PHP Kodunu Gösterme" msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Emri İcra Et" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2622,7 +2572,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Motorlar" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2651,7 +2601,7 @@ msgstr "Yeni sahe elave et" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2660,7 +2610,7 @@ msgstr "Başla" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2670,7 +2620,7 @@ msgstr "Evvelki" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2680,7 +2630,7 @@ msgstr "Sonrakı" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2703,16 +2653,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Quruluş" @@ -2720,21 +2671,20 @@ msgstr "Quruluş" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Elave et" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "İçindekiler" @@ -2756,21 +2706,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web-server upload direktoriyası" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Çap et" @@ -2787,6 +2737,78 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Artan sırada" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Azalan sırada" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sırala" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriteriyalar" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Kriteria Setirlerini Elave Et/Sil" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Sahe Sütunlarını Elave Et/Sil" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Sorğunu Yenile" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Use Tables" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "ya da" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Ve" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modify" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-query on database %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "sözlerin en azından birini" @@ -2830,8 +2852,8 @@ msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)" msgid "Delete the matches for the %s table?" msgstr "Sxemi çıxarılan cedvel" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2872,72 +2894,72 @@ msgstr "Inside table(s):" msgid "Inside column:" msgstr "Inside table(s):" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Şen" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "Sehife başına düşen setir sayı" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Baz Ert" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "üfüqi" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "üfüqi (tekrarlanan başlıqlar)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "şaquli" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2951,115 +2973,115 @@ msgstr "" msgid "Options" msgstr "Emeliyyatlar" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Qismi Metnler" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Tam Metnler (Full Text)" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Browser transformation" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Setir silindi" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Söndür" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "in query" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Gösterilen setirler" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "cemi" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF sxemini göster" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Server versiyası" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Link tapılmadı" @@ -3180,8 +3202,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Me'lumat Bazaları" @@ -3197,11 +3219,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3219,9 +3241,9 @@ msgstr "" msgid "Query" msgstr "Sorğu" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Selahiyyetler" @@ -3230,7 +3252,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3333,51 +3355,51 @@ msgstr "%s motoru bu serverde söndürülmüşdür." msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL server %s depolama motorunu desteklememektedir." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Search in database" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Search in database" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3386,7 +3408,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksiya" @@ -3399,7 +3421,7 @@ msgstr "Emeliyyatlar" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3444,7 +3466,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3803,7 +3825,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Cedveller" @@ -3814,9 +3836,10 @@ msgstr "Cedveller" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Me'lumat" @@ -3940,33 +3963,33 @@ msgid "Disabled" msgstr "Söndürülüb" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Quruluş" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4389,13 +4412,13 @@ msgstr "Sıxışdırma" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4424,7 +4447,6 @@ msgstr "Sahelerin escape edildiyi işare" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL-u bununla deyişdir" @@ -4471,25 +4493,24 @@ msgstr "Fayl adı nomenklaturası" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s cedvel" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Cedvel başlığını daxil et" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Cedvel başlığı" @@ -4498,14 +4519,14 @@ msgid "Continued table caption" msgstr "Cedvel başlığının davamı" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Etiket açarı" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-tipi" @@ -4547,7 +4568,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4561,7 +4582,7 @@ msgid "Use delayed inserts" msgstr "Genişletilmiş girişli" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4580,7 +4601,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4590,7 +4611,7 @@ msgid "Export type" msgstr "Eksport şekli" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4645,7 +4666,6 @@ msgstr "Me'lumat bazası eksport variantları" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV verilenleri" @@ -4706,7 +4726,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4944,7 +4963,6 @@ msgid "Customize text input fields" msgstr "Me'lumat bazası eksport variantları" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6055,9 +6073,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Parol" @@ -6224,7 +6244,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6246,19 +6265,16 @@ msgstr "Me'lumat bazası eksport variantları" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excel verilenleri üçün CSV" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6314,25 +6330,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6343,13 +6359,15 @@ msgid "Change password" msgstr "Parolu Deyişdir" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Parol Yoxdur" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Re-type" @@ -6372,8 +6390,9 @@ msgstr "Yeni me'lumat bazası qur" msgid "Create" msgstr "Qur" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Selahiyyet çatışmazlığı" @@ -6384,12 +6403,12 @@ msgid "Create table" msgstr "Yeni Sehife qur" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Adı" @@ -6554,7 +6573,7 @@ msgid "View output as text" msgstr "Fayl olaraq qeyd et" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7018,51 +7037,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Sadece quruluş" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7134,11 +7153,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7397,7 +7416,7 @@ msgstr "phpMyAdmin dokumentasiyası (etraflı me'lumat üçün)" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7507,84 +7526,84 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Setir leğvedicisi (Lines terminated by)" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Saheler ehate edildiyi işare" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Sahelerin escape edildiyi işare" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Setir leğvedicisi (Lines terminated by)" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "NULL-u bununla deyişdir" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel versiyası" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Sxemi çıxarılan cedvel" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Gönderildi" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7592,25 +7611,25 @@ msgstr "Gönderildi" msgid "Definition" msgstr "Haqqında" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Sadece quruluş" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7628,261 +7647,252 @@ msgstr "(davamı)" msgid "Structure of table @TABLE@" msgstr "Table structure for table" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Transformasiya variantları" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Cedvel başlığı" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Sütun Qısa İzahatını Deyişdir" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Mövcud olan MIME-tipleri" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Host" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Hazırlanma Vaxtı" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Server versiyası" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP Versiyası" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "Eksport" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "üfüqi (tekrarlanan başlıqlar)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "Faylları import et" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Başlığa xülase me'lumatı elave et (\\n yeni setire keçir)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Variantlar" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Variantlar" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Transformasiya variantları" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "Prosesler" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "Funksiya" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Allows reading data." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7951,6 +7961,10 @@ msgstr "Sütun adları" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -8004,6 +8018,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8237,11 +8255,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "Haqqında me'lumat (description) mövcud deyildir" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Heç Birini Seçme" @@ -8261,9 +8280,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "İstifadeçi adı" @@ -8300,34 +8320,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Her hansı istifadeçi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Her hansı host" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Yerli" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Bu Host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8341,7 +8370,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8379,8 +8408,8 @@ msgid "Edit event" msgstr "Gönderildi" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8466,7 +8495,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8608,25 +8638,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8778,29 +8808,29 @@ msgstr "Me'lumat bazasında cedvel yoxdur." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" cedveli mövcud deyil!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Xahiş edirem, %s cedveli üçün koordinatları yeniden müeyyen et." -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8950,6 +8980,458 @@ msgstr "" msgid "Current Server" msgstr "Server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Selahiyyet te'yin edilmedi." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "GRANT-dan başqa bütün selahiyyetler daxildir." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Me'lumat silmeye icaze verir." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Yeni bazalar ve cedveller qurmağa icaze verir." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Baza ve cedvel leğv etmeye icaze verir." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Allows connecting, even if maximum number of connections is reached; " +"Required for most administrative operations like setting global variables or " +"killing threads of other users." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Keçici cedveller qurmağa icaze verir." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Gives the right to the user to ask where the slaves / masters are." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +#, fuzzy +msgid "Allows creating new views." +msgstr "Yeni cedveller qurmağa icaze verir." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Allows creating and dropping indexes." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +#, fuzzy +msgid "Allows creating stored routines." +msgstr "Yeni cedveller qurmağa icaze verir." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +#, fuzzy +msgid "Allows altering and dropping stored routines." +msgstr "Allows creating and dropping indexes." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Heç biri" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Qeyd: Bu variantları 0 (sıfır)-a çevirmek hüdudu (limiti) qaldıracaq." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limits the number of new connections the user may open per hour." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Cedvelexas selahiyyetler" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administrasiya" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Qlobal selahiyyetler" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Me'lumat Bazasına Mexsus Selahiyyetler" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Yeni cedveller qurmağa icaze verir." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Cedvelleri leğv etmeye icaze verir." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Sisteme Giriş Me'lumatı" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Parolu deyişdirme" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s üçün parol müveffeqiyyetle deyişdirilmişdir." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "İstifadeçi" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "İcaze ver" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +msgid "User has been added." +msgstr "%s sahesi leğv edildi" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Her hansı" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "qlobal" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "bazayaxas" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "xüsusi işare" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "İstifadeçi(ler) tapılmadı." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Selahiyyetleri Deyişdir" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Revoke" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Eksport" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... köhnesini saxla." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... istifadeçi cedvellerinden köhnesini sil." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri " +"yeniden yükle." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Sütunaxas Selahiyyetler" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Selahiyyetler" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Selahiyyetler" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "User overview" + +#: libraries/server_privileges.lib.php:2883 +#, fuzzy, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler " +"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin " +"içerisindekiler webserver-in istifade etdiklerinden ferqli ola biler. Bu " +"halda, davam etmeden evvel, selahiyyetleri %syeniden yüklemelisiniz%s." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Yeni istifadeçi elave etdiniz." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9000,11 +9482,11 @@ msgstr "" msgid "Columns" msgstr "Sütun adları" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -9293,12 +9775,6 @@ msgstr "Server versiyası" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "İstifadeçi" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9847,448 +10323,20 @@ msgstr "" msgid "disabled" msgstr "Söndürülüb" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "GRANT-dan başqa bütün selahiyyetler daxildir." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -#, fuzzy -msgid "Allows altering and dropping stored routines." -msgstr "Allows creating and dropping indexes." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Yeni bazalar ve cedveller qurmağa icaze verir." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -#, fuzzy -msgid "Allows creating stored routines." -msgstr "Yeni cedveller qurmağa icaze verir." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Yeni cedveller qurmağa icaze verir." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Keçici cedveller qurmağa icaze verir." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -#, fuzzy -msgid "Allows creating new views." -msgstr "Yeni cedveller qurmağa icaze verir." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Me'lumat silmeye icaze verir." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Baza ve cedvel leğv etmeye icaze verir." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Cedvelleri leğv etmeye icaze verir." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Gives the right to the user to ask where the slaves / masters are." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Allows connecting, even if maximum number of connections is reached; " -"Required for most administrative operations like setting global variables or " -"killing threads of other users." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Allows creating and dropping indexes." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Selahiyyet te'yin edilmedi." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Heç biri" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Cedvelexas selahiyyetler" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administrasiya" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Qlobal selahiyyetler" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Me'lumat Bazasına Mexsus Selahiyyetler" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Qeyd: Bu variantları 0 (sıfır)-a çevirmek hüdudu (limiti) qaldıracaq." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Sisteme Giriş Me'lumatı" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Parolu deyişdirme" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "İstifadeçi(ler) tapılmadı." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Yeni istifadeçi elave etdiniz." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s üçün parol müveffeqiyyetle deyişdirilmişdir." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s silinir" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Selahiyyetleri Deyişdir" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Revoke" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Eksport" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Her hansı" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Selahiyyetler" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Selahiyyetler" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "User overview" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "İcaze ver" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." - -#: server_privileges.php:1997 -#, fuzzy, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler " -"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin " -"içerisindekiler webserver-in istifade etdiklerinden ferqli ola biler. Bu " -"halda, davam etmeden evvel, selahiyyetleri %syeniden yüklemelisiniz%s." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Sütunaxas Selahiyyetler" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... köhnesini saxla." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... istifadeçi cedvellerinden köhnesini sil." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri " -"yeniden yükle." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "qlobal" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "bazayaxas" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "xüsusi işare" - -#: server_privileges.php:2590 -#, fuzzy -msgid "User has been added." -msgstr "%s sahesi leğv edildi" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11888,41 +11936,41 @@ msgstr "" msgid "Wrong data" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL Tesdiqle" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL result" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Qurucu" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etiket" diff --git a/po/be.po b/po/be.po index aea6d38272..6449545c5e 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: belarusian_cyrillic \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Паказаць усе" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Пошук" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Пошук" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Панеслася" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База дадзеных %1$s створаная." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " @@ -119,17 +122,17 @@ msgstr "Камэнтар да базы дадзеных: " msgid "Table comments" msgstr "Камэнтар да табліцы" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Назвы калёнак" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Тып" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Нуль" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Нуль" msgid "Default" msgstr "Па змоўчаньні" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Зьвязаная з" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Камэнтары" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Не" @@ -243,19 +249,22 @@ msgstr "Не" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Так" @@ -263,8 +272,8 @@ msgstr "Так" msgid "View dump (schema) of database" msgstr "Праглядзець дамп (схему) базы дадзеных" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "У базе дадзеных табліц ня выяўлена." @@ -280,79 +289,79 @@ msgstr "Зьняць усе адзнакі" msgid "The database name is empty!" msgstr "Імя базы дадзеных не пазначанае!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "База дадзеных %s была перайменаваная ў %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "База дадзеных %s была скапіяваная ў %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "База дадзеных %s была выдаленая." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "Базы дадзеных адсутнічаюць" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Капіяваць базу дадзеных у" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Толькі структуру" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Структуру і дадзеныя" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Толькі дадзеныя" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "выканаць CREATE DATABASE перад капіяваньнем" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Дадаць %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Дадаць абмежаваньні" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Перайсьці да скапіяванай базы дадзеных" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -362,7 +371,7 @@ msgstr "Перайсьці да скапіяванай базы дадзеных msgid "Collation" msgstr "Супастаўленьне" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -374,7 +383,7 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -386,16 +395,18 @@ msgstr "Рэляцыйная схема" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Табліца" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Радкі" @@ -405,13 +416,13 @@ msgid "Size" msgstr "Памер" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "выкарыстоўваецца" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -419,7 +430,7 @@ msgstr "Створаная" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -427,7 +438,7 @@ msgstr "Апошняе абнаўленьне" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -441,97 +452,16 @@ msgid_plural "%s tables" msgstr[0] "%s табліц(ы)" msgstr[1] "%s табліц(ы)" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Вам неабходна выбраць прынамсі адну калёнку для адлюстраваньня" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "прамы" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "адваротны" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Парадак" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Паказаць" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Крытэр" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Дадаць/выдаліць радок крытэру" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Дадаць/выдаліць калёнку крытэру" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Абнавіць запыт" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Выкарыстоўваць табліцы" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Або" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "І" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Уставіць" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Выдаліць" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Зьмяніць" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Перайсьці да скапіяванай табліцы" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-запыт да БД %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Выканаць запыт" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -574,7 +504,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -606,20 +536,21 @@ msgstr "" "сэрвэры." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "З адзначанымі:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Адзначыць усё" @@ -627,31 +558,32 @@ msgstr "Адзначыць усё" msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспарт" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Ачысьціць" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -701,17 +633,18 @@ msgstr "Праверыць табліцу" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "База дадзеных" @@ -731,18 +664,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Стан" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Дзеяньне" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Паказаць" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -789,22 +730,22 @@ msgstr "База дадзеных" msgid "Bad type!" msgstr "Тып запыту" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Дадзеныя выбранага тыпу экспартаваньня мусяць быць зазаванымі ў файл!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Дадаць новае поле" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недастаткова месца для захаваньня ў файл %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -812,12 +753,12 @@ msgstr "" "Файл %s ужо існуе на сэрвэры, зьмяніце імя файла або праверце опцыю " "перазапісу." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сэрвэр ня мае дазволу для захаваньня ў файл %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп захаваны ў файл %s." @@ -841,7 +782,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -923,7 +864,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -933,20 +874,20 @@ msgstr "" "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " "абмежаваньне." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Паказваючы закладку" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Закладка была выдаленая." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Немагчыма прачытаць файл" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -957,7 +898,7 @@ msgstr "" "(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -967,27 +908,27 @@ msgstr "" "загружаны, альбо памер файла перавысіў максымальны памер, вызначаны " "канфігурацыяй PHP. Гл. FAQ 1.16." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створаная" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Імпартраваньне пасьпяхова завершанае, выканана %d запытаў." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -995,7 +936,7 @@ msgstr "" "Выйшаў дазволены час выкананьня скрыпта. Калі вы хочаце завершыць " "імпартаваньне, калі ласка, загрузіце файл зноў і імпартаваньне ўзнавіцца." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1004,8 +945,8 @@ msgstr "" "звычайна значыць, што phpMyAdmin ня зможа скончыць гэтае імпартаваньня, калі " "вы не павялічыце ліміты выкананьня php-скрыптоў." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -1020,7 +961,7 @@ msgstr "Назад" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для работы phpMyAdmin патрэбны браўзэр з падтрымкай фрэймаў." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Каманды \"DROP DATABASE\" адключаныя." @@ -1030,7 +971,7 @@ msgstr "Каманды \"DROP DATABASE\" адключаныя." msgid "Do you really want to execute \"%s\"?" msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!" @@ -1101,16 +1042,20 @@ msgstr "Пустое імя хосту!" msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1136,9 +1081,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1414,12 +1359,13 @@ msgstr "Зьвяць зь сеткай" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Няма" @@ -1608,10 +1554,10 @@ msgid "Explain output" msgstr "Тлумачыць SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Час" @@ -1963,7 +1909,7 @@ msgstr "SQL-запыт" msgid "No rows selected" msgstr "Ніводны радок ня выбраны" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Зьмяніць" @@ -1972,8 +1918,8 @@ msgstr "Зьмяніць" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." @@ -2054,7 +2000,7 @@ msgstr "Памер указальніка на дадзеныя" msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Скапіяваць" @@ -2601,14 +2547,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Памылка" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-запыт" @@ -2619,7 +2565,7 @@ msgstr "SQL-запыт" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2648,6 +2594,10 @@ msgstr "Без PHP-коду" msgid "Create PHP Code" msgstr "Стварыць PHP-код" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Выканаць запыт" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2674,7 +2624,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Машыны" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Прафіляваньне" @@ -2703,7 +2653,7 @@ msgstr "Працэдуры" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2712,7 +2662,7 @@ msgstr "Першая старонка" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2722,7 +2672,7 @@ msgstr "Папярэдняя старонка" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2732,7 +2682,7 @@ msgstr "Наступная старонка" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2756,16 +2706,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" @@ -2773,21 +2724,20 @@ msgstr "Структура" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Уставіць" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Прагляд" @@ -2809,21 +2759,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Друк" @@ -2840,6 +2790,78 @@ msgstr "" msgid "Font size" msgstr "Памер шрыфта" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "прамы" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "адваротны" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Парадак" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Крытэр" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Дадаць/выдаліць радок крытэру" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Дадаць/выдаліць калёнку крытэру" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Абнавіць запыт" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Выкарыстоўваць табліцы" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Або" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "І" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Уставіць" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Выдаліць" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Зьмяніць" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-запыт да БД %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "прынамсі адно з словаў" @@ -2883,8 +2905,8 @@ msgstr[1] "%s супадзеньняў у табліцы %s" msgid "Delete the matches for the %s table?" msgstr "Дамп дадзеных табліцы" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2925,74 +2947,74 @@ msgstr "У табліцы(ах):" msgid "Inside column:" msgstr "Унутры поля:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy msgid "Save edited data" msgstr "Хатняя тэчка дадзеных" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Суб" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Колькасьць палёў" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Пан" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "гарызантальна" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "гарызантальна (павернутыя загалоўкі)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "вэртыкальна" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Выканаць запыт з закладак" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Сартаваць па ключы" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -3005,114 +3027,114 @@ msgstr "Сартаваць па ключы" msgid "Options" msgstr "Налады" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Частковыя тэксты" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Поўныя тэксты" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Ключ сувязі" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Адлюстраванае поле сувязі" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Радок быў выдалены" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Спыніць" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "па запыту" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Паказаныя запісы" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "усяго" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Вэрсія для друку (з усім тэкстам)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Паказаць PDF-схему" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Сувязь ня знойдзеная" @@ -3238,8 +3260,8 @@ msgstr "" "іх, магчыма, можна выдаліць." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Базы дадзеных" @@ -3255,11 +3277,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Трыгеры" @@ -3277,9 +3299,9 @@ msgstr "База дадзеных — пустая!" msgid "Query" msgstr "Запыт згодна прыкладу" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Прывілеі" @@ -3288,7 +3310,7 @@ msgid "Routines" msgstr "Працэдуры" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Падзеі" @@ -3396,54 +3418,54 @@ msgstr "%s была адключаная для рэтага MySQL-сэрвэр msgid "This MySQL server does not support the %s storage engine." msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Пошук у базе дадзеных" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Тэма %s ня знойдзеная!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Няправільная база дадзеных" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Некарэктнае імя табліцы" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Памылка перайменаваньня табліцы %1$s у %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Табліца %s была перайменаваная ў %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3452,7 +3474,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функцыя" @@ -3464,7 +3486,7 @@ msgstr "Апэратар" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3509,7 +3531,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" @@ -3871,7 +3893,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Табліц" @@ -3882,9 +3904,10 @@ msgstr "Табліц" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Дадзеныя" @@ -4014,33 +4037,33 @@ msgid "Disabled" msgstr "Адключана" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Структура" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4465,13 +4488,13 @@ msgstr "Сьціск" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4500,7 +4523,6 @@ msgstr "Палі экрануюцца" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Замяняць NULL на" @@ -4547,25 +4569,24 @@ msgstr "Шаблён назвы файла" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s табліц(ы)" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Уключыць загаловак табліцы" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Загаловак табліцы" @@ -4574,14 +4595,14 @@ msgid "Continued table caption" msgstr "Працягнуты загаловак табліцы" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Ключ меткі" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-тып" @@ -4623,7 +4644,7 @@ msgid "SQL compatibility mode" msgstr "Рэжым сумяшчальнасьці SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4636,7 +4657,7 @@ msgid "Use delayed inserts" msgstr "Выкарыстоўваць адкладзеныя ўстаўкі" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Адключыць праверку зьнешніх ключоў" @@ -4653,7 +4674,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Максымальная даўжыня створанага запыту" @@ -4663,7 +4684,7 @@ msgid "Export type" msgstr "Тып экспарту" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Экспартаваць за адну транзакцыю" @@ -4718,7 +4739,6 @@ msgstr "Налады экспарту базы дадзеных" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4782,7 +4802,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -5023,7 +5042,6 @@ msgid "Customize text input fields" msgstr "Налады экспарту базы дадзеных" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Тэкст Texy!" @@ -6161,9 +6179,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Пароль" @@ -6334,7 +6354,6 @@ msgstr "CSV з выкарыстаньнем LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Спэцыфікацыя Open Document" @@ -6358,19 +6377,16 @@ msgstr "Налады экспарту базы дадзеных" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV для дадзеных MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Тэкст Open Document" @@ -6426,7 +6442,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6434,21 +6450,21 @@ msgid "" "configured)." msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сэрвэр не адказвае" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Падрабязьней..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6461,13 +6477,15 @@ msgid "Change password" msgstr "Зьмяніць пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Пацьверджаньне" @@ -6492,8 +6510,9 @@ msgstr "Стварыць новую базу дадзеных" msgid "Create" msgstr "Стварыць" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Без прывілеяў" @@ -6503,12 +6522,12 @@ msgid "Create table" msgstr "Стварыць табліцу" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Назва" @@ -6683,7 +6702,7 @@ msgid "View output as text" msgstr "Захаваць як файл" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7208,51 +7227,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Толькі структуру" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" @@ -7328,11 +7347,11 @@ msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" @@ -7586,7 +7605,7 @@ msgstr "Дакумэнтацыя па phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7704,83 +7723,83 @@ msgstr "Дзейны ключ аўтэнтыфікацыі не падключа msgid "Authenticating..." msgstr "Аўтэнтыфікацыя..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Радкі падзеленыя" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Палі ўзятыя ў" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Палі экрануюцца" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Радкі падзеленыя" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Замяняць NULL на" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Вэрсія Excel" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Налады экспарту базы дадзеных" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Дамп дадзеных табліцы" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Падзея" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7788,24 +7807,24 @@ msgstr "Падзея" msgid "Definition" msgstr "Апісаньне" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Структура табліцы" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Структура для прагляду" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Замяняльная структура для прагляду" @@ -7825,262 +7844,253 @@ msgstr "(працяг)" msgid "Structure of table @TABLE@" msgstr "Структура табліцы __TABLE__" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Опцыі пераўтварэньня" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Загаловак табліцы" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Адключыць праверку зьнешніх ключоў" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Паказваць камэнтары калёнак" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Даступныя MIME-тыпы" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Хост" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Час стварэньня" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Вэрсія сэрвэра" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Вэрсія PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy msgid "Export table names" msgstr "Тып экспарту" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "гарызантальна (павернутыя загалоўкі)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Генэруе справаздачу з дадзенымі асобнай табліцы)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Загаловак справаздачы" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Дадаць прыватны камэнтар у загаловак (\\n падзяляе радкі)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Выразы" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Выразы" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Опцыі пераўтварэньня" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Працэдуры" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Функцыі" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Абмежаваньні для табліцы" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME-тыпы табліцы" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "Сувязі ў табліцы" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Дазваляе чытаць дадзеныя." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Выгляд" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 #, fuzzy msgid "Export contents" msgstr "Тып экспарту" @@ -8151,6 +8161,10 @@ msgstr "Назвы калёнак" msgid "This plugin does not support compressed imports!" msgstr "Гэты плагін не падтрымлівае сьціснутыя дадзеныя!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -8209,6 +8223,10 @@ msgstr "Рэжым сумяшчальнасьці SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8478,11 +8496,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "няма апісаньня" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Зьняць усе адзнакі" @@ -8502,9 +8521,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Імя карыстальніка" @@ -8542,34 +8562,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Любы карыстальнік" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Любы хост" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Лякальны" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Гэты хост" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Выкарыстоўваць табліцу хостаў" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8583,7 +8612,7 @@ msgstr "Згенэраваць пароль" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8622,8 +8651,8 @@ msgid "Edit event" msgstr "Вэб-сэрвэр" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8713,7 +8742,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8861,26 +8891,26 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -9043,29 +9073,29 @@ msgstr "У базе дадзеных табліц ня выяўлена." msgid "There are no events to display." msgstr "Праверыць табліцу" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Табліцы \"%s\" не існуе!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Калі ласка, сканфігуруйце каардынаты для табліцы %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9217,6 +9247,468 @@ msgstr "Невядомая мова: %1$s." msgid "Current Server" msgstr "Сэрвэр" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Без прывілеяў." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Уключае ўсе прывілеі, апроч GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Дазваляе чытаць дадзеныя." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Дазваляе зьмяняць дадзеныя." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Дазваляе выдаляць дадзеныя." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Дазваляе выдаляць базы дадзеных і табліцы." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Дазваляе спыняць сэрвэр." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" +"Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Не працуе ў гэтай вэрсіі MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Дазваляе ствараць і выдаляць індэксы." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Дазваляе зьмяняць структуру існых табліц." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Дае доступ да поўнага сьпісу базаў дадзеных." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Дазваляе падлучэньне, нават калі дасягнуты максымальны лік падлучэньняў; " +"Патрабуецца для большасьці адміністратыўных апэрацыяў, такіх як вызначэньне " +"глябальных зьменных або спыненьне патокаў іншых карыстальнікаў." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Дазваляе ствараць часовыя табліцы." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Дазваляе блякаваць табліцы для бягучага патоку." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Неабходна для рэплікацыі slaves." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Дазваляе ствараць новыя прагляды." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Дазваляе стварэньне і выдаленьне трыгераў" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Дазваляе ствараць праграмы, якія захоўваюцца." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" +"Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Няма" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Абмежаваньні рэсурсаў" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Абмяжоўвае колькасьць запытаў, якія карыстальнік можа адправіць на сэрвэр на " +"працягу гадзіны." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Абмяжоўвае колькасьць камандаў, зьмяняючых любую табліцу або базу дадзеных, " +"якія карыстальнік можа выканаць на працягу гадзіны." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Абмяжоўвае колькасьць новых злучэньняў, якія карыстальнік можа адкрыць на " +"працягу гадзіны." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Прывілеі, спэцыфічныя для табліцы" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Адміністраваньне" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Глябальныя прывілеі" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Спэцыфічныя прывілеі базы дадзеных" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Дазваляе ствараць новыя табліцы." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Дазваляе выдаляць табліцы." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Дазваляе дадаваць карыстальнікаў і прывілеі без перазагрузкі табліц " +"прывілеяў." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Інфармацыя пра ўваход" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Не зьмяняць пароль" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Пароль для %s пасьпяхова зьменены." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Вы анулявалі прывілеі для %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "База дадзеных для карыстальніка" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" +"Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Праверыць прывілеі для базы "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Карыстальнікі з правамі доступу да "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Карыстальнік" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Grant" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Выгляд %s быў выдалены" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Любы" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "глябальны" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "спэцыфічны для базы дадзеных" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "шаблён" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Не знойдзены карыстальнік." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Рэдагаваць прывілеі" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Ануляваць" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Экспарт" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... пакінуць старога." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... выдаліць старога з табліцы карыстальнікаў." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць " +"прывілеі." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Спэцыфічныя прывілеі калёнак" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Дадаць прывілеі на наступную базу" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх " +"літаральнага выкарыстаньня" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Дадаць прывілеі на наступную табліцу" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Выдаліць выбраных карыстальнікаў" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "На выбраныя карыстальнікі для выдаленьня!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Перазагрузіць прывілеі" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Вы зьмянілі прывілеі для %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Прывілеі" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Прывілеі" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Карыстальнікі" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц " +"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " +"якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " +"вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Быў дададзены новы карыстальнік." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9269,11 +9761,11 @@ msgstr "Каляндар" msgid "Columns" msgstr "Назвы калёнак" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" @@ -9581,12 +10073,6 @@ msgstr "Вэрсія сэрвэра" msgid "Protocol version" msgstr "Вэрсія пратаколу" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Карыстальнік" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -10147,458 +10633,20 @@ msgstr "" msgid "disabled" msgstr "Адключана" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Уключае ўсе прывілеі, апроч GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Дазваляе зьмяняць структуру існых табліц." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Дазваляе ствараць праграмы, якія захоўваюцца." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Дазваляе ствараць новыя табліцы." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Дазваляе ствараць часовыя табліцы." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" -"Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Дазваляе ствараць новыя прагляды." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Дазваляе выдаляць дадзеныя." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Дазваляе выдаляць базы дадзеных і табліцы." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Дазваляе выдаляць табліцы." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" -"Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Дазваляе дадаваць карыстальнікаў і прывілеі без перазагрузкі табліц " -"прывілеяў." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Дазваляе ствараць і выдаляць індэксы." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Дазваляе блякаваць табліцы для бягучага патоку." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Абмяжоўвае колькасьць новых злучэньняў, якія карыстальнік можа адкрыць на " -"працягу гадзіны." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Абмяжоўвае колькасьць запытаў, якія карыстальнік можа адправіць на сэрвэр на " -"працягу гадзіны." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Абмяжоўвае колькасьць камандаў, зьмяняючых любую табліцу або базу дадзеных, " -"якія карыстальнік можа выканаць на працягу гадзіны." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Не працуе ў гэтай вэрсіі MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Неабходна для рэплікацыі slaves." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Дазваляе чытаць дадзеныя." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Дае доступ да поўнага сьпісу базаў дадзеных." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Дазваляе спыняць сэрвэр." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Дазваляе падлучэньне, нават калі дасягнуты максымальны лік падлучэньняў; " -"Патрабуецца для большасьці адміністратыўных апэрацыяў, такіх як вызначэньне " -"глябальных зьменных або спыненьне патокаў іншых карыстальнікаў." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Дазваляе стварэньне і выдаленьне трыгераў" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Дазваляе зьмяняць дадзеныя." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Без прывілеяў." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Няма" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Прывілеі, спэцыфічныя для табліцы" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Адміністраваньне" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Глябальныя прывілеі" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Спэцыфічныя прывілеі базы дадзеных" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Абмежаваньні рэсурсаў" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Інфармацыя пра ўваход" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Не зьмяняць пароль" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Не знойдзены карыстальнік." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Карыстальнік %s ужо існуе!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Быў дададзены новы карыстальнік." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Вы зьмянілі прывілеі для %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Вы анулявалі прывілеі для %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Пароль для %s пасьпяхова зьменены." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Выдаленьне %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "На выбраныя карыстальнікі для выдаленьня!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Перазагрузіць прывілеі" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Рэдагаваць прывілеі" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Ануляваць" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Экспарт" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Любы" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Прывілеі" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Прывілеі" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Карыстальнікі" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Выдаліць выбраных карыстальнікаў" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц " -"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " -"якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " -"вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Спэцыфічныя прывілеі калёнак" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Дадаць прывілеі на наступную базу" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх " -"літаральнага выкарыстаньня" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Дадаць прывілеі на наступную табліцу" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... пакінуць старога." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... выдаліць старога з табліцы карыстальнікаў." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць " -"прывілеі." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "База дадзеных для карыстальніка" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" -"Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Праверыць прывілеі для базы "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Карыстальнікі з правамі доступу да "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "глябальны" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "спэцыфічны для базы дадзеных" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "шаблён" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Выгляд %s быў выдалены" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -12344,41 +12392,41 @@ msgstr "" msgid "Wrong data" msgstr "Базы дадзеных адсутнічаюць" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ці сапраўды вы жадаеце " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "У выглядзе PHP-коду" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Праверыць SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-вынік" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Створаны" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Метка" @@ -14233,6 +14281,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "максымум адначасовых злучэньняў" +#~ msgid "PDF" +#~ msgstr "PDF" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/be@latin.po b/po/be@latin.po index 44ed8c9189..ddca18ca55 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: belarusian_latin \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Pakazać usie" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Pošuk" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Pošuk" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Paniesłasia" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza dadzienych %1$s stvoranaja." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " @@ -119,17 +122,17 @@ msgstr "Kamentar da bazy dadzienych: " msgid "Table comments" msgstr "Kamentar da tablicy" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Nazvy kalonak" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Typ" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Nul" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Nul" msgid "Default" msgstr "Pa zmoŭčańni" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Źviazanaja z" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Kamentary" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nie" @@ -243,19 +249,22 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Tak" @@ -263,8 +272,8 @@ msgstr "Tak" msgid "View dump (schema) of database" msgstr "Prahladzieć damp (schiemu) bazy dadzienych" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "U bazie dadzienych tablic nia vyjaŭlena." @@ -280,80 +289,80 @@ msgstr "Źniać usie adznaki" msgid "The database name is empty!" msgstr "Imia bazy dadzienych nie paznačanaje!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Baza dadzienych %s była vydalenaja." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Tolki strukturu" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Strukturu i dadzienyja" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Tolki dadzienyja" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "vykanać CREATE DATABASE pierad kapijavańniem" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Dadać %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Dadać abmiežavańni" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Pierajści da skapijavanaj bazy dadzienych" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -363,7 +372,7 @@ msgstr "Pierajści da skapijavanaj bazy dadzienych" msgid "Collation" msgstr "Supastaŭleńnie" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -375,7 +384,7 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -387,16 +396,18 @@ msgstr "Relacyjnaja schiema" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tablica" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Radki" @@ -406,13 +417,13 @@ msgid "Size" msgstr "Pamier" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "vykarystoŭvajecca" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -420,7 +431,7 @@ msgstr "Stvoranaja" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -428,7 +439,7 @@ msgstr "Apošniaje abnaŭleńnie" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -443,97 +454,16 @@ msgstr[0] "%s tablic(y)" msgstr[1] "%s tablic(y)" msgstr[2] "%s tablic(y)" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Vam nieabchodna vybrać prynamsi adnu kalonku dla adlustravańnia" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "pramy" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "advarotny" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Paradak" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Pakazać" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kryter" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Dadać/vydalić radok kryteru" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Dadać/vydalić kalonku kryteru" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Abnavić zapyt" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Vykarystoŭvać tablicy" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Abo" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "I" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ustavić" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Vydalić" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Źmianić" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Pierajści da skapijavanaj tablicy" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-zapyt da BD %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Vykanać zapyt" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -576,7 +506,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -608,20 +538,21 @@ msgstr "" "servery." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Z adznačanymi:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Adznačyć usio" @@ -629,31 +560,32 @@ msgstr "Adznačyć usio" msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspart" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Ačyścić" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -701,17 +633,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Baza dadzienych" @@ -729,18 +662,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Stan" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Dziejańnie" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Pakazać" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -783,22 +724,22 @@ msgstr "" msgid "Bad type!" msgstr "Typ zapytu" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Dadzienyja vybranaha typu ekspartavańnia musiać być zazavanymi ŭ fajł!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Dadać novaje pole" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Niedastatkova miesca dla zachavańnia ŭ fajł %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -806,12 +747,12 @@ msgstr "" "Fajł %s užo isnuje na servery, źmianicie imia fajła abo praviercie opcyju " "pierazapisu." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web-server nia maje dazvołu dla zachavańnia ŭ fajł %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp zachavany ŭ fajł %s." @@ -836,7 +777,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -917,7 +858,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -927,20 +868,20 @@ msgstr "" "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " "abmiežavańnie." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Pakazvajučy zakładku" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Zakładka była vydalenaja." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Niemahčyma pračytać fajł" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -951,7 +892,7 @@ msgstr "" "(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -961,27 +902,27 @@ msgstr "" "zahružany, albo pamier fajła pieravysiŭ maksymalny pamier, vyznačany " "kanfihuracyjaj PHP. Hł. FAQ 1.16." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s stvoranaja" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Impartravańnie paśpiachova zavieršanaje, vykanana %d zapytaŭ." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -989,7 +930,7 @@ msgstr "" "Vyjšaŭ dazvoleny čas vykanańnia skrypta. Kali vy chočacie zavieršyć " "impartavańnie, kali łaska, zahruzicie fajł znoŭ i impartavańnie ŭznavicca." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -998,8 +939,8 @@ msgstr "" "Heta zvyčajna značyć, što phpMyAdmin nia zmoža skončyć hetaje impartavańnia, " "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -1014,7 +955,7 @@ msgstr "Nazad" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Dla raboty phpMyAdmin patrebny braŭzer z padtrymkaj frejmaŭ." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Kamandy \"DROP DATABASE\" adklučanyja." @@ -1024,7 +965,7 @@ msgstr "Kamandy \"DROP DATABASE\" adklučanyja." msgid "Do you really want to execute \"%s\"?" msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!" @@ -1095,16 +1036,20 @@ msgstr "Pustoje imia chostu!" msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1130,9 +1075,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1411,12 +1356,13 @@ msgstr "Źviać ź sietkaj" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Nijakaja" @@ -1607,10 +1553,10 @@ msgid "Explain output" msgstr "Tłumačyć SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Čas" @@ -1970,7 +1916,7 @@ msgstr "U vyhladzie SQL-zapytu" msgid "No rows selected" msgstr "Nivodny radok nia vybrany" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Źmianić" @@ -1979,8 +1925,8 @@ msgstr "Źmianić" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d nie źjaŭlajecca karektnym numaram radka." @@ -2063,7 +2009,7 @@ msgstr "Pamier ukazalnika na dadzienyja" msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Skapijavać" @@ -2610,14 +2556,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Pamyłka" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-zapyt" @@ -2628,7 +2574,7 @@ msgstr "SQL-zapyt" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2657,6 +2603,10 @@ msgstr "Biez PHP-kodu" msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Vykanać zapyt" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2683,7 +2633,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Mašyny" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Prafilavańnie" @@ -2712,7 +2662,7 @@ msgstr "Pracedury" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2721,7 +2671,7 @@ msgstr "Pieršaja staronka" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2731,7 +2681,7 @@ msgstr "Papiaredniaja staronka" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2741,7 +2691,7 @@ msgstr "Nastupnaja staronka" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2766,16 +2716,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" @@ -2783,21 +2734,20 @@ msgstr "Struktura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Ustavić" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Prahlad" @@ -2819,21 +2769,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Druk" @@ -2850,6 +2800,78 @@ msgstr "" msgid "Font size" msgstr "Pamier šryfta" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "pramy" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "advarotny" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Paradak" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kryter" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Dadać/vydalić radok kryteru" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Dadać/vydalić kalonku kryteru" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Abnavić zapyt" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Vykarystoŭvać tablicy" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Abo" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "I" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ustavić" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Vydalić" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Źmianić" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-zapyt da BD %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "prynamsi adno z słovaŭ" @@ -2895,8 +2917,8 @@ msgstr[2] "%s supadzieńniaŭ u tablicy %s" msgid "Delete the matches for the %s table?" msgstr "Damp dadzienych tablicy" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2937,71 +2959,71 @@ msgstr "U tablicy(ach):" msgid "Inside column:" msgstr "Unutry pola:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Kolkaść paloŭ" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Pan" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "haryzantalna" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "haryzantalna (paviernutyja zahałoŭki)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertykalna" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Vykanać zapyt z zakładak" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sartavać pa klučy" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -3014,115 +3036,115 @@ msgstr "Sartavać pa klučy" msgid "Options" msgstr "Nałady" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Častkovyja teksty" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Poŭnyja teksty" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Kluč suviazi" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Adlustravanaje pole suviazi" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Spynić" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "pa zapytu" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Pakazanyja zapisy" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "usiaho" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Versija dla druku (z usim tekstam)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Pakazać PDF-schiemu" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Suviaź nia znojdzienaja" @@ -3249,8 +3271,8 @@ msgstr "" "ich, mahčyma, možna vydalić." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Bazy dadzienych" @@ -3266,11 +3288,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Tryhiery" @@ -3288,9 +3310,9 @@ msgstr "Baza dadzienych — pustaja!" msgid "Query" msgstr "Zapyt zhodna prykładu" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Pryvilei" @@ -3299,7 +3321,7 @@ msgid "Routines" msgstr "Pracedury" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Padziei" @@ -3407,54 +3429,54 @@ msgstr "%s była adklučanaja dla retaha MySQL-servera." msgid "This MySQL server does not support the %s storage engine." msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Pakazać stan zaležnych serveraŭ" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nia znojdzienaja!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Niapravilnaja baza dadzienych" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Niekarektnaje imia tablicy" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tablica %s była pierajmienavanaja ŭ %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3463,7 +3485,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcyja" @@ -3475,7 +3497,7 @@ msgstr "Aperatar" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3520,7 +3542,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" @@ -3883,7 +3905,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tablic" @@ -3894,9 +3916,10 @@ msgstr "Tablic" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Dadzienyja" @@ -4028,32 +4051,32 @@ msgid "Disabled" msgstr "Adklučana" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4477,13 +4500,13 @@ msgstr "Ścisk" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4512,7 +4535,6 @@ msgstr "Pali ekranujucca" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Zamianiać NULL na" @@ -4556,25 +4578,24 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s tablic(y)" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Uklučyć zahałovak tablicy" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Zahałovak tablicy" @@ -4583,14 +4604,14 @@ msgid "Continued table caption" msgstr "Praciahnuty zahałovak tablicy" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Kluč mietki" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-typ" @@ -4631,7 +4652,7 @@ msgid "SQL compatibility mode" msgstr "Režym sumiaščalnaści SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4644,7 +4665,7 @@ msgid "Use delayed inserts" msgstr "Vykarystoŭvać adkładzienyja ŭstaŭki" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Adklučyć pravierku źniešnich klučoŭ" @@ -4661,7 +4682,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maksymalnaja daŭžynia stvoranaha zapytu" @@ -4672,7 +4693,7 @@ msgid "Export type" msgstr "Ekspart" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Ekspartavać za adnu tranzakcyju" @@ -4727,7 +4748,6 @@ msgstr "Dziejańni z vynikami zapytaŭ" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4788,7 +4808,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -5023,7 +5042,6 @@ msgid "Customize text input fields" msgstr "Vykarystoŭvać tekstavaje pole" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Tekst Texy!" @@ -6138,9 +6156,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Parol" @@ -6314,7 +6334,6 @@ msgstr "CSV z vykarystańniem LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Specyfikacyja Open Document" @@ -6340,19 +6359,16 @@ msgstr "Nałady ekspartu bazy dadzienych" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV dla dadzienych MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Tekst Open Document" @@ -6408,7 +6424,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6416,21 +6432,21 @@ msgid "" "configured)." msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server nie adkazvaje" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Padrabiaźniej..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6443,13 +6459,15 @@ msgid "Change password" msgstr "Źmianić parol" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Biez parola" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Paćvierdžańnie" @@ -6474,8 +6492,9 @@ msgstr "Stvaryć novuju bazu dadzienych" msgid "Create" msgstr "Stvaryć" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Biez pryvilejaŭ" @@ -6485,12 +6504,12 @@ msgid "Create table" msgstr "Stvaryć tablicu" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nazva" @@ -6664,7 +6683,7 @@ msgid "View output as text" msgstr "Zachavać jak fajł" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7196,53 +7215,53 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Niama tablic" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tolki strukturu" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7316,11 +7335,11 @@ msgstr "" "Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia " "abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" @@ -7574,7 +7593,7 @@ msgstr "Dakumentacyja pa phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7693,84 +7712,84 @@ msgstr "Dziejny kluč aŭtentyfikacyi nie padklučany" msgid "Authenticating..." msgstr "Aŭtentyfikacyja..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Radki padzielenyja" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Pali ŭziatyja ŭ" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Pali ekranujucca" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Radki padzielenyja" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Zamianiać NULL na" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Versija Excel" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy #| msgid "Database export options" msgid "Data dump options" msgstr "Nałady ekspartu bazy dadzienych" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Damp dadzienych tablicy" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Padzieja" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7778,24 +7797,24 @@ msgstr "Padzieja" msgid "Definition" msgstr "Apisańnie" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struktura tablicy" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktura dla prahladu" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Zamianialnaja struktura dla prahladu" @@ -7815,263 +7834,254 @@ msgstr "(praciah)" msgid "Structure of table @TABLE@" msgstr "Struktura tablicy __TABLE__" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Opcyi pieraŭtvareńnia" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Zahałovak tablicy" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Pakazvać kamentary kalonak" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Dastupnyja MIME-typy" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Chost" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Čas stvareńnia" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versija servera" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Versija PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Invalid table name" msgid "Export table names" msgstr "Niekarektnaje imia tablicy" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "haryzantalna (paviernutyja zahałoŭki)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Hieneruje spravazdaču z dadzienymi asobnaj tablicy)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Zahałovak spravazdačy" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Dadać pryvatny kamentar u zahałovak (\\n padzialaje radki)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Vyrazy" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Vyrazy" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Opcyi pieraŭtvareńnia" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Pracedury" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funkcyi" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Abmiežavańni dla tablicy" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME-typy tablicy" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "Suviazi ŭ tablicy" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Dazvalaje čytać dadzienyja." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Vyhlad" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -8141,6 +8151,10 @@ msgstr "Nazvy kalonak" msgid "This plugin does not support compressed imports!" msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -8199,6 +8213,10 @@ msgstr "Režym sumiaščalnaści SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8471,11 +8489,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "niama apisańnia" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Źniać usie adznaki" @@ -8495,9 +8514,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Imia karystalnika" @@ -8532,34 +8552,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Luby karystalnik" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Luby chost" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lakalny" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Hety chost" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Vykarystoŭvać tablicu chostaŭ" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8573,7 +8602,7 @@ msgstr "Zgieneravać parol" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8613,8 +8642,8 @@ msgid "Edit event" msgstr "Padzieja" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8703,7 +8732,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8852,7 +8882,13 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8860,19 +8896,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -9035,29 +9065,29 @@ msgstr "U bazie dadzienych tablic nia vyjaŭlena." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tablicy \"%s\" nie isnuje!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Kali łaska, skanfihurujcie kaardynaty dla tablicy %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9209,6 +9239,469 @@ msgstr "Nieviadomaja mova: %1$s." msgid "Current Server" msgstr "Server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Biez pryvilejaŭ." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Uklučaje ŭsie pryvilei, aproč GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Dazvalaje čytać dadzienyja." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Dazvalaje źmianiać dadzienyja." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Dazvalaje vydalać dadzienyja." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Dazvalaje vydalać bazy dadzienych i tablicy." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "Dazvalaje pierazahružać nałady servera i ačyščać keš servera." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Dazvalaje spyniać server." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" +"Dazvalaje impartavać dadzienyja z fajłaŭ i ekspartavać dadzienyja ŭ fajły." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nie pracuje ŭ hetaj versii MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Dazvalaje stvarać i vydalać indeksy." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Dazvalaje źmianiać strukturu isnych tablic." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Dazvalaje padłučeńnie, navat kali dasiahnuty maksymalny lik padłučeńniaŭ; " +"Patrabujecca dla bolšaści administratyŭnych aperacyjaŭ, takich jak " +"vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Dazvalaje stvarać časovyja tablicy." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Nieabchodna dla replikacyi slaves." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Dazvalaje stvarać novyja prahlady." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" +"Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Nijakaja" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Abmiežavańni resursaŭ" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavańnie." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Abmiažoŭvaje kolkaść zapytaŭ, jakija karystalnik moža adpravić na server na " +"praciahu hadziny." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Abmiažoŭvaje kolkaść kamandaŭ, źmianiajučych lubuju tablicu abo bazu " +"dadzienych, jakija karystalnik moža vykanać na praciahu hadziny." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Abmiažoŭvaje kolkaść novych złučeńniaŭ, jakija karystalnik moža adkryć na " +"praciahu hadziny." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Pryvilei, specyfičnyja dla tablicy" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administravańnie" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Hlabalnyja pryvilei" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Specyfičnyja pryvilei bazy dadzienych" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Dazvalaje stvarać novyja tablicy." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Dazvalaje vydalać tablicy." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Dazvalaje dadavać karystalnikaŭ i pryvilei biez pierazahruzki tablic " +"pryvilejaŭ." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Infarmacyja pra ŭvachod" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Nie źmianiać parol" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Parol dla %s paśpiachova źmienieny." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Vy anulavali pryvilei dla %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Baza dadzienych dla karystalnika" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" +"Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" +"Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Karystalniki z pravami dostupu da \"%s\"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Karystalnik" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Grant" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Vyhlad %s byŭ vydaleny" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Luby" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "hlabalny" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "specyfičny dla bazy dadzienych" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "šablon" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Nie znojdzieny karystalnik." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Redagavać pryvilei" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Anulavać" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Ekspart" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... pakinuć staroha." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... vydalić staroha z tablicy karystalnikaŭ." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Specyfičnyja pryvilei kalonak" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Dadać pryvilei na nastupnuju bazu" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Symbali padstanoŭki % i _ musiać być ekranavanymi symbalem \\ dla ich " +"litaralnaha vykarystańnia" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Dadać pryvilei na nastupnuju tablicu" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Vydalić vybranych karystalnikaŭ" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Na vybranyja karystalniki dla vydaleńnia!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Pierazahruzić pryvilei" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Vy źmianili pryvilei dla %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Pryvilei" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Pryvilei" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Karystalniki" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic " +"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, " +"jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " +"vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Byŭ dadadzieny novy karystalnik." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -9257,11 +9750,11 @@ msgstr "" msgid "Columns" msgstr "Nazvy kalonak" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" @@ -9570,12 +10063,6 @@ msgstr "Versija servera" msgid "Protocol version" msgstr "Versija pratakołu" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Karystalnik" - #: main.php:217 #, fuzzy #| msgid "Rename database to" @@ -10138,459 +10625,20 @@ msgstr "" msgid "disabled" msgstr "Adklučana" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Uklučaje ŭsie pryvilei, aproč GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Dazvalaje źmianiać strukturu isnych tablic." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Dazvalaje stvarać novyja tablicy." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Dazvalaje stvarać časovyja tablicy." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" -"Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Dazvalaje stvarać novyja prahlady." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Dazvalaje vydalać dadzienyja." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Dazvalaje vydalać bazy dadzienych i tablicy." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Dazvalaje vydalać tablicy." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" -"Dazvalaje impartavać dadzienyja z fajłaŭ i ekspartavać dadzienyja ŭ fajły." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Dazvalaje dadavać karystalnikaŭ i pryvilei biez pierazahruzki tablic " -"pryvilejaŭ." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Dazvalaje stvarać i vydalać indeksy." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Abmiažoŭvaje kolkaść novych złučeńniaŭ, jakija karystalnik moža adkryć na " -"praciahu hadziny." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Abmiažoŭvaje kolkaść zapytaŭ, jakija karystalnik moža adpravić na server na " -"praciahu hadziny." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Abmiažoŭvaje kolkaść kamandaŭ, źmianiajučych lubuju tablicu abo bazu " -"dadzienych, jakija karystalnik moža vykanać na praciahu hadziny." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nie pracuje ŭ hetaj versii MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "Dazvalaje pierazahružać nałady servera i ačyščać keš servera." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Nieabchodna dla replikacyi slaves." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Dazvalaje čytać dadzienyja." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Dazvalaje spyniać server." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Dazvalaje padłučeńnie, navat kali dasiahnuty maksymalny lik padłučeńniaŭ; " -"Patrabujecca dla bolšaści administratyŭnych aperacyjaŭ, takich jak " -"vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Dazvalaje źmianiać dadzienyja." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Biez pryvilejaŭ." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Nijakaja" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Pryvilei, specyfičnyja dla tablicy" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administravańnie" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Hlabalnyja pryvilei" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Specyfičnyja pryvilei bazy dadzienych" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Abmiežavańni resursaŭ" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavańnie." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Infarmacyja pra ŭvachod" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Nie źmianiać parol" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Nie znojdzieny karystalnik." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Karystalnik %s užo isnuje!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Byŭ dadadzieny novy karystalnik." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Vy źmianili pryvilei dla %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Vy anulavali pryvilei dla %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Parol dla %s paśpiachova źmienieny." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Vydaleńnie %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Na vybranyja karystalniki dla vydaleńnia!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Pierazahruzić pryvilei" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Redagavać pryvilei" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Anulavać" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Ekspart" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Luby" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Pryvilei" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Pryvilei" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Karystalniki" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Vydalić vybranych karystalnikaŭ" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic " -"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, " -"jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " -"vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Specyfičnyja pryvilei kalonak" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Dadać pryvilei na nastupnuju bazu" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Symbali padstanoŭki % i _ musiać być ekranavanymi symbalem \\ dla ich " -"litaralnaha vykarystańnia" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Dadać pryvilei na nastupnuju tablicu" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... pakinuć staroha." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... vydalić staroha z tablicy karystalnikaŭ." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Baza dadzienych dla karystalnika" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" -"Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" -"Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Karystalniki z pravami dostupu da \"%s\"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "hlabalny" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "specyfičny dla bazy dadzienych" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "šablon" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Vyhlad %s byŭ vydaleny" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -12326,41 +12374,41 @@ msgstr "" msgid "Wrong data" msgstr "Bazy dadzienych adsutničajuć" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ci sapraŭdy vy žadajecie " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "U vyhladzie PHP-kodu" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pravieryć SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-vynik" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Stvorany" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Mietka" @@ -14224,6 +14272,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maksymum adnačasovych złučeńniaŭ" +#~ msgid "PDF" +#~ msgstr "PDF" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/bg.po b/po/bg.po index 9cdd573983..794c6da1ee 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-06-01 22:03+0200\n" "Last-Translator: Стоян Димитров \n" "Language-Team: bulgarian \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Показване на всички" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Търсене" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Търсене" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Изпълнение" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "БД %1$s беше създадена." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Коментар към БД: " @@ -120,17 +123,17 @@ msgstr "Коментар към БД: " msgid "Table comments" msgstr "Коментари към таблицата" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Kолона" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Тип" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Празно" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Празно" msgid "Default" msgstr "По подразбиране" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Свързана към" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Коментари" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Не" @@ -242,19 +248,22 @@ msgstr "Не" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Да" @@ -262,8 +271,8 @@ msgstr "Да" msgid "View dump (schema) of database" msgstr "Преглед на схема (дъмп) на БД" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "В БД няма таблици." @@ -279,74 +288,74 @@ msgstr "Размаркиране всички" msgid "The database name is empty!" msgstr "Името на БД е празно!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "БД %1$s беше преименувана на %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "БД %1$s беше копирана като %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Преименуване БД на" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Изтриване БД" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "БД %s беше изтрита." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Изтриване на БД (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Копиране на БД в" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Само структурата" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Структурата и данните" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Само данните" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Изпълняване на CREATE DATABASE преди копирането" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Добавяне на %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне AUTO_INCREMENT стойност" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Добавяне ограничения" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Показване на копираната БД" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Показване на копираната БД" msgid "Collation" msgstr "Колация" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "Хранилището за конфигурацията на phpMyAdmin е деактивирано. За да разберете " "защо натиснете %sтук%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Редакция или експорт на релационна схема" @@ -375,16 +384,18 @@ msgstr "Редакция или експорт на релационна схе #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Таблица" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Редове" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Размер" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "ползва се в момента" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Дата на създаване" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Последно обновление" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -429,92 +440,15 @@ msgid_plural "%s tables" msgstr[0] "%s таблица" msgstr[1] "%s таблици" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Изберете поне една колона за показване" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Възходящо" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Низходящо" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Сортиране" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Показване" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Критерии" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Добавяне/изтриване ред по критерий" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Добавяне/изтриване колони" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Допълване заявка" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Използване таблиците" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Или" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "И" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Вмъкни" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Изтрий" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Промени" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Превключване към %sвизуален строител%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL заявка към БД %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Изпълни заявката" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -555,7 +489,7 @@ msgstr "Проследяването е активно." msgid "Tracking is not active." msgstr "Проследяването е неактивно." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -583,20 +517,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Когато има отметка:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Маркиране всички" @@ -604,31 +539,32 @@ msgstr "Маркиране всички" msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Изчистване" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -672,17 +608,18 @@ msgstr "Следени таблици" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "БД" @@ -700,18 +637,26 @@ msgstr "Съвременен" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Състояние" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Действие" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Показване" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Изтриване на проследената информация за таблицата" @@ -752,20 +697,20 @@ msgstr "Дневник БД" msgid "Bad type!" msgstr "Неправилен тип!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Избраният тип експорт трябва да бъде запазен като файл!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Грешни параметри!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недостатъчно свободно пространство за запазване на файла %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -773,12 +718,12 @@ msgstr "" "Файлът %s вече съществува на сървъра, сменете името на файла или включете " "опцията за препокриване." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web сървърът няма права за писане върху файла %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Схемата беше запазена във файл %s." @@ -801,7 +746,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Геометрия" @@ -872,7 +817,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -881,20 +826,20 @@ msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sдокументацията%s за да намерите начин да избегнете това ограничение." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Показване на белязка" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Белязката беше изтрита." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Файлът не може да бъде прочетен" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -904,7 +849,7 @@ msgstr "" "Опитвате да заредите файл с неподдържана компресия (%s). Или поддръжката ѝ " "не е реализирана, или е забранена от конфигурацията." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -914,30 +859,30 @@ msgstr "" "по-голям от разрешеното в конфигурацията на PHP. Вижте [a@./Documentation." "html#faq1_16@Documentation]ЧЗВ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Не може да бъде преобразуван знаковият набор на файла без библиотека за " "преобразуване на знакови набори" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Не могат да бъдат заредени разширенията за импорт, моля проверете " "инсталацията!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Белязка %s беше създадена" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импортирането приключи успешно, бяха изпълнени %d заявки." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -945,7 +890,7 @@ msgstr "" "Времето за изчакване на скрипта изтече, ако искате да завършите импорта го " "пуснете отново и той ще си продължи." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -954,8 +899,8 @@ msgstr "" "обикновено означава, че phpMyAdmin няма да бъде в състояние да завърши този " "импорт, освен ако не бъдат увеличени времевите ограничения в PHP." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -972,7 +917,7 @@ msgstr "" "phpMyAdmin е по-дружелюбен ако използвате браузър с поддържка на рамки." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" заявката е забранена." @@ -981,7 +926,7 @@ msgstr "\"DROP DATABASE\" заявката е забранена." msgid "Do you really want to execute \"%s\"?" msgstr "Наистина ли искате да изпълните \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Вие ще УНИЩОЖИТЕ цяла БД!" @@ -1039,16 +984,20 @@ msgstr "Името на хоста е празно!" msgid "The user name is empty!" msgstr "Потребителското име е празно!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Паролата е празна!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Нов потребител" @@ -1068,9 +1017,9 @@ msgstr "Затваряне" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1316,12 +1265,13 @@ msgstr "Добавяне диаграма към мрежата" msgid "Please add at least one variable to the series" msgstr "Моля добавете поне една променлива към сериите" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Няма" @@ -1504,10 +1454,10 @@ msgid "Explain output" msgstr "Обяснение на изхода" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Време" @@ -1798,7 +1748,7 @@ msgstr "Показване формата за заявки" msgid "No rows selected" msgstr "Няма върнати редове" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Промяна" @@ -1807,8 +1757,8 @@ msgstr "Промяна" msgid "Query execution time" msgstr "Време за изпълнение на заявката" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d не е валиден номер на ред." @@ -1884,7 +1834,7 @@ msgstr "" msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Копиране" @@ -2371,14 +2321,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Грешка" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL заявка" @@ -2389,7 +2339,7 @@ msgstr "SQL заявка" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2418,6 +2368,10 @@ msgstr "Без PHP код" msgid "Create PHP Code" msgstr "Създаване на PHP код" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Изпълни заявката" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2442,7 +2396,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "На място" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Профилиране" @@ -2469,14 +2423,14 @@ msgstr "Липсващ параметър:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Начало" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2484,7 +2438,7 @@ msgstr "Предна" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2492,7 +2446,7 @@ msgstr "Следваща" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Последна" @@ -2513,16 +2467,17 @@ msgstr "Щракване за превключване" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" @@ -2530,21 +2485,20 @@ msgstr "Структура" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Вмъкване" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Прелистване" @@ -2565,21 +2519,21 @@ msgstr "Разглеждане на компютъра:" msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Папката, която сте указали за качване е недостъпна" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Няма файлве за качване" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Изпълнение" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Печат" @@ -2598,6 +2552,74 @@ msgstr "" msgid "Font size" msgstr "Размер шрифт" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Възходящо" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Низходящо" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Сортиране" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Критерии" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Добавяне/изтриване ред по критерий" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Добавяне/изтриване колони" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Допълване заявка" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Използване таблиците" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Или" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "И" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Вмъкни" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Изтрий" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Промени" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL заявка към БД %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "поне една от думите" @@ -2640,8 +2662,8 @@ msgstr[1] "%1$s съвпадения в таблица %2$s" msgid "Delete the matches for the %s table?" msgstr "Изтриване на съвпаденията от таблицата %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2676,64 +2698,64 @@ msgstr "В таблици:" msgid "Inside column:" msgstr "В колона:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Съхраняване на редактираните данни" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Възстановяване на подредбата на колоните" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Начален ред" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Брой редове" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Режим" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "хоризонтален" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "хоризонтален (обърнати хедъри)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "вертикален" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Заглавки всеки %s реда" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Сортиране по ключ" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2746,60 +2768,60 @@ msgstr "Сортиране по ключ" msgid "Options" msgstr "Настройки" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Частични текстове" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Пълни текстове" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Показване на двоичните данни" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Показване на BLOB-данните" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Показване на двоичните данни в шестнадесетичен вид" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Без трансформация от браузъра" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Добре познат текст" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Добре позната двоична стойност" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Редът беше изтрит" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Спиране" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2807,44 +2829,44 @@ msgstr "" "Може да има приблизителна стойност. Виж [a@./Documentation." "html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "в зявката" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Показване на записи" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "общо" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Операции с резултата от заявката" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Преглед за печат (с пълните текстове)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Диаграма" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Визуализиране на GIS данни" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Създаване на изглед" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Връзките не са намерени" @@ -2967,8 +2989,8 @@ msgstr "" "бъде премахнат." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "БД" @@ -2984,11 +3006,11 @@ msgid "Tracking" msgstr "Проследяване" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Тригери" @@ -3006,9 +3028,9 @@ msgstr "БД изглежда празна!" msgid "Query" msgstr "Заявка по пример" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Права" @@ -3017,7 +3039,7 @@ msgid "Routines" msgstr "Процедури" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Събития" @@ -3113,50 +3135,50 @@ msgstr "%s е забранено за този MySQL сървър." msgid "This MySQL server does not support the %s storage engine." msgstr "Този MySQL сървър не поддържа хранилището на данни %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "неизвестно състояние на таблица: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "БД-източник `%s` не е намерена!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Целевата БД `%s` не е намерена!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Невалидна БД" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Невалидно име на таблица" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Грешка при преименуване на таблица %1$s в %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблица %1$s беше преименувана на %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Таблицата с визуалните настройки не може да бъде запазена" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3165,7 +3187,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функция" @@ -3177,7 +3199,7 @@ msgstr "Оператор" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3216,7 +3238,7 @@ msgid "Maximum rows to plot" msgstr "Максимален брой редове за изчертаване" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Разглеждане на външни стойности" @@ -3571,7 +3593,7 @@ msgstr "споделен" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Таблици" @@ -3582,9 +3604,10 @@ msgstr "Таблици" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Данни" @@ -3702,32 +3725,32 @@ msgid "Disabled" msgstr "Забрано" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "структура" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "данни" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "структура и данни" @@ -4153,13 +4176,13 @@ msgstr "Компресия" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Поставяне имената на полетата в първи ред" @@ -4182,7 +4205,6 @@ msgstr "Колоните са избегнати с" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Заменяй NULL с" @@ -4222,23 +4244,22 @@ msgstr "Шаблон за име на таблица" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Схема на таблица" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Включване на заглавие на таблицата" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Заглавие на таблицата" @@ -4247,14 +4268,14 @@ msgid "Continued table caption" msgstr "Продължение на заглавието на таблицата" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Етикет на ключа" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME тип" @@ -4291,7 +4312,7 @@ msgid "SQL compatibility mode" msgstr "Режим на съвместимост на SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Опции за Създаване таблица:" @@ -4304,7 +4325,7 @@ msgid "Use delayed inserts" msgstr "Използване на отложени вмъквания" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Забрана на проверките за външен ключ" @@ -4321,7 +4342,7 @@ msgid "Syntax to use when inserting data" msgstr "Използван синтаксис при вмъкване на данни" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Максимална дължина на създадената заявка" @@ -4330,7 +4351,7 @@ msgid "Export type" msgstr "Тип експорт" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Изолиране на експорта в транзакция" @@ -4383,7 +4404,6 @@ msgstr "Персонализиране настройките по подраз #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4443,7 +4463,6 @@ msgstr "" "Настройки на директориите за импорт и експорт, и на опциите за компресиране" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4665,7 +4684,6 @@ msgid "Customize text input fields" msgstr "Персонализиране на текстовите полета" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! текст" @@ -5774,9 +5792,11 @@ msgstr "Изисква SQL валидаторът да бъде включван #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Парола" @@ -5944,7 +5964,6 @@ msgstr "CSV с LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" @@ -5966,19 +5985,16 @@ msgstr "Опции за експорт на БД" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV за MS Excel данни" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Text" @@ -6036,7 +6052,7 @@ msgstr "Разширението %s липсва. Проверете конфи msgid "possible deep recursion attack" msgstr "възможна атака чрез дълбока рекурсия" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6044,19 +6060,19 @@ msgstr "" "Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран " "правилно)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Сървърът не отговаря." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Проверете правата на папката, съдържаща БД." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Подробности..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6067,13 +6083,15 @@ msgid "Change password" msgstr "Смяна на паролата" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Без парола" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Отново" @@ -6094,8 +6112,9 @@ msgstr "Създаване БД" msgid "Create" msgstr "Създаване" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Без права" @@ -6105,12 +6124,12 @@ msgid "Create table" msgstr "Създаване таблица" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Име" @@ -6246,7 +6265,7 @@ msgid "View output as text" msgstr "Показване на изхода като текст" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Формат:" @@ -6698,50 +6717,50 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Към БД: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Редактиране настройките на %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Към таблица: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Структурата на %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6812,11 +6831,11 @@ msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7062,7 +7081,7 @@ msgstr "phpMyAdmin документация" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Този формат няма опции" @@ -7175,93 +7194,93 @@ msgstr "" msgid "Authenticating..." msgstr "Удостоверяване..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Колоните са разделени с:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Колоните са оградени от:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Колоните са избегнати с:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Редовете завършват с:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Замяна NULL с:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel версия:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Ссхема на данните от таблица" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Действие" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Описание" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Структура на таблица" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7277,94 +7296,83 @@ msgstr "(продължение)" msgid "Structure of table @TABLE@" msgstr "Структура на таблица @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Заглавие на таблицата (продължение)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Показване връзките на външен ключ" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Показване коментари" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Показване MIME типове" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Хост" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Време на генериране" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Версия на сървъра" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Версия на PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Експорт имена на таблици" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Експортиране заглавки на таблици" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Генерира доклад съдържащ данните в определена таблица)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Заглавие на доклада:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP масив" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7372,145 +7380,147 @@ msgstr "" # Оправя се само с редакция на файла и добавяне на избягващ знак '\' преди # '\n'. -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Добавяне на коментар в заглавката (\\n нов ред):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Добавяне на израз %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Добавяне на заявления:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Опции на трансформацията" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Процедури" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Функции" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Ограничения за таблица" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВЕ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Грешка при четене на данни:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Изглед" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7577,6 +7587,10 @@ msgstr "Име на колона" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7630,6 +7644,10 @@ msgstr "Режим на съвместимост на SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7855,11 +7873,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "няма описание" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Отмаркиране всички" @@ -7879,9 +7898,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Потребителско име" @@ -7918,34 +7938,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Добавяне на потребител за репликация като подчинен" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Всеки потребител" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "От текстовото поле" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Всеки хост" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Този Хост" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "От таблица Host" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7959,7 +7988,7 @@ msgstr "Генериране на парола" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7995,8 +8024,8 @@ msgid "Edit event" msgstr "Редакция събитие" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Грешка при обработка на заявката" @@ -8072,7 +8101,8 @@ msgstr "Трябва да дадете валиден тип на събитие msgid "You must provide an event definition." msgstr "Трябва да дадете дефиниция на събитието." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Нов" @@ -8206,25 +8236,25 @@ msgstr "Трябва да дадете валиден тип на данните msgid "You must provide a routine definition." msgstr "Трябва да дадете дефиниция на процедурата." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Резултати от изпълнението на процедура %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d ред променен от последният израз на съхранената процедура" msgstr[1] "%d реда променени от последният израз на съхранената процедура" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Резултати от изпълнението на процедура %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Изпълнение на процедура" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Параметри на процедурата" @@ -8353,28 +8383,28 @@ msgstr "Няма събитие с име %1$s в БД %2$s" msgid "There are no events to display." msgstr "Няма събития." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Таблицата %s не съществува!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Моля конфигурирайте координатите за таблица %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Схема на БД %s - страница %s" @@ -8511,6 +8541,452 @@ msgstr "Непознат език: %1$s." msgid "Current Server" msgstr "Текущ сървър" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Няма права." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Дава всички права освен GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Позволява четене на данни." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Позволява вмъкване и заменяне на данни." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Позволява промяна на данни." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Позволява изтриване на данни." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Позволява създаване на нови БД и таблици." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Позволява изтриване на БД и таблици." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Позволява презареждане на настройките и изчистване на буфера на сървъра." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Позволява спиране на сървъра." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Позволява импортиране на данни от и експортиране на данни във файлове." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Няма ефект в тази версия на MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Позволява създаване и изтриване на индекси." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Позволява промяна на структурата на съществуващи таблици." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Дава достъп до пълния списък на базите данни." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Позволява връзка, дори ако е достигнат максималния брой на връзки; Изисква " +"се за повечето административни операции, като установяване на глобални " +"променливи или спиране на нишка на други потребители." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Позволява създаването на временни таблици." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Позволява заключване на таблици за текущата нишка." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Нужно за replication slaves." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Дава правото на потребител да знае къде са slaves / masters." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Позволява създаване на изгледи." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Позволява създаване на събития за Диспечер на събитията" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Позволява създаване и изтриване на тригери" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Позволява изпълнение на SHOW CREATE VIEW заявки." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Позволява създаване на съхранени процедури." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Позволява промяна и изтриване на съхранени процедури." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Позволява създаване, изтриване и преименуване на потребителски сметки." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Позволява изпълнение на съхранени процедури." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Няма" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ресурсни ограничения" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Забележка: Установяването на тези опции с 0 (нула) премахва ограничението." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Ограничава броя на заявките, които потребителя може да изпрати към сървъра " +"на час." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Ограничава броя на командите, които променят някоя таблица или БД, които " +"даден потребител може да инициира за час." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Ограничава броя на новите връзки, които потребителя може да отвори за час." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Ограничава броя на едновременните връзки, които потребителят може да държи " +"отворени." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Специфични за таблицата права" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Забележка: Имената на правата на MySQL са показани на английски" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Администрация" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Глобални права" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Специфични за БД права" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Позволява създаване на нови таблици." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Позволява изтриване на таблици." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Позволява добавяне на потребители и права без презареждане на таблицата с " +"правата." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Информация за логване" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Да не се сменя паролата" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Паролата на %s беше променена успешно." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Вие отменихте правата на %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "БД за потребителя" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Създаване на БД със същото име и даване на пълни права" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Даване на всички привилегии на име с маска (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Даване на пълни права над БД "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Потребители с достъп до "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Потребител" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Дадени" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Потребител беше добавен." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Всеки" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "глобален" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "специфични за БД" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "знак за заместване" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Няма потребител." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Редакция" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Отменяне" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Експорт всички" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... запазване на стария." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... изтриване на стария от таблицата с потребители." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... отмяна на всички права от стария и след това изтриване." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... изтриване на стария от таблицата с потребители и след това презареждане " +"на правата." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Промяна информацията за вход / Копиране потребител" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Създаване нов потребител със същите права и ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Специфични за колоната права" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Добавяне на права към следната БД" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "sdgf" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Добавяне на права към следната таблица" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Отстраняване избраните потребители" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Отмяна на всички права на потребителите и след това изтриване." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Изтриване на БД, които имат имена като тези на потребителите." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Не за избрани потребители за изтриване!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Презареждане на правата" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Избраните потребители бяха изтрити успешно." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Вие променихте правата на %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Права на всички" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Права на %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Преглед потребители" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Забележка: phpMyAdmin взема потребителските права директно от таблицата с " +"правата на MySQL. Съдържанието на тази таблица може да се различава от " +"правата които използва сървъра ако към него са направени промени на ръка. В " +"този случай, трябва да %sпрезаредите правата%s преди да продължите." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Избраният потребител не беше открит в таблицата с права." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Вие добавихте нов потребител." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Изходна БД" @@ -8557,11 +9033,11 @@ msgstr "Изчистване" msgid "Columns" msgstr "Колони" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Отбелязване SQL заявката" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Всеки потребител да има достъп до тази белязка" @@ -8843,12 +9319,6 @@ msgstr "Версии" msgid "Protocol version" msgstr "Версия на протокола" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Потребител" - #: main.php:217 msgid "Server charset" msgstr "Знаков набор на сървъра" @@ -9351,442 +9821,20 @@ msgstr "Лиценз" msgid "disabled" msgstr "изключено" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Дава всички права освен GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Позволява промяна на структурата на съществуващи таблици." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Позволява промяна и изтриване на съхранени процедури." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Позволява създаване на нови БД и таблици." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Позволява създаване на съхранени процедури." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Позволява създаване на нови таблици." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Позволява създаването на временни таблици." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Позволява създаване, изтриване и преименуване на потребителски сметки." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Позволява създаване на изгледи." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Позволява изтриване на данни." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Позволява изтриване на БД и таблици." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Позволява изтриване на таблици." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Позволява създаване на събития за Диспечер на събитията" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Позволява изпълнение на съхранени процедури." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Позволява импортиране на данни от и експортиране на данни във файлове." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Позволява добавяне на потребители и права без презареждане на таблицата с " -"правата." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Позволява създаване и изтриване на индекси." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Позволява вмъкване и заменяне на данни." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Позволява заключване на таблици за текущата нишка." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Ограничава броя на новите връзки, които потребителя може да отвори за час." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Ограничава броя на заявките, които потребителя може да изпрати към сървъра " -"на час." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Ограничава броя на командите, които променят някоя таблица или БД, които " -"даден потребител може да инициира за час." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Ограничава броя на едновременните връзки, които потребителят може да държи " -"отворени." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Няма ефект в тази версия на MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Позволява презареждане на настройките и изчистване на буфера на сървъра." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Дава правото на потребител да знае къде са slaves / masters." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Нужно за replication slaves." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Позволява четене на данни." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Дава достъп до пълния списък на базите данни." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Позволява изпълнение на SHOW CREATE VIEW заявки." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Позволява спиране на сървъра." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Позволява връзка, дори ако е достигнат максималния брой на връзки; Изисква " -"се за повечето административни операции, като установяване на глобални " -"променливи или спиране на нишка на други потребители." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Позволява създаване и изтриване на тригери" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Позволява промяна на данни." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Няма права." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Няма" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Специфични за таблицата права" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Забележка: Имената на правата на MySQL са показани на английски" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Администрация" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Глобални права" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Специфични за БД права" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ресурсни ограничения" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Забележка: Установяването на тези опции с 0 (нула) премахва ограничението." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Информация за логване" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Да не се сменя паролата" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Няма потребител." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Потребител %s вече съществува!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Вие добавихте нов потребител." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Вие променихте правата на %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Вие отменихте правата на %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Паролата на %s беше променена успешно." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Изтриване на %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Не за избрани потребители за изтриване!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Презареждане на правата" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Избраните потребители бяха изтрити успешно." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Правата бяха презаредени успешно." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Редакция" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Отменяне" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Експорт всички" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Всеки" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Права на всички" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Права на %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Преглед потребители" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Дадени" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Отстраняване избраните потребители" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Отмяна на всички права на потребителите и след това изтриване." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Изтриване на БД, които имат имена като тези на потребителите." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Забележка: phpMyAdmin взема потребителските права директно от таблицата с " -"правата на MySQL. Съдържанието на тази таблица може да се различава от " -"правата които използва сървъра ако към него са направени промени на ръка. В " -"този случай, трябва да %sпрезаредите правата%s преди да продължите." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Избраният потребител не беше открит в таблицата с права." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Специфични за колоната права" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Добавяне на права към следната БД" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "sdgf" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Добавяне на права към следната таблица" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Промяна информацията за вход / Копиране потребител" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Създаване нов потребител със същите права и ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... запазване на стария." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... изтриване на стария от таблицата с потребители." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... отмяна на всички права от стария и след това изтриване." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... изтриване на стария от таблицата с потребители и след това презареждане " -"на правата." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "БД за потребителя" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Създаване на БД със същото име и даване на пълни права" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Даване на всички привилегии на име с маска (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Даване на пълни права над БД "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Потребители с достъп до "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "глобален" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "специфични за БД" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "знак за заместване" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Потребител беше добавен." - #: server_replication.php:82 msgid "Unknown error" msgstr "Неизвестна грешка" @@ -11360,37 +11408,37 @@ msgstr "Ключът трябва да съдържа букви, цифри [em msgid "Wrong data" msgstr "Грешни данни" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Наистина ли искате да изпълните следната заявка?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Показване като PHP-код" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Валидиран SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL резултат" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Генерирано от" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Етикет" @@ -13146,6 +13194,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert e 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP масив" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/bn.po b/po/bn.po index 7e916fcdc2..86793fe6f3 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-03-27 16:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: bangla \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 0.8\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "সবগুলো দেখাও" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "খুঁজুন" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "খুঁজুন" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "যাও" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ" @@ -120,17 +123,17 @@ msgstr "ডাটাবেজ মন্তব্যসমূহঃ" msgid "Table comments" msgstr "টেবিলের মন্তব্য সমূহ" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "কলামের" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "ধরন" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "খালি" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "খালি" msgid "Default" msgstr "ডিফল্ট" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "সংযুক্তি হবে" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "মন্তব্যসমূহ" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "না" @@ -242,19 +248,22 @@ msgstr "না" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "হ্যাঁ" @@ -262,8 +271,8 @@ msgstr "হ্যাঁ" msgid "View dump (schema) of database" msgstr "ডাটাবেজ ওর (schema) ভান্ডারটি দেখা হোক" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।" @@ -279,76 +288,76 @@ msgstr "সবগুলো অনির্বাচিত হোক" msgid "The database name is empty!" msgstr "ডাটাবেজ এর নাম দেওয়া হয়নি" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s ডাটাবেজটির নাম পরিবর্তন করে %s নাম দেওয়া হয়েছে" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছে" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "ডাটাবেজ মূছে ফেল" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "ডাটাবেজটি ড্রপ কর (DROP) " -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "ডাটাবেজ কপি করঃ" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "শুধুই গঠনপ্রণালী" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "গঠনপ্রণালী এবং তথ্য" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "শুধু ডাটা" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "সংযুক্ত %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT এর মান সংযুক্ত করুন" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "constraints সংযুক্ত করুন" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তিত হবে" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -358,7 +367,7 @@ msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তি msgid "Collation" msgstr "Collation" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -367,7 +376,7 @@ msgstr "" "PhpMyAdmin কনফিগারেশন সংরক্ষণাগার নিষ্ক্রিয় করা হয়েছে। কারন খুঁজতে ক্লিক করুন %shere" "%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "সম্বন্ধযুক্ত স্কিমা" @@ -377,16 +386,18 @@ msgstr "সম্বন্ধযুক্ত স্কিমা" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "টেবিল" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Rows" @@ -396,13 +407,13 @@ msgid "Size" msgstr "আকার" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "in use" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -410,7 +421,7 @@ msgstr "Creation" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -418,7 +429,7 @@ msgstr "সর্বশেষ আপডেট" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,92 +442,15 @@ msgid_plural "%s tables" msgstr[0] "%s টেবিল(s)" msgstr[1] "%s টেবিলসমূহ(s)" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "আপনাকে প্রদর্শন করার জন্য কমপক্ষে একটি কলাম নির্দিষ্ট করতে হবে" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Ascending" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Descending" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "সাজাঁন" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "দেখান" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "ক্ষেত্র" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "নির্ণায়ক সারি যোগ /মুছুন" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "ফিল্ড কলামগুলি যোগ/মুছুন" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "টেবিল ব্যাবহারকারী" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "অথবা" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "এবং" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modify" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sদৃষ্টিলব্ধ নির্মাতা%s পরিবর্তন করুন" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "ট্র্যাকিং সক্রিয়।" msgid "Tracking is not active." msgstr "ট্র্যাকিং সক্রিয় নয়।" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "সব পরীক্ষা করুন" @@ -606,31 +541,32 @@ msgstr "সব পরীক্ষা করুন" msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Print view" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "খালি" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "টেবিলগুলি ট্রাক করা" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "ডাটাবেজ" @@ -702,18 +639,26 @@ msgstr "আপডেটেড" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "অবস্থা" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Action" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "দেখান" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "এই টেবিলের জন্য ট্র্যাকিং ডাটা মুছুন" @@ -754,31 +699,31 @@ msgstr "ডাটাবেজ লগ" msgid "Bad type!" msgstr "বাজে প্রকার!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "বাজে প্যারামিটার!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে" @@ -801,7 +746,7 @@ msgid "SRID" msgstr "এসআরআইডি" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "জ্যামিতি" @@ -874,27 +819,27 @@ msgstr "" ""ফাংশন" কলাম থেকে "GeomFromText" বেছে নিন এবং "" "VALUE" ক্ষেত্রের মধ্যে নিম্নলিখিত পংক্তি পেস্ট করুন" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "বুকমার্ক দেখান" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "বুকমার্কটি মুছে ফেলা হয়েছে" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "ফাইল পড়া যায়নি" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -902,7 +847,7 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -912,39 +857,39 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "FAQ 1.16." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "অক্ষর সেট রূপান্তর গ্রন্থাগারের ছাড়া ফাইলের অক্ষর সেট রূপান্তর করতে পারেন না" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "ইমপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "ইম্পোর্ট সফলভাবে সম্পন্ন হয়েছে। %d সংখ্যক query সম্পাদন করা হয়েছে" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -959,7 +904,7 @@ msgstr "পিছনে" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -969,7 +914,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "আপনি কি সত্যি চান?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন" @@ -1027,16 +972,20 @@ msgstr "হোষ্ট নাম পূরন করা হয়নি" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "পাসওয়ার্ড দেওয়া হয়নি" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "ব্যাবহারকারী যোগ করুন" @@ -1056,9 +1005,9 @@ msgstr "বন্ধ" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1303,12 +1252,13 @@ msgstr "গ্রিডে লেখচিত্র যোগ করুন" msgid "Please add at least one variable to the series" msgstr "অনুগ্রহপূর্বক সিরিজসমূহে কমপক্ষে একটি চলক যোগ করুন" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "কোনটিই নয়" @@ -1495,10 +1445,10 @@ msgid "Explain output" msgstr "SQL ব্যাখ্যা কর" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "সময়" @@ -1846,7 +1796,7 @@ msgstr "SQL query" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Change" @@ -1855,8 +1805,8 @@ msgstr "Change" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1937,7 +1887,7 @@ msgstr "Data pointer size" msgid "Ignore" msgstr "Ignore" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2482,14 +2432,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "ভূল" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL query" @@ -2500,7 +2450,7 @@ msgstr "SQL query" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2529,6 +2479,10 @@ msgstr "PHP কোড ছাড়া" msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2555,7 +2509,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ইঞ্জিনসমূহ" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2582,7 +2536,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2591,7 +2545,7 @@ msgstr "শুরু" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2601,7 +2555,7 @@ msgstr "পূর্ববর্তী" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2611,7 +2565,7 @@ msgstr "পরবর্তী" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2634,16 +2588,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Structure" @@ -2651,21 +2606,20 @@ msgstr "Structure" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insert" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "ব্রাউজ করুন" @@ -2687,21 +2641,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "প্রিন্ট কর" @@ -2718,6 +2672,74 @@ msgstr "" msgid "Font size" msgstr "ফন্ট এর আকার" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Ascending" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Descending" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "সাজাঁন" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "ক্ষেত্র" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "নির্ণায়ক সারি যোগ /মুছুন" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "ফিল্ড কলামগুলি যোগ/মুছুন" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "টেবিল ব্যাবহারকারী" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "অথবা" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "এবং" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modify" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "" @@ -2760,8 +2782,8 @@ msgstr[1] "%s ভিতরের টেবিলগুলি মানানস msgid "Delete the matches for the %s table?" msgstr "%s মানানসই টেবিলটি মুছে দেবেন?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2796,74 +2818,74 @@ msgstr "ভিতরে টেবিল (গুলি):" msgid "Inside column:" msgstr "ভিতরে টেবিল(গুলি):" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy msgid "Save edited data" msgstr "Data home directory" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Add/Delete Field Columns" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "শনিবার" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Number of fields" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "সোমবার" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "আনুভূমিক" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "লম্ব" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Execute bookmarked query" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2877,115 +2899,115 @@ msgstr "Sort by key" msgid "Options" msgstr "Operations" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Full Texts" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Browser transformation" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "in query" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "মোট" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Display PDF schema" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Server version" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" @@ -3105,8 +3127,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "ডাটাবেজসমূহ Databases" @@ -3122,11 +3144,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3144,9 +3166,9 @@ msgstr "" msgid "Query" msgstr "Query" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privileges" @@ -3155,7 +3177,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" @@ -3262,53 +3284,53 @@ msgstr "MySQL সার্ভার এর জন্য %s বন্ধ কর msgid "This MySQL server does not support the %s storage engine." msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Show slave status" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Table %s has been renamed to %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3317,7 +3339,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "ফাংশন" @@ -3329,7 +3351,7 @@ msgstr "অপারেটর" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3374,7 +3396,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3735,7 +3757,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "টেবিলসমূহ" @@ -3746,9 +3768,10 @@ msgstr "টেবিলসমূহ" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "ডাটা" @@ -3871,33 +3894,33 @@ msgid "Disabled" msgstr "বন্ধ করা হয়েছে" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Structure" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4323,13 +4346,13 @@ msgstr "সংকোচন" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4358,7 +4381,6 @@ msgstr "Fields escaped by" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4405,25 +4427,24 @@ msgstr "ফাইল নাম এর টেমপ্লেট" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s table(s)" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4432,14 +4453,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Label key" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "মাইম এর ধরন" @@ -4481,7 +4502,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4494,7 +4515,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4511,7 +4532,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4521,7 +4542,7 @@ msgid "Export type" msgstr "Export type" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4576,7 +4597,6 @@ msgstr "ডাটাবেজ এক্সপোটঁ করার সুবি #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4640,7 +4660,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4882,7 +4901,6 @@ msgid "Customize text input fields" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6016,9 +6034,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "পাসওয়ার্ড" @@ -6185,7 +6205,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" @@ -6207,19 +6226,16 @@ msgstr "ডাটাবেজ এক্সপোটঁ করার সুবি #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Text" @@ -6275,7 +6291,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6283,21 +6299,21 @@ msgid "" "configured)." msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "The server is not responding" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6308,13 +6324,15 @@ msgid "Change password" msgstr "পাসওয়ার্ড পরিবর্তন কর" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "কোন পাসওয়ার্ড নাই" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Re-type" @@ -6339,8 +6357,9 @@ msgstr "নতুন ডাটাবেজ় তৈরী কর" msgid "Create" msgstr "তৈরী করুন" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "কোন সুবিধা নাই" @@ -6351,12 +6370,12 @@ msgid "Create table" msgstr "একটি নতুন পাতা তৈরী কর" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "নাম" @@ -6529,7 +6548,7 @@ msgid "View output as text" msgstr "ফাইল হিসেবে সেভ করুন" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7006,51 +7025,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "কোন ডাটাবেজ নাই" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "কোন ডাটাবেজ নাই" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "শুধুই গঠনপ্রণালী" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7121,12 +7140,12 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 #, fuzzy msgid "Showing SQL query" msgstr "Show Full Queries" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7378,7 +7397,7 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7493,84 +7512,84 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Lines terminated by" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Fields enclosed by" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Fields escaped by" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Lines terminated by" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Replace NULL by" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel edition" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Sent" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7578,25 +7597,25 @@ msgstr "Sent" msgid "Definition" msgstr "বর্ণনা" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Structure only" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 #, fuzzy msgid "Stand-in structure for view" msgstr "Structure only" @@ -7617,261 +7636,252 @@ msgstr "(continued)" msgid "Structure of table @TABLE@" msgstr "Structure of table __TABLE__" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Transformation options" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Table caption" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Disable foreign key checks" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Available MIME types" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "হোষ্ট" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "তৈরী করার জন্য সময়" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP Version" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy msgid "Export table names" msgstr "Export type" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy msgid "Export table headers" msgstr "Export type" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Report title" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Add custom comment into header (\\n splits lines)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Statements" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Statements" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Transformation options" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedures" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "ফাংশনসমূহ" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Allows reading data." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "View" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 #, fuzzy msgid "Export contents" msgstr "Export type" @@ -7943,6 +7953,10 @@ msgstr "কলামের নাম" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." @@ -7999,6 +8013,10 @@ msgstr "SQL compatibility mode" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8250,11 +8268,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "কোন বর্ণনা নাই" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Uncheck All" @@ -8274,9 +8293,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "ব্যাভারকারীর নাম" @@ -8314,34 +8334,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "যেকোন ব্যাবহারকারী" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "যেকোন হোষ্ট" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "লোকাল" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8355,7 +8384,7 @@ msgstr "পাসওয়ার্ড তৈরী কর" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8393,8 +8422,8 @@ msgid "Edit event" msgstr "Sent" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8482,7 +8511,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8626,26 +8656,26 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Allows executing stored routines." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Allows executing stored routines." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8802,29 +8832,29 @@ msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া য msgid "There are no events to display." msgstr "টেবিল পরীক্ষা কর" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "The \"%s\" table doesn't exist!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "দয়া করে %s টেবিল এর অবস্থান কনফিগার করুন" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8975,6 +9005,454 @@ msgstr "" msgid "Current Server" msgstr "সার্ভার" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Allows creating and dropping indexes." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "কোনটিই নয়" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" +"নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege " +"names are expressed in English " + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administration" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" +"একই নামে ডাটাবেজ তৈরী কর এবং সকল সুবিধাসমূহ মঞ্জুর করCreate database with same " +"name and grant all privileges" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Grant all privileges on wildcard name (username_%)" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Check privileges for database "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "User" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Grant" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "View %s has been dropped" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "যেকোন" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "ডাটাবেজ-নির্দিষ্ট" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "wildcard" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "No user(s) found." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "সুবিধাসমূহ সম্পাদনা কর" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Revoke" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Export" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... পুরাতনটা রেখে দাও" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড " +"কর" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" +"লগ ইন তথ্য পরিবর্তন কর অথবা ব্যাবহারকারী কপি করChange Login Information / Copy " +"User" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "কলাম নির্দিষ্ট সুবিধাসমূহ" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "মুছে ফেলার জন্য কোন ব্যাবহারকারী চিহ্নিত করা হয়নি" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privileges" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privileges" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "User overview" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "আপনি একটি নতুন ইউজার যোগ করেছেন" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9026,11 +9504,11 @@ msgstr "ক্যালেন্ডার" msgid "Columns" msgstr "কলামের নাম" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" @@ -9319,12 +9797,6 @@ msgstr "Server version" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "User" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9876,444 +10348,20 @@ msgstr "" msgid "disabled" msgstr "বন্ধ করা হয়েছে" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Allows creating and dropping indexes." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "কোনটিই নয়" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" -"নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege " -"names are expressed in English " - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administration" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "No user(s) found." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "আপনি একটি নতুন ইউজার যোগ করেছেন" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s মুছে ফেলা হচ্ছে" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "মুছে ফেলার জন্য কোন ব্যাবহারকারী চিহ্নিত করা হয়নি" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "সুবিধাসমূহ সম্পাদনা কর" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Revoke" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Export" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "যেকোন" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privileges" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privileges" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "User overview" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "কলাম নির্দিষ্ট সুবিধাসমূহ" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" -"লগ ইন তথ্য পরিবর্তন কর অথবা ব্যাবহারকারী কপি করChange Login Information / Copy " -"User" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... পুরাতনটা রেখে দাও" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড " -"কর" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" -"একই নামে ডাটাবেজ তৈরী কর এবং সকল সুবিধাসমূহ মঞ্জুর করCreate database with same " -"name and grant all privileges" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Grant all privileges on wildcard name (username_%)" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Check privileges for database "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "ডাটাবেজ-নির্দিষ্ট" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "wildcard" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "View %s has been dropped" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11928,41 +11976,41 @@ msgstr "" msgid "Wrong data" msgstr "কোন ডাটাবেজ নাই" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "আপনি কি সত্যি চান?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL result" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "লেবেল" @@ -13811,6 +13859,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#~ msgid "PDF" +#~ msgstr "PDF" + #~ msgid "rows" #~ msgstr "ব্রাউজ করুন" diff --git a/po/br.po b/po/br.po index e00f50a7a5..e4ca70cece 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 14:55+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: LANGUAGE \n" @@ -19,7 +19,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Diskouez pep tra" @@ -44,16 +45,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Klask" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -63,24 +64,26 @@ msgstr "Klask" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Mont" @@ -114,7 +117,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Krouet eo bet an diaz roadennoù %1$s." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " @@ -124,17 +127,17 @@ msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " msgid "Table comments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -146,34 +149,34 @@ msgstr "Bann" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Seurt" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -182,13 +185,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -196,10 +199,10 @@ msgstr "Null" msgid "Default" msgstr "Dre ziouer" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -208,10 +211,10 @@ msgstr "Liammet ouzh" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -222,18 +225,21 @@ msgstr "Evezhiadennoù" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ket" @@ -246,19 +252,22 @@ msgstr "Ket" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ya" @@ -266,8 +275,8 @@ msgstr "Ya" msgid "View dump (schema) of database" msgstr "Gwelet un ezporzhiadenn (chema) eus an diaz roadennoù" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "N'eus bet kavet taolenn ebet en diaz roadennoù." @@ -283,76 +292,76 @@ msgstr "Diziuzañ pep tra" msgid "The database name is empty!" msgstr "Goullo eo anv an diaz roadennoù !" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Deuet eo anv an diaz roadennoù %s da vezañ %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Eilet eo bet an diaz roadennoù %s war %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Cheñch anv an diaz roadennoù hag e envel" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Dilemel an diaz roadennoù" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Diverket eo bet an diaz roadennoù %s." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Diverkañ an diaz roadennoù (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Eilañ an diaz roadennoù war" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Ar framm hepken" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Ar framm hag ar roadennoù ennañ" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Ar roadennoù hepken" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "KROUIÑ AN DIAZ ROADENNOÙ a-raok eilañ" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Ouzhpennañ %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Ouzhpennañ ar strishadurioù" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Mont d'an diaz roadennoù eilet" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -362,7 +371,7 @@ msgstr "Mont d'an diaz roadennoù eilet" msgid "Collation" msgstr "Etrerummadiñ" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -371,7 +380,7 @@ msgstr "" "Diweredekaet eo bet ar stokañ kefluniadurioù evit phpMyAdmin. Evit gouzout " "perak klikañ %samañ%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Embann pe ezporzhiañ ur chema kar" @@ -381,16 +390,18 @@ msgstr "Embann pe ezporzhiañ ur chema kar" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Taolenn" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Linennoù" @@ -400,13 +411,13 @@ msgid "Size" msgstr "Ment" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "en implij" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -414,7 +425,7 @@ msgstr "Krouiñ" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -422,7 +433,7 @@ msgstr "Hizivadenn ziwezhañ" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -435,92 +446,15 @@ msgid_plural "%s tables" msgstr[0] "%s daolenn" msgstr[1] "%s taolenn" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Ret eo deoc'h dibab da nebeutañ ur bann da vezañ diskwelet" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "War gresk" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "War zigresk" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Urzhiañ" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Diskouez" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Dezverk" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Ouzhpennañ/Diverkañ linennoù dezverkoù" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Ouzhpennañ/Diverkañ bannoù" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Hizivaat ar reked" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Implijout taolennoù" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Pe" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Ha" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ensoc'hañ" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Diverk." - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Kemmañ" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cheñch evit ar %ssavour gwelet%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Reked SQL ouzh an diaz roadennoù %s: " - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Kas ar reked" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -561,7 +495,7 @@ msgstr "Oberiant eo an heuliañ." msgid "Tracking is not active." msgstr "N'eo ket oberiant an heuliañ." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -591,20 +525,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "War ar servijer MySQL-mañ ez eo %s ar c'heflusker stokañ dre ziouer." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Evit ar re zo diuzet :" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Askañ pep tra" @@ -612,31 +547,32 @@ msgstr "Askañ pep tra" msgid "Check tables having overhead" msgstr "Askañ an taolennoù gant dilerc'hioù" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ezporzhiañ" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Stumm da voullañ" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Goullonderiñ" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -680,17 +616,18 @@ msgstr "Taolennoù heuliet-pizh" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Diaz roadennoù" @@ -708,18 +645,26 @@ msgstr "Hizivaet" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Statud" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Oberiadenn" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Diskouez" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Diverkañ ar roadennoù heuliañ evit an daolenn-mañ" @@ -760,20 +705,20 @@ msgstr "Marilh an diaz roadennoù" msgid "Bad type!" msgstr "Seurt faziek !" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Ret eo enrollañ an diuzadenn ezporzhiañ en ur restr !" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Arventennoù fall !" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "N'eus ket egor a-walc'h evit gallout enrollañ ar restr %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -781,12 +726,12 @@ msgstr "" "Emañ ar restr %s war ar servijer dija; cheñch an anv pe klikañ war al log " "frikañ ar restroù zo dija." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "N'eo ket aotreet ar servijer web da enrollañ ar restr %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Enrollet eo bet ar restr ezporzhiañ e%s." @@ -809,7 +754,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Mentoniezh" @@ -882,7 +827,7 @@ msgstr "" "Dibab \"GeomFromText\" er bann \"Arc'hwel\" ha pegañ an neudennad er " "vaezienn \"Talvoud\" a-is" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -891,20 +836,20 @@ msgstr "" "Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an " "%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "O tiskouez ar sined" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Diverket eo bet ar sined." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "N'haller ket lenn ar restr" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -915,7 +860,7 @@ msgstr "" "gwasket (%s). Pe n'eo ket emplementet ar mod gwaskañ-se en ho kefluniadur, " "pe eo bet diweredekaet." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -926,26 +871,26 @@ msgstr "" "ho kefluniadur PHP. Gwelet [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Dibosupl amdreiñ an arouezennoù hep levraoueg amdreiñ" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Dibosupl enporzhiañ an adveziantoù. Gwiriit ho staliadur !" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Krouet eo bet ar sined %s" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Enporzhiet eo bet an traoù ervat, %d reked zo bet kaset da benn." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -953,7 +898,7 @@ msgstr "" "Aet eur dreist d'ar vevenn amzer. Mar fell deoc'h kenderc'hel gant an " "enporzhiañ, adkasit ar restr hag e kendalc'ho an argerzh." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -962,8 +907,8 @@ msgstr "" "Peurliesañ e talvez n'hallo ket PhpMyAdmin echuiñ da enporzhiañ an traoù ma " "ne vez ket kresket ganeoc'h bevenn amzer PHP." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -979,7 +924,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "Un tamm aesoc'h eo phpMyAdmin gant ur merdeer a skor ar frammoù." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'" @@ -989,7 +934,7 @@ msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'" msgid "Do you really want to execute \"%s\"?" msgstr "Ha sur oc'h e fell deoc'h " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !" @@ -1052,16 +997,20 @@ msgstr "Goullo eo anv ar servijer !" msgid "The user name is empty!" msgstr "Goullo eo anv an implijer !" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Goullo eo ar ger-tremen !" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Ne glot ket ar gerioù-tremen !" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Ouzhpennañ un implijer" @@ -1081,9 +1030,9 @@ msgstr "Serriñ" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1327,12 +1276,13 @@ msgstr "Ouzhpennañ ur grafik d'ar gael" msgid "Please add at least one variable to the series" msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Hini" @@ -1520,10 +1470,10 @@ msgid "Explain output" msgstr "Displegañ SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "" @@ -1844,7 +1794,7 @@ msgstr "Diskouez ar voest rekedoù SQL" msgid "No rows selected" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Kemmañ" @@ -1855,8 +1805,8 @@ msgstr "Kemmañ" msgid "Query execution time" msgstr "Pad seveniñ hirañ" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1933,7 +1883,7 @@ msgstr "" msgid "Ignore" msgstr "Na ober van" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2424,14 +2374,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Fazi" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Reked SQL" @@ -2442,7 +2392,7 @@ msgstr "Reked SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2471,6 +2421,10 @@ msgstr "Hep kod PHP" msgid "Create PHP Code" msgstr "Krouiñ kod PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Kas ar reked" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2495,7 +2449,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Enlinenn" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "O profilañ" @@ -2522,7 +2476,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2531,7 +2485,7 @@ msgstr "Kregiñ" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2541,7 +2495,7 @@ msgstr "Kent" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2551,7 +2505,7 @@ msgstr "War-lerc'h" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2574,16 +2528,17 @@ msgstr "Klikañ evit gwintañ" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Framm" @@ -2591,21 +2546,20 @@ msgstr "Framm" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Ensoc'hañ" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Furchal" @@ -2626,21 +2580,21 @@ msgstr "Furchal en hoc'h urzhiataer" msgid "Select from the web server upload directory %s:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet." -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "N'eus restr ebet da enporzhiañ" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Seveniñ" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Moullañ" @@ -2657,6 +2611,74 @@ msgstr "" msgid "Font size" msgstr "Ment an destenn" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "War gresk" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "War zigresk" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Urzhiañ" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Dezverk" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Ouzhpennañ/Diverkañ linennoù dezverkoù" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Ouzhpennañ/Diverkañ bannoù" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Hizivaat ar reked" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Implijout taolennoù" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Pe" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Ha" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ensoc'hañ" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Diverk." + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Kemmañ" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Reked SQL ouzh an diaz roadennoù %s: " + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "unan eus ar gerioù da nebeutañ" @@ -2699,8 +2721,8 @@ msgstr[1] "%s klotadenn en daolenn %s" msgid "Delete the matches for the %s table?" msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2735,67 +2757,67 @@ msgstr "E diabarzh an taolennoù" msgid "Inside column:" msgstr "Er bann :" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "More" msgid "Mode" msgstr "Muioc'h" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute" msgid "Headers every %s rows" msgstr "Seveniñ" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2808,103 +2830,103 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù)" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "" @@ -3032,8 +3054,8 @@ msgstr "" "bezañ dilamet." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Diazoù roadennoù" @@ -3049,11 +3071,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3071,9 +3093,9 @@ msgstr "" msgid "Query" msgstr "" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "" @@ -3082,7 +3104,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3178,52 +3200,52 @@ msgstr "Diweredekaet eo bet %s war ar servijer MySQL-mañ." msgid "This MySQL server does not support the %s storage engine." msgstr "N'eo ket skoret al lusker stokañ %s gant ar servijer MySQL-mañ." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "N'eo ket bet kavet an tem %s !" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Diaz roadennoù direizh" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Anv taolenn direizh" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Fazi en ur adenvel %1$s e %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Anv an daolenn %s zo %s bremañ" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "N'eus ket bet gallet enrollañ dibaboù etrefas an taolennoù" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3232,7 +3254,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3244,7 +3266,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3287,7 +3309,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3646,7 +3668,7 @@ msgstr "kenrannet" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Taolennoù" @@ -3657,9 +3679,10 @@ msgstr "Taolennoù" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Roadennoù" @@ -3781,32 +3804,32 @@ msgid "Disabled" msgstr "Diweredekaet" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "Framm" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "roadennoù" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "Framm ha roadennoù" @@ -4234,13 +4257,13 @@ msgstr "Gwaskadur" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ" @@ -4263,7 +4286,6 @@ msgstr "Arouezenn dec'hout" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Erlec'hiañ NULL gant" @@ -4303,23 +4325,22 @@ msgstr "Patrom anv taolenn" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Ezporzhiañ an daolenn" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Enklozañ an istitloù" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Istitl eus an daolenn" @@ -4328,14 +4349,14 @@ msgid "Continued table caption" msgstr "Enklozañ an istitloù" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Alc'hwez an dikedenn" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Seurt MIME" @@ -4372,7 +4393,7 @@ msgid "SQL compatibility mode" msgstr "Mod kenglotañ gant SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Dibarzhioù evit CREATE TABLE :" @@ -4385,7 +4406,7 @@ msgid "Use delayed inserts" msgstr "Ensoc'hadennoù gant dale" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" @@ -4402,7 +4423,7 @@ msgid "Syntax to use when inserting data" msgstr "Ereadur d'ober gantañ pa vez ensoc'het roadennoù" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Ment vrasañ ar reked krouet" @@ -4411,7 +4432,7 @@ msgid "Export type" msgstr "Seurt ezporzhiadenn" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Enklozañ an ezporzhiadenn en un treuzgread" @@ -4467,7 +4488,6 @@ msgstr "Personelaat an dibarzhioù dre ziouer" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4526,7 +4546,6 @@ msgid "Set import and export directories and compression options" msgstr "Kefluniañ ar c'havlec'hioù enporzhiañ hag an dibarzhioù gwaskañ" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTex" @@ -4759,7 +4778,6 @@ msgid "Customize text input fields" msgstr "Personelaat ar maeziennoù ebarzhiñ testenn" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Testenn Texy!" @@ -5838,9 +5856,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -6002,7 +6022,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6024,19 +6043,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6094,25 +6110,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6123,13 +6139,15 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "" @@ -6150,8 +6168,9 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "" @@ -6161,12 +6180,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "" @@ -6300,7 +6319,7 @@ msgid "View output as text" msgstr "" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "" @@ -6754,54 +6773,54 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "Mont d'an diaz roadennoù" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Roadennoù a vank evit %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Set value: %s" msgid "Go to table: %s" msgstr "Lakaat an talvoud da %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Ar framm hepken" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6870,11 +6889,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7122,7 +7141,7 @@ msgstr "Teuliadur phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7239,93 +7258,93 @@ msgstr "N'eus bet luget alc'hwez dilesa reizh ebet" msgid "Authenticating..." msgstr "O tilesa..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7341,242 +7360,233 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Invalid table name" msgid "Export table names" msgstr "Anv taolenn direizh" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "Export method" msgid "Export table headers" msgstr "Doare ezporzhiañ" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Databases display options" +msgid "Data creation options" +msgstr "Dibarzhioù diskwel an diazoù roadennoù" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7643,6 +7653,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7698,6 +7712,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7883,11 +7901,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Diaskañ pep tra" @@ -7907,9 +7926,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -7944,34 +7964,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7985,7 +8014,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8025,8 +8054,8 @@ msgid "Edit event" msgstr "" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fazi en ur seveniñ ar reked" @@ -8112,7 +8141,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8248,25 +8278,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Disoc'hoù seveniñ an argerzh %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh" msgstr[1] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Disoc'hoù seveniñ an argerzh %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Seveniñ an argerzh" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8414,28 +8444,28 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8570,6 +8600,437 @@ msgstr "" msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Ezporzhiañ" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Check Privileges" +msgid "Privileges for all users" +msgstr "Gwiriañ ar gwirioù" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Check Privileges" +msgid "Privileges for %s" +msgstr "Gwiriañ ar gwirioù" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8616,11 +9077,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8879,12 +9340,6 @@ msgstr "Stumm diwezhañ" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "" - #: main.php:217 #, fuzzy #| msgid "Remove chart" @@ -9383,427 +9838,20 @@ msgstr "" msgid "disabled" msgstr "Diweredekaet" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Ezporzhiañ" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Check Privileges" -msgid "Privileges for all users" -msgstr "Gwiriañ ar gwirioù" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Check Privileges" -msgid "Privileges for %s" -msgstr "Gwiriañ ar gwirioù" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11379,39 +11427,39 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ha sur oc'h e fell deoc'h " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" diff --git a/po/bs.po b/po/bs.po index d6564fbb26..bbede453da 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: bosnian \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Prikaži sve" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Pretraživanje" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Kreni" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza %s je odbačena." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Komentar baze: " @@ -119,17 +122,17 @@ msgstr "Komentar baze: " msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Imena kolona" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tip" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Null" msgid "Default" msgstr "Podrazumjevano" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Veze ka" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Komentari" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ne" @@ -243,19 +249,22 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Da" @@ -263,8 +272,8 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." @@ -281,79 +290,79 @@ msgstr "ništa" msgid "The database name is empty!" msgstr "Ima tabele je prazno!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Tabeli %s promjenjeno ime u %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Tabela %s je kopirana u %s." -#: db_operations.php:466 +#: db_operations.php:465 #, fuzzy msgid "Rename database to" msgstr "Promjeni ime tabele u " -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy msgid "Remove database" msgstr "Promjeni ime tabele u " -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "Baza ne postoji" -#: db_operations.php:539 +#: db_operations.php:538 #, fuzzy msgid "Copy database to" msgstr "Baza ne postoji" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktura i podatci" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "" -#: db_operations.php:584 +#: db_operations.php:583 #, fuzzy msgid "Switch to copied database" msgstr "Pređi na kopiranu tabelu" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -363,7 +372,7 @@ msgstr "Pređi na kopiranu tabelu" msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -375,7 +384,7 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -387,16 +396,18 @@ msgstr "Relaciona shema" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Redova" @@ -406,13 +417,13 @@ msgid "Size" msgstr "Veličina" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "se koristi" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -420,7 +431,7 @@ msgstr "Napravljeno" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -428,7 +439,7 @@ msgstr "Posljednja izmjena" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -442,97 +453,16 @@ msgid_plural "%s tables" msgstr[0] "%s tabela" msgstr[1] "%s tabela" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Rastući" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Opadajući" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sortiranje" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Prikaži" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriterijum" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Dodaj/obriši polje za kriterij" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Dodaj/obriši kolonu" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Ažuriraj upit" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Koristi tabele" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "ili" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "i" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Promijeni" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Pređi na kopiranu tabelu" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL upit na bazi %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Izvrši SQL upit" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -575,7 +505,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -604,20 +534,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Označeno:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Označi sve" @@ -625,31 +556,32 @@ msgstr "Označi sve" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Isprazni" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -697,17 +629,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Baza podataka" @@ -726,18 +659,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Akcija" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Prikaži" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -783,22 +724,22 @@ msgstr "Baza podataka" msgid "Bad type!" msgstr "Vrsta upita" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Dodaj novo polje" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -806,12 +747,12 @@ msgstr "" "Datoteka %s već postoji na serveru, promijenite ime datoteke ili uključite " "opciju prepisivanja." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u fajl %s." @@ -835,7 +776,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -916,27 +857,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Obilježivač je upravo obrisan." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -944,46 +885,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -998,7 +939,7 @@ msgstr "Nazad" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -1008,7 +949,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena." msgid "Do you really want to execute \"%s\"?" msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1074,16 +1015,20 @@ msgstr "Ime hosta je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1108,9 +1053,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1374,12 +1319,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "nema" @@ -1564,10 +1510,10 @@ msgid "Explain output" msgstr "Objasni SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Vrijeme" @@ -1910,7 +1856,7 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Promijeni" @@ -1919,8 +1865,8 @@ msgstr "Promijeni" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -2001,7 +1947,7 @@ msgstr "Sadržaj" msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2544,14 +2490,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Greška" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL upit" @@ -2562,7 +2508,7 @@ msgstr "SQL upit" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2591,6 +2537,10 @@ msgstr "bez PHP koda" msgid "Create PHP Code" msgstr "Napravi PHP kod" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Izvrši SQL upit" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2615,7 +2565,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2644,7 +2594,7 @@ msgstr "Dodaj novo polje" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2653,7 +2603,7 @@ msgstr "Početak" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2663,7 +2613,7 @@ msgstr "Prethodna" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2673,7 +2623,7 @@ msgstr "Slijedeći" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2696,16 +2646,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" @@ -2713,21 +2664,20 @@ msgstr "Struktura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Novi zapis" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Pregled" @@ -2749,21 +2699,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "direkcija za slanje web servera " -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Štampaj" @@ -2780,6 +2730,78 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Rastući" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Opadajući" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sortiranje" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriterijum" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Dodaj/obriši polje za kriterij" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Dodaj/obriši kolonu" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Ažuriraj upit" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Koristi tabele" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "ili" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "i" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Promijeni" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL upit na bazi %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "bar jednu od riječi" @@ -2823,8 +2845,8 @@ msgstr[1] "%s pogodaka unutar tabele %s" msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2865,73 +2887,73 @@ msgstr "Unutar tabela:" msgid "Inside column:" msgstr "Unutar tabela:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Dodaj/obriši kolonu" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Sub" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "Broj redova po strani" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Pon" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontalnom" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikalnom" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Izvrši upamćen upit" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2945,115 +2967,115 @@ msgstr "" msgid "Options" msgstr "Operacije" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Dio teksta" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Pun tekst" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Relaciona shema" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relaciona shema" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Tranformacije čitača" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Obustavi" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "u upitu" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Veza nije pronađena" @@ -3174,8 +3196,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Baze" @@ -3191,11 +3213,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3213,9 +3235,9 @@ msgstr "" msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegije" @@ -3224,7 +3246,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3326,51 +3348,51 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabeli %s promjenjeno ime u %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3379,7 +3401,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3392,7 +3414,7 @@ msgstr "Operacije" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3437,7 +3459,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" @@ -3796,7 +3818,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabele" @@ -3807,9 +3829,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Podaci" @@ -3933,33 +3956,33 @@ msgid "Disabled" msgstr "Onemogućeno" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Struktura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4379,13 +4402,13 @@ msgstr "Kompresija" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4414,7 +4437,6 @@ msgstr "Escape karakter      " #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Zamijeni NULL sa" @@ -4459,25 +4481,24 @@ msgstr "Šablon imena datoteke" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s tabela" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 #, fuzzy msgid "Table caption" msgstr "Opcije tabele" @@ -4488,14 +4509,14 @@ msgid "Continued table caption" msgstr "Opcije tabele" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-tipovi" @@ -4537,7 +4558,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4551,7 +4572,7 @@ msgid "Use delayed inserts" msgstr "Prošireni INSERT" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4570,7 +4591,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4580,7 +4601,7 @@ msgid "Export type" msgstr "Nema tabela" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4634,7 +4655,6 @@ msgstr "Opcije za izvoz baze" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV format" @@ -4695,7 +4715,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4931,7 +4950,6 @@ msgid "Customize text input fields" msgstr "Opcije za izvoz baze" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6041,9 +6059,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Lozinka" @@ -6210,7 +6230,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6232,19 +6251,16 @@ msgstr "Opcije za izvoz baze" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6300,25 +6316,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6329,13 +6345,15 @@ msgid "Change password" msgstr "Promeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Ponovite unos" @@ -6358,8 +6376,9 @@ msgstr "Napravi novu bazu podataka" msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Nema privilegija" @@ -6370,12 +6389,12 @@ msgid "Create table" msgstr "Napravi novu stranu" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Ime" @@ -6540,7 +6559,7 @@ msgid "View output as text" msgstr "Sačuvaj kao datoteku" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7003,51 +7022,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo struktura" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7119,11 +7138,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7381,7 +7400,7 @@ msgstr "phpMyAdmin dokumentacija" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7495,82 +7514,82 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Linije se završavaju sa" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Polja ograničena sa" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Escape karakter      " -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Linije se završavaju sa" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Zamijeni NULL sa" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Opcije za izvoz baze" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Poslato" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7578,25 +7597,25 @@ msgstr "Poslato" msgid "Definition" msgstr "Opis" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struktura tabele" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Samo struktura" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7614,258 +7633,249 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "Struktura tabele" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Opcije transformacije" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy msgid "Table caption (continued)" msgstr "Opcije tabele" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Prikazujem komentare kolone" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Dostupni MIME-tipovi" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Host" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Vrijeme kreiranja" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Verzija servera" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "verzija PHP-a" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "Izvoz" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "Uvoz fajlova" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Ime" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Ime" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Opcije transformacije" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "Procesi" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "Funkcija" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Dozvoljava čitanje podataka." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7934,6 +7944,10 @@ msgstr "Imena kolona" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7987,6 +8001,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8220,11 +8238,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "nema opisa" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "nijedno" @@ -8244,9 +8263,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Ime korisnika" @@ -8283,34 +8303,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Bilo koji host" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Koristi tabelu hosta" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8324,7 +8353,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8362,8 +8391,8 @@ msgid "Edit event" msgstr "Poslato" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8451,7 +8480,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8595,25 +8625,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8765,29 +8795,29 @@ msgstr "Tabele nisu pronađene u bazi." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabela \"%s\" ne postoji!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Podesite koordinate za tabelu %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8937,6 +8967,462 @@ msgstr "" msgid "Current Server" msgstr "Server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Nema privilegija." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Uključuje sve privilegije osim GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Dozvoljava čitanje podataka." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Dozvoljava umetanje i zamjenu podataka." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Dozvoljava izmenu podataka." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Dozvoljava brisanje podataka." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Dozvoljava kreiranje novih baza i tabela." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Dozvoljava odbacivanje baza i tabela." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Dozvoljava gašenje servera." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nema efekta u ovoj verziji MySQL-a." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Dozvoljava kreiranje i brisanje ključeva." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Dozvoljava izmjenu struktura postojećih tabela." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Daje pristup kompletnoj listi baza." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +" Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; " +"Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " +"promenljivih ili prekidanje procesa ostalih korisnika." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Dozvoljava kreiranje privremenih tabela.." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Dozvoljava zaključavanje tabela tekućim procesima." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Potrebno zbog pomoćnih servera za replikaciju." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +#, fuzzy +msgid "Allows creating new views." +msgstr "Dozvoljava kreiranje novih tabela." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Dozvoljava kreiranje i brisanje ključeva." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +#, fuzzy +msgid "Allows creating stored routines." +msgstr "Dozvoljava kreiranje novih tabela." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +#, fuzzy +msgid "Allows altering and dropping stored routines." +msgstr "Dozvoljava kreiranje i brisanje ključeva." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "nema" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ograničenja resursa" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " +"izvrši na sat." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Privilegije vezane za tabele" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administracija" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globalne privilegije" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Privilegije vezane za bazu" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Dozvoljava kreiranje novih tabela." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Dozvoljava odbacivanje tabela." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " +"privilegija." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Podatci o prijavi" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Nemoj da mijenjaš lozinku" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Lozinka za %s je uspješno promjenjena." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Zabranili ste privilegije za %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Provjeri privilegije za bazu "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Korisnici koji imaju pristup "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Korisnik" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Omogući" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +msgid "User has been added." +msgstr "Polje %s je obrisano" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Bilo koji" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globalno" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Specifično za bazu" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "Džoker" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Korisnik nije nađen." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Promijeni privilegije" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Zabrani" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Izvoz" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... sačuvaj stare." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... obriši stare iz tabela korisnika." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... obustavi sve privilegije starog korisnika i zatim ga obriši." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Promeni informacije o prijavi / Kopiraj korisnika" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Napravi novog korisnika sa istim privilegijama i ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Privilegije vezane za kolone" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Dodaj privilegije na slijedećoj bazi" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Dodaj privilegije na slijedećoj tabeli" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Ukloni izabrane korisnike" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Odbaci baze koje se zovu isto kao korisnici." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Ponovo učitavam privilegije" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Izabrani korisnici su uspješno obrisani." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Ažurirali ste privilegije za %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privilegije" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privilegije" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Pregled korisnika" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " +"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " +"server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " +"učitajte privilegije%s pre nego što nastavite." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Dodali ste novog korisnika." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -8987,11 +9473,11 @@ msgstr "" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -9291,12 +9777,6 @@ msgstr "Verzija servera" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Korisnik" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9846,452 +10326,20 @@ msgstr "" msgid "disabled" msgstr "Onemogućeno" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Uključuje sve privilegije osim GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Dozvoljava izmjenu struktura postojećih tabela." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -#, fuzzy -msgid "Allows altering and dropping stored routines." -msgstr "Dozvoljava kreiranje i brisanje ključeva." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Dozvoljava kreiranje novih baza i tabela." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -#, fuzzy -msgid "Allows creating stored routines." -msgstr "Dozvoljava kreiranje novih tabela." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Dozvoljava kreiranje novih tabela." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Dozvoljava kreiranje privremenih tabela.." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -#, fuzzy -msgid "Allows creating new views." -msgstr "Dozvoljava kreiranje novih tabela." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Dozvoljava brisanje podataka." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Dozvoljava odbacivanje baza i tabela." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Dozvoljava odbacivanje tabela." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " -"privilegija." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Dozvoljava kreiranje i brisanje ključeva." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Dozvoljava umetanje i zamjenu podataka." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Dozvoljava zaključavanje tabela tekućim procesima." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " -"izvrši na sat." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nema efekta u ovoj verziji MySQL-a." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Potrebno zbog pomoćnih servera za replikaciju." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Dozvoljava čitanje podataka." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Daje pristup kompletnoj listi baza." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Dozvoljava gašenje servera." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -" Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; " -"Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " -"promenljivih ili prekidanje procesa ostalih korisnika." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Dozvoljava kreiranje i brisanje ključeva." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Dozvoljava izmenu podataka." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Nema privilegija." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "nema" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Privilegije vezane za tabele" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administracija" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globalne privilegije" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Privilegije vezane za bazu" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ograničenja resursa" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Podatci o prijavi" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Nemoj da mijenjaš lozinku" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Korisnik nije nađen." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Dodali ste novog korisnika." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Ažurirali ste privilegije za %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Zabranili ste privilegije za %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Lozinka za %s je uspješno promjenjena." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Ponovo učitavam privilegije" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Izabrani korisnici su uspješno obrisani." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Promijeni privilegije" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Zabrani" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Izvoz" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Bilo koji" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilegije" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilegije" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Pregled korisnika" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Omogući" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Ukloni izabrane korisnike" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Odbaci baze koje se zovu isto kao korisnici." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " -"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " -"server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " -"učitajte privilegije%s pre nego što nastavite." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Privilegije vezane za kolone" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Dodaj privilegije na slijedećoj bazi" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Dodaj privilegije na slijedećoj tabeli" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Promeni informacije o prijavi / Kopiraj korisnika" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Napravi novog korisnika sa istim privilegijama i ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... sačuvaj stare." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... obriši stare iz tabela korisnika." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... obustavi sve privilegije starog korisnika i zatim ga obriši." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Provjeri privilegije za bazu "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Korisnici koji imaju pristup "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globalno" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Specifično za bazu" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "Džoker" - -#: server_privileges.php:2590 -#, fuzzy -msgid "User has been added." -msgstr "Polje %s je obrisano" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11890,41 +11938,41 @@ msgstr "" msgid "Wrong data" msgstr "Baza ne postoji" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Da li stvarno hoćete da " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjeri SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL rezultat" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Generirao" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Naziv" diff --git a/po/ca.po b/po/ca.po index 8f7c5d50d0..6df63c41e2 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" -"PO-Revision-Date: 2012-07-23 17:19+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" +"PO-Revision-Date: 2012-07-27 16:04+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" "Language: ca\n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Mostra tot" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Cerca" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Executa" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "S'ha creat la base de dades %1$s." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Comentaris de la base de dades: " @@ -120,17 +123,17 @@ msgstr "Comentaris de la base de dades: " msgid "Table comments" msgstr "Comentaris de la taula" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Columna" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tipus" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Nul" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Nul" msgid "Default" msgstr "Defecte" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Enllaços a" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Comentaris" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "No" @@ -242,19 +248,22 @@ msgstr "No" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Si" @@ -262,8 +271,8 @@ msgstr "Si" msgid "View dump (schema) of database" msgstr "Veure el bolcat (esquema) de la base de dades" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Base de dades sense taules." @@ -279,76 +288,76 @@ msgstr "Desmarca tot" msgid "The database name is empty!" msgstr "El nom de la base de dades és buit!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Base de dades %s reanomenada a %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "La base de dades %s s'ha copiat a %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Reanomena base de dades a" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Elimina la base de dades" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "La base de dades %s s'ha eliminat." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Esborra la base de dades (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Còpia base de dades a" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Només l'estructura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Estructura i dades" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Només dades" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Inclou CREATE DATABASE abans de copiar" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Afegeix %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Afegeix restriccions" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Canvia a la base de dades copiada" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -358,7 +367,7 @@ msgstr "Canvia a la base de dades copiada" msgid "Collation" msgstr "Ordenació" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -367,7 +376,7 @@ msgstr "" "S'ha desactivat l' emmagatzemament de la configuració de phpMyAdmin. Per " "veure el motiu, clica %saqui%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Edita o exporta l'esquema relacional" @@ -377,16 +386,18 @@ msgstr "Edita o exporta l'esquema relacional" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Taula" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Fila" @@ -396,13 +407,13 @@ msgid "Size" msgstr "Mida" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "en ús" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -410,7 +421,7 @@ msgstr "Creació" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -418,7 +429,7 @@ msgstr "Darrera actualització" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,92 +442,15 @@ msgid_plural "%s tables" msgstr[0] "%s taula" msgstr[1] "%s taules" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Has de triar al menys una columna per mostrar" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Ascendent" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Descendent" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Classificació" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Mostra" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Criteris" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Afegeix/esborra criteris de files" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Afegeix/esborra columnes" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Actualitza consulta" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Usa Taules" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "O" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "I" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Sup" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modificar" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Canviar al %sconstructor visual%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Consulta SQL a la base de dades %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Executa consulta" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "El seguiment està actiu." msgid "Tracking is not active." msgstr "El seguiment no està actiu." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -586,20 +520,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Amb marca:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Marcar-ho tot" @@ -607,31 +542,32 @@ msgstr "Marcar-ho tot" msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporta" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Buida" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -675,17 +611,18 @@ msgstr "Taules seguides" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Base de dades" @@ -703,18 +640,26 @@ msgstr "Actualitzat" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Estat" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Acció" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Mostra" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Esborra les dades de seguiment per aquesta taula" @@ -755,20 +700,20 @@ msgstr "Registre de la base de dades" msgid "Bad type!" msgstr "Tipus incorrecte!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "El tipus d'exportació triat s'ha de desar en un arxiu!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Paràmetres incorrectes!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hi ha prou espai per desar l'arxiu %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -776,12 +721,12 @@ msgstr "" "L'arxiu %s ja existeix al servidor, canvia el nom o marca l'opció de " "sobreescriure." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "El servidor web no té permisos per a desar l'arxiu %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." @@ -804,7 +749,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometria" @@ -877,7 +822,7 @@ msgstr "" "Tria «GeomFromText» de la columna \"Funció\" i enganxa la cadena següent al " "camp \"Valor\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -886,20 +831,20 @@ msgstr "" "Probablement has triat d'enviar un arxiu massa gran. Consulta la " "%sdocumentació%s per trobar formes de modificar aquest límit." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "S'ha esborrat la consulta desada." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "No es pot llegir l'arxiu" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -909,7 +854,7 @@ msgstr "" "S'intenta carregar un arxiu amb una compresió no suportada (%s). O bé aquest " "suport no s'ha implementat encara o bé el teniu desactivat a la configuració." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -919,29 +864,29 @@ msgstr "" "o el tamany de l'arxiu es més gran que el permès per la configuració del " "vostre PHP. Veieu [a@./Documentation.html#faq1_16]PFC(FAQ) 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "No es pot convertir el joc de caracters de l'arxivu sense la biblioteca " "corresponent" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'importació, comprova l'instal.lació!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "%s creat com a Consulta desada" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importació finalitzada correctament, %d consultes executades." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -949,7 +894,7 @@ msgstr "" "Temps exaurit de l'arxiu d'ordres, si voleu finalitzar l'importació, torneu " "a enviar el mateix arxiu a importar i el procés continuarà." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -958,8 +903,8 @@ msgstr "" "indica que phpMyAdmin no ha pogut finalitzar aquesta importació a menys que " "incrementeu els límits de temps de php." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -975,7 +920,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin és més fàcil amb un navegador que suporti marcs -frames-." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrucció \"DROP DATABASE\" desactivada." @@ -985,7 +930,7 @@ msgstr "Instrucció \"DROP DATABASE\" desactivada." msgid "Do you really want to execute \"%s\"?" msgstr "Realment vols fer?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Ets a punt de DESTRUIR completament una base de dades!" @@ -1043,16 +988,20 @@ msgstr "El nom del servidor és buit!" msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Afegirl usuari" @@ -1072,9 +1021,9 @@ msgstr "Tanca" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1321,12 +1270,13 @@ msgstr "Afegeix gràfic a a la graella" msgid "Please add at least one variable to the series" msgstr "Afegeix al menys una variable a la serie" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Res" @@ -1512,10 +1462,10 @@ msgid "Explain output" msgstr "Explicar sortida" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Temps" @@ -1815,7 +1765,7 @@ msgstr "Mostrar quadre de consultes" msgid "No rows selected" msgstr "No s'han triat arxius" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Canvi" @@ -1824,8 +1774,8 @@ msgstr "Canvi" msgid "Query execution time" msgstr "Temps d'execució de la consulta" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d no és un num. vàlid de fila." @@ -1898,7 +1848,7 @@ msgstr "Contingut del punter de dades" msgid "Ignore" msgstr "Ignora" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Còpia" @@ -2389,14 +2339,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Error" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Consulta SQL" @@ -2407,7 +2357,7 @@ msgstr "Consulta SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2436,6 +2386,10 @@ msgstr "Sense codi PHP" msgid "Create PHP Code" msgstr "Crea codi PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Executa consulta" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2460,7 +2414,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En línia" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Perfils" @@ -2487,14 +2441,14 @@ msgstr "Falta paràmetre:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Inici" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2502,7 +2456,7 @@ msgstr "Pàgina anterior" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2510,7 +2464,7 @@ msgstr "Pàgina següent" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Darrera pàgina" @@ -2531,16 +2485,17 @@ msgstr "Prem per canviar" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Estructura" @@ -2548,21 +2503,20 @@ msgstr "Estructura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insereix" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Navega" @@ -2584,21 +2538,21 @@ msgid "Select from the web server upload directory %s:" msgstr "" "Selecciona des del directori de pujada d'arxius del servidor web %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "No hi ha cap arxiu per pujar" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Executar" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Imprimeix" @@ -2617,6 +2571,74 @@ msgstr "" msgid "Font size" msgstr "Tamany de lletra" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Ascendent" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Descendent" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Classificació" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Criteris" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Afegeix/esborra criteris de files" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Afegeix/esborra columnes" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Actualitza consulta" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Usa Taules" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "O" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "I" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Sup" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modificar" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Consulta SQL a la base de dades %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "al menys una d'aquestes paraules" @@ -2659,8 +2681,8 @@ msgstr[1] "%s resultats a la taula %s" msgid "Delete the matches for the %s table?" msgstr "Esborrar les coincidències per a la taula %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2695,64 +2717,64 @@ msgstr "Dins les taules:" msgid "Inside column:" msgstr "Dins la columna:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Desar dades editades" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Reataurar ordre de columnes" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Fila d'inici" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Nombre de files" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Mode" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horitzontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horitzontal (capçaleres rotades)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Capceleres cada %s files" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Classifica per la clau" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2765,60 +2787,60 @@ msgstr "Classifica per la clau" msgid "Options" msgstr "Opcions" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Textos parcials" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Textos sencers" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Clau relacional" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Columna relacional a mostrar" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Mostra continguts binaris" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Mostra contingut BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Mostra el contingut binari com HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Amagar transformació del navegador" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Text conegut" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Binari conegut" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "S'ha esborrat la fila" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Finalitzar" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2826,44 +2848,44 @@ msgstr "" "Pot ser aproximat. Veieu [a@./Documentation.html#faq3_11@Documentation]PCF -" "FAQ- 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "en consulta" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Mostrant registres" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Vista d'impresió (amb texts sencers)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Mostra el gràfic" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Visualitzar dades GIS" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Crea una vista" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "No s'ha trobat l'enllaç" @@ -2992,8 +3014,8 @@ msgstr "" "esborrar." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Bases de dades" @@ -3009,11 +3031,11 @@ msgid "Tracking" msgstr "Seguiment" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Disparadors" @@ -3031,9 +3053,9 @@ msgstr "La base de dades sembla buida!" msgid "Query" msgstr "Consulta segons exemple" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Permisos" @@ -3042,7 +3064,7 @@ msgid "Routines" msgstr "Rutines" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Esdeveniments" @@ -3140,46 +3162,46 @@ msgstr "%s s'ha desactivat en aquest servidor MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "Estat de taula desconegut " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Base de dades origen" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s no trobat!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Base de dades incorrecte" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Nom de taula incorrecte" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error reanomenant la taula %1$s a %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "La taula %s ha canviat de nom a %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "No s'ha pogut desar la llista de preferències d'interfície" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3188,7 +3210,7 @@ msgstr "" "No s'ha pogut netejar la taula de preferències de la interfície d'usuari " "(vegeu $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3200,7 +3222,7 @@ msgstr "" "l'estructura de la taula ha canviat." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funció" @@ -3212,7 +3234,7 @@ msgstr "Operador" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3244,14 +3266,14 @@ msgstr "Ordre del llistat:" #: libraries/TableSearch.class.php:856 msgid "Use this column to label each point" -msgstr "" +msgstr "Utilitza aquesta columna per etiquetar cada punt" #: libraries/TableSearch.class.php:877 msgid "Maximum rows to plot" msgstr "Màxim nombre de files a dibuixar" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Navega valors externs" @@ -3271,7 +3293,7 @@ msgstr "Fer una \"petició segons exemple\" (comodí: \"%\")" #: libraries/TableSearch.class.php:1198 msgid "Browse/Edit the points" -msgstr "" +msgstr "Veure/editar els punts" #: libraries/TableSearch.class.php:1205 msgid "How to use" @@ -3610,7 +3632,7 @@ msgstr "compartit" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Taules" @@ -3621,9 +3643,10 @@ msgstr "Taules" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Dades" @@ -3746,32 +3769,32 @@ msgid "Disabled" msgstr "Desactivat" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "estructura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "dades" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "estructura i dades" @@ -4196,13 +4219,13 @@ msgstr "Compresió" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Posa els noms de columnes a la primera fila" @@ -4225,7 +4248,6 @@ msgstr "Columnes amb marca d'escapada" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Canvía NULL per" @@ -4265,23 +4287,22 @@ msgstr "Plantilla de nom de taula" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Bolcat de taula" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Inclusió del titol de taula" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Títol de taula" @@ -4290,14 +4311,14 @@ msgid "Continued table caption" msgstr "Continuació del títol de taula" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Etiqueta de clau" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Tipus MIME" @@ -4334,7 +4355,7 @@ msgid "SQL compatibility mode" msgstr "Modus de compatibilitat SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "opcions CREATE TABLE :" @@ -4347,7 +4368,7 @@ msgid "Use delayed inserts" msgstr "Usa insercions diferides" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Desactiva les comprovacions de claus externes" @@ -4364,7 +4385,7 @@ msgid "Syntax to use when inserting data" msgstr "Sintaxi a usar a l'inserció de dades" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Tamany màxim de la consulta creada" @@ -4373,7 +4394,7 @@ msgid "Export type" msgstr "Tipus d'exportació" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Incloure exportació en la transacció" @@ -4429,7 +4450,6 @@ msgstr "Configura les opcions predeterminades" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4489,7 +4509,6 @@ msgstr "" "Configura els directoris d'importació i exportació i les opcions d'empaquetat" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4723,7 +4742,6 @@ msgid "Customize text input fields" msgstr "Configurar camps d'entrada de text" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "text Texy!" @@ -5930,9 +5948,11 @@ msgstr "Necessita activar el SQL Validator" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Contrasenya" @@ -6113,7 +6133,6 @@ msgstr "CSV usant LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Full de càlcul Open Document" @@ -6135,19 +6154,16 @@ msgstr "Opcions d'exportació de bases de dades" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV per dades de MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Text format Open Document" @@ -6203,7 +6219,7 @@ msgstr "No es troba l'extensió %s. Comprova la configuració de PHP." msgid "possible deep recursion attack" msgstr "possible atac de recursivitat profunda" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6211,19 +6227,19 @@ msgstr "" "El servidor no està responent (o el sòcol del servidor local MySQL no està " "configurat correctament)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "El servidor no respon." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Comprova els permisos del directori que conté la base de dades." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detalls..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6236,13 +6252,15 @@ msgid "Change password" msgstr "Canvi de contrasenya" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Sense contrasenya" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Reescriu" @@ -6263,8 +6281,9 @@ msgstr "Crear base de dades" msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Sense permisos" @@ -6274,12 +6293,12 @@ msgid "Create table" msgstr "Crea una taula" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nom" @@ -6418,7 +6437,7 @@ msgid "View output as text" msgstr "Veure la sortida com a texte" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Format:" @@ -6937,52 +6956,52 @@ msgstr "El Blog de PrimeBase XT per Paul McCullagh" msgid "No data found for GIS visualization." msgstr "No s'han trobat dades per a visualització GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Veure el contingut d'una estructura prement sobre el seu nom" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç " "\"Opcions\"" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Editar estructura seguint l'enllaç \"Estructura\"" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Anar a la base de dades %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Editar configuració de %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Anar a la taula: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Anar a la vista: %s" @@ -7054,11 +7073,11 @@ msgstr "" "Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't " "on vulguis" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" @@ -7306,7 +7325,7 @@ msgstr "Documentació de phpMyAdmin" msgid "Reload navigation frame" msgstr "Recarrega el marc de navegació" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Aquest format no té opcions" @@ -7421,93 +7440,93 @@ msgstr "Cap clau d'autenticació vàlida endollada" msgid "Authenticating..." msgstr "Autenticant..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Columnes separades amb:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Columnes englobades per:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Columnes amb marca d'escapada:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Línies acabades amb:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Canvía NULL amb:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Treu caràcters cr/lf dins de les columnes" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Edició per excel:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Opcions de bolcat de dades" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Bolcant dades de la taula" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Esdeveniment" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definició" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Estructura de la taula" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Estructura per a vista" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Estructura de suport per a vistes" @@ -7523,98 +7542,87 @@ msgstr "(continua)" msgid "Structure of table @TABLE@" msgstr "Estructura de la taula @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Opcions de creació d'objectes" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Títol de taula (continuació)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Mostra les relacions de claus externes" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Mostra comentaris" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Mostra tipus MIME" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Servidor" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Temps de generació" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versió del servidor" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Versió de PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Taula MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "Exporta contingut" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horitzontal (capçaleres rotades)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Crea un llistat que conté les dades d'una sola taula)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Títol de llistat:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "matriu PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7622,13 +7630,13 @@ msgstr "" "Mostra comentaris (inclou informació com a marca de temps d'exportació, " "versió de PHP, i versió del servidor)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Afegeix comentari personalitzat a la capçalera (\n" " divideix línies):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7636,25 +7644,25 @@ msgstr "" "Inclou una marca de temps de quan es van crear les bases de dades, darrera " "actualització, i darrera comprovació" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Sistema de base de dades o antic servidor MySQL per maximitzar la " "compatibilitat de sortida amb:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Afegir instrucció %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Afegir instruccions:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7662,32 +7670,39 @@ msgstr "" "Envoltar noms de taules i camps amb cometes inverses (Protegeix els noms " "de camps i taules compostos de caràcters especials o paraules clau)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Opcions de creació d'objectes" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Enlloc d'instruccions INSERT , usa:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "instruccions INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "instruccions INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Funció a usar quan es bolquin dades:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Sintaxi a usar quan s'insereixin dades:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7697,7 +7712,7 @@ msgstr "" "      Exemple: INSERT INTO tbl_name (col_A,col_B,col_C) " "VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7707,7 +7722,7 @@ msgstr "" "    Exemple: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7715,7 +7730,7 @@ msgstr "" "Ambdós anteriors
      Exemple: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7723,7 +7738,7 @@ msgstr "" "Cap dels anteriors
      Exemple: INSERT INTO " "tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7731,7 +7746,7 @@ msgstr "" "Bolcat de columnes binàries en notació hexadecimal (per exemple, \"abc\" " "s'expressarà com a 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7739,50 +7754,45 @@ msgstr "" "Bolcat de columnes TIMESTAMP en UTC (permet que columnes TIMESTAMP es " "bolquin i recarreguin entre servidors de diferents zones horàries)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procediments" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funcions" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Restriccions per taules bolcades" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Restriccions per la taula" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "TIPUS MIME PER LA TAULA" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELACIONS DE LA TAULA" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Error llegint dades:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Opcions de creació d'objectes (es recomanen totes)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Vistes" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Exporta contingut" @@ -7857,6 +7867,10 @@ msgstr "Nom de les columnes" msgid "This plugin does not support compressed imports!" msgstr "Aquesta extensió no suporta importacions comprimides!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Taula MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7914,6 +7928,10 @@ msgstr "Modus de compatibilitat SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No feu servir AUTO_INCREMENT per a valors zero" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8159,11 +8177,12 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-entra a phpMyAdmin per a carregar l'arxiu de configuració actualitzat." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "sense descripció" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Desmarcar tot" @@ -8185,9 +8204,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Nom d'usuari" @@ -8224,34 +8244,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Afegeix l'usuari esclau de replicació" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Qualsevol usuari" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Usa camp de text" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Qualsevol servidor" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Aquest Host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Utilitza la Taula de Hosts" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8267,7 +8296,7 @@ msgstr "Genera una Contrasenya" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8303,8 +8332,8 @@ msgid "Edit event" msgstr "Editar esdeveniment" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Error processant a la petició" @@ -8380,7 +8409,8 @@ msgstr "Has de proporcionar un tipus vàlid per a l'esdeveniment." msgid "You must provide an event definition." msgstr "Has de proporcionar una definició d'esdeveniment." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Nou" @@ -8511,25 +8541,25 @@ msgstr "Has de proporcionar un tipus de resposta vàlida per a la rutina." msgid "You must provide a routine definition." msgstr "Has de proporcionar una definició de la rutina." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Resultats de l'execució de la rutina %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d fila afectada per l'última sentència dins el procediment" msgstr[1] "%d files afectades per l'última sentència dins el procediment" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Resultats de l'execució de la rutina %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Executar rutina" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Paràmetres de rutina" @@ -8658,28 +8688,28 @@ msgstr "No s'ha trobat un esdeveniment amb nom %1$s a la base de dades %2$s" msgid "There are no events to display." msgstr "No hi ha esdeveniments per mostrar." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "La taula %s no existeix!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configura les coordinades per la taula %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Esquema de la base de dades %s - Pàgina %s" @@ -8816,6 +8846,456 @@ msgstr "Idioma desconegut: %1$s." msgid "Current Server" msgstr "Servidor actual" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Sense permisos." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Inclou tots els permisos excepte GRANT -atorgar-." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Permet llegir dades." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Permet inserir i modificar dades." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Permet canviar dades." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Permet esborrar dades." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Permet crear noves bases de dades i taules." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Permet eliminar bases de dades i taules." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Permet recarregar les configuracions del servidor i buidar les seves " +"memòries cau." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Permet parar el servidor." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Permet veure processos de tots els usuaris" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Permet importar i exportar dades amb arxius externs." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "No té efecte en aquesta versió de MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Permet crear i eliminar indexs." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Permet alterar l'estructura de taules existents." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Dona accés a la llista completa de bases de dades." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Permet connectar, encara que s'hagi arribat al màxim numero de connexions " +"permès; es necessari per moltes operacions d'administració com ara establir " +"variables globals o bé cancel.lar fils d'execució d'altres usuaris." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Permet crear taules temporals." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Permet bloquejar taules per l'actual fil d'execució." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Es necessari per a la replicació en servidors esclaus." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Dona el dret a l'usuari de preguntar quins servidors mestres / esclaus hi ha." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Permet crear noves vistes." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Permet establir events per al planificador d'events" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Permet crear i eliminar disparadors -triggers-" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Permet fer consultes de tipus SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Permet crear rutines enmgatzemades." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Permet alterar i esborrar rutines enmagatzemades." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Permet crear, esborrar i reanomenar comptes d'usuari." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Permet executar rutines enmagatzemades." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Cap" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Limit de recursos" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero) ." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Limita el numero de consultes que pot enviar l'usuari al servidor per hora." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Limita el numero d'ordres que pot executar l'usuari canviant qualsevol taula " +"o base de dades per hora." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Limita el numero de noves connexions que pot obrir l'usuari per hora." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Permisos especifics de taula" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Nota: Els noms dels privilegis del MySQL són en idioma anglès" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administració" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Permisos generals" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Permisos específics de base de dades" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Permet crear noves taules." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Permet eliminar taules." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Permet afegir usuaris i permisos sense tenir que recarregar les taules de " +"permisos." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Informació d'Identificació" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "No canviïs la contrasenya" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "La contrasenya per %s s'ha canviat correctament." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Has tret els permisos per %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Base de dades per usuari" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Atorga tots els permisos en un nom comodí (nomusuari\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Atorga tots els permisos a la base de dades "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Usuaris amb accés a "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Usuari" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Atorga" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Usuari afegit." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Qualsevol" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "específic de la base de dades" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "comodins" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "No s'han trobat usuaris." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Edita permisos" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Treu" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Exporta" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... respecta l'antic." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... esborra l'antic de les taules d'usuaris." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... treu tots els permisos actius de l'antic i esborra'l després." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... esborra l'antic de les taules d'usuaris i recarrega els permisos " +"després." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Canvi d'Informació de Connexió / Copia d'Usuari" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Crea un nou usuari amb els mateixos permisos i ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Permisos específics de columna" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Afegeix permisos a la següent base de dades" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Els comodins _ i % han de marcar-se amb una \\ per usar-los literalment" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Afegeix permisos a la següent taula" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Treu els usuaris triats" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Treu tots els permisos actius dels usuaris i els esborra després." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Esborra les bases de dades que tenen els mateixos noms que els usuaris." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "No s'han triat usuaris per esborrar!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Recarregant permisos" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "S'han esborrat correctament els usuaris triats." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Heu actualitzat els permisos de %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Permisos" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Permisos" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Vista global d'usuaris" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de " +"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels " +"permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " +"cas, es necessari %srecarregar els permisos%s abans de continuar." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "No s'ha trobat l'usuari triat a la taula de permisos." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Has afegit un usuari nou." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Base de dades origen" @@ -8862,11 +9342,11 @@ msgstr "Neteja" msgid "Columns" msgstr "Columnes" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" @@ -9152,12 +9632,6 @@ msgstr "Versió de programari" msgid "Protocol version" msgstr "Versió del protocol" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Usuari" - #: main.php:217 msgid "Server charset" msgstr "Joc de caracters del servidor" @@ -9683,446 +10157,20 @@ msgstr "Licència" msgid "disabled" msgstr "desactivat" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Inclou tots els permisos excepte GRANT -atorgar-." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Permet alterar l'estructura de taules existents." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Permet alterar i esborrar rutines enmagatzemades." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Permet crear noves bases de dades i taules." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Permet crear rutines enmgatzemades." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Permet crear noves taules." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Permet crear taules temporals." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Permet crear, esborrar i reanomenar comptes d'usuari." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Permet crear noves vistes." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Permet esborrar dades." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Permet eliminar bases de dades i taules." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Permet eliminar taules." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Permet establir events per al planificador d'events" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Permet executar rutines enmagatzemades." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Permet importar i exportar dades amb arxius externs." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Permet afegir usuaris i permisos sense tenir que recarregar les taules de " -"permisos." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Permet crear i eliminar indexs." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Permet inserir i modificar dades." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Permet bloquejar taules per l'actual fil d'execució." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Limita el numero de noves connexions que pot obrir l'usuari per hora." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Limita el numero de consultes que pot enviar l'usuari al servidor per hora." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Limita el numero d'ordres que pot executar l'usuari canviant qualsevol taula " -"o base de dades per hora." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Permet veure processos de tots els usuaris" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "No té efecte en aquesta versió de MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Permet recarregar les configuracions del servidor i buidar les seves " -"memòries cau." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Dona el dret a l'usuari de preguntar quins servidors mestres / esclaus hi ha." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Es necessari per a la replicació en servidors esclaus." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Permet llegir dades." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Dona accés a la llista completa de bases de dades." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Permet fer consultes de tipus SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Permet parar el servidor." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Permet connectar, encara que s'hagi arribat al màxim numero de connexions " -"permès; es necessari per moltes operacions d'administració com ara establir " -"variables globals o bé cancel.lar fils d'execució d'altres usuaris." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Permet crear i eliminar disparadors -triggers-" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Permet canviar dades." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Sense permisos." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Cap" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Permisos especifics de taula" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Nota: Els noms dels privilegis del MySQL són en idioma anglès" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administració" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Permisos generals" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Permisos específics de base de dades" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Limit de recursos" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero) ." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Informació d'Identificació" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "No canviïs la contrasenya" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "No s'han trobat usuaris." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "L'usuari %s ja existeix!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Has afegit un usuari nou." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Heu actualitzat els permisos de %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Has tret els permisos per %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "La contrasenya per %s s'ha canviat correctament." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Esborrant %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "No s'han triat usuaris per esborrar!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Recarregant permisos" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "S'han esborrat correctament els usuaris triats." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Edita permisos" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Treu" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Exporta" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Qualsevol" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Permisos" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Permisos" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Vista global d'usuaris" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Atorga" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Treu els usuaris triats" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Treu tots els permisos actius dels usuaris i els esborra després." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Esborra les bases de dades que tenen els mateixos noms que els usuaris." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de " -"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels " -"permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " -"cas, es necessari %srecarregar els permisos%s abans de continuar." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "No s'ha trobat l'usuari triat a la taula de permisos." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Permisos específics de columna" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Afegeix permisos a la següent base de dades" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Els comodins _ i % han de marcar-se amb una \\ per usar-los literalment" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Afegeix permisos a la següent taula" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Canvi d'Informació de Connexió / Copia d'Usuari" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Crea un nou usuari amb els mateixos permisos i ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... respecta l'antic." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... esborra l'antic de les taules d'usuaris." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... treu tots els permisos actius de l'antic i esborra'l després." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... esborra l'antic de les taules d'usuaris i recarrega els permisos " -"després." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Base de dades per usuari" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Atorga tots els permisos en un nom comodí (nomusuari\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Atorga tots els permisos a la base de dades "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Usuaris amb accés a "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "específic de la base de dades" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "comodins" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Usuari afegit." - #: server_replication.php:82 msgid "Unknown error" msgstr "Error desconegut" @@ -10426,6 +10474,8 @@ msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" +"El sistema de consells pot proporcionar recomanacions sobre les variables " +"del servidor mitjançant l'anàlisi de les variables d'estat del servidor." #: server_status.php:930 msgid "" @@ -10433,6 +10483,9 @@ msgid "" "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" +"Tingues en compte però que aquest sistema ofereix recomanacions basades en " +"càlculs senzills i regles generals que no necessàriament s'apliquen al seu " +"sistema." #: server_status.php:932 msgid "" @@ -10440,6 +10493,10 @@ msgid "" "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" +"Abans de canviar qualsevol configuració, assegura't de saber què estàs " +"canviant (mitjançant la lectura de la documentació) i cóm desfer el canvi. " +"Establir ajustaments incorrectes pot tenir un efecte molt negatiu en el " +"rendiment." #: server_status.php:934 msgid "" @@ -10447,6 +10504,9 @@ msgid "" "time, observe or benchmark your database, and undo the change if there was " "no clearly measurable improvement." msgstr "" +"La millor manera d'ajustar el sistema seria canviar només una configuració " +"al mateix temps, observar o mesurar la teva base de dades, i desfer el canvi " +"si no hi ha una millora clarament mesurable." #. l10n: Questions is the name of a MySQL Status variable #: server_status.php:957 @@ -10461,17 +10521,18 @@ msgstr "Sentències" #. l10n: # = Amount of queries #: server_status.php:996 msgid "#" -msgstr "" +msgstr "#" #: server_status.php:1070 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "tràfic de xarxa des de l'inici: %s" #: server_status.php:1086 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Aquest servidor MySQL és en marxa durant %1$s. Es va iniciar en %2$s." +msgstr "" +"Aquest servidor MySQL ha estat actiu durant %1$s. Es va iniciar el %2$s." #: server_status.php:1097 msgid "" @@ -10546,6 +10607,8 @@ msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" +"El nombre de connexions que van ser avortades pel fet que el client va morir " +"sense tancar la connexió correctament." #: server_status.php:1359 msgid "The number of failed attempts to connect to the MySQL server." @@ -10569,7 +10632,7 @@ msgstr "" #: server_status.php:1362 msgid "" "The number of connection attempts (successful or not) to the MySQL server." -msgstr "" +msgstr "El nombre d'intents de connexió (amb èxit o no) amb el servidor MySQL." #: server_status.php:1363 msgid "" @@ -11016,6 +11079,8 @@ msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" +"El nombre màxim de connexions que han estat en ús a la vegada des de que el " +"servidor s'ha iniciat." #: server_status.php:1437 msgid "The number of rows waiting to be written in INSERT DELAYED queues." @@ -11048,6 +11113,9 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"El nombre de blocs de memòria lliures en memòria cau de consultes. Els " +"números alts poden indicar problemes de fragmentació, que poden ser resolts " +"mitjançant una ordre FLUSH QUERY CACHE." #: server_status.php:1443 msgid "The amount of free memory for query cache." @@ -11239,11 +11307,11 @@ msgstr "Començar monitorització" #: server_status.php:1637 msgid "Instructions/Setup" -msgstr "" +msgstr "Instruccions/configuració" #: server_status.php:1644 msgid "Done rearranging/editing charts" -msgstr "" +msgstr "Reorganització acabada/edició de gràfics" #: server_status.php:1651 server_status.php:1724 msgid "Add chart" @@ -11251,7 +11319,7 @@ msgstr "Afegir gràfic" #: server_status.php:1653 msgid "Rearrange/edit charts" -msgstr "" +msgstr "Reorganitzar/editar gràfics" #: server_status.php:1657 msgid "Refresh rate" @@ -11270,6 +11338,8 @@ msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" +"La disposició dels gràfics s'emmagatzema en l'emmagatzematge local dels " +"navegadors. Pots voler exportar-ho, si tens una configuració prou complicada." #: server_status.php:1679 msgid "Reset to default" @@ -11287,6 +11357,11 @@ msgid "" "enabled. Note however, that the general_log produces a lot of data and " "increases server load by up to 15%" msgstr "" +"El monitor de phpMyAdmin pot ajudar a optimitzar la configuració del " +"servidor i localitzar a temps les consultes intensives. En aquest darrer cas " +"s'haurà d'establir log_output a 'TABLE' i tenir el slow_query_log o " +"general_log habilitat. Noteu però, que la general_log produeix una gran " +"quantitat de dades i augmenta la càrrega del servidor fins en un 15%" #: server_status.php:1689 msgid "" @@ -11295,10 +11370,15 @@ msgid "" "table is supported by MySQL 5.1.6 and onwards. You may still use the server " "charting features however." msgstr "" +"Lamentablement, el teu servidor de bases de dades no és compatible amb el " +"registre a la taula, que és un requisit per a l'anàlisi dels registres de " +"base de dades amb phpMyAdmin. El registre a la taula se suporta a partir de " +"MySQL 5.1.6 i següents. Pots seguir utilitzant però les funcions de gràfics " +"de servidor." #: server_status.php:1702 msgid "Using the monitor:" -msgstr "" +msgstr "Utilitzant el monitor:" #: server_status.php:1704 msgid "" @@ -11306,6 +11386,10 @@ msgid "" "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" +"El teu navegador actualitzarà tots els gràfics que es mostren en un interval " +"regular. Pots afegir gràfics i canviar la freqüència d'actualització a la " +"secció 'Configuració', o eliminar qualsevol gràfic amb la icona d'engranatge " +"en cada gràfic corresponent." #: server_status.php:1706 msgid "" @@ -11314,10 +11398,15 @@ msgid "" "confirmed, this will load a table of grouped queries, there you may click on " "any occuring SELECT statements to further analyze them." msgstr "" +"Per mostrar les consultes dels registres, selecciona l'interval de temps " +"rellevant en qualsevol gràfic mantenint premut el botó esquerre del ratolí i " +"arrosegant sobre el gràfic. Un cop confirmat, això carregarà una taula de " +"consultes agrupades, on podràs clicar en qualsevol de les instruccions " +"SELECT per analitzar-la amb més detall." #: server_status.php:1713 msgid "Please note:" -msgstr "" +msgstr "Tingueu en compte:" #: server_status.php:1715 msgid "" @@ -11326,6 +11415,11 @@ msgid "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" +"Activar el general_log pot augmentar la càrrega del servidor en un 5-15%. " +"També tingues en compte que la generació d'estadístiques dels registres és " +"una tasca de càrrega intensiva, pel que és aconsellable seleccionar només un " +"lapse de temps petit i per desactivar el general_log i buidar la taula una " +"vegada que el monitoratge no es requereixi més." #: server_status.php:1729 msgid "Preset chart" @@ -11341,7 +11435,7 @@ msgstr "Seleccionar series:" #: server_status.php:1737 msgid "Commonly monitored" -msgstr "" +msgstr "Comunment monitoritzat" #: server_status.php:1752 msgid "or type variable name:" @@ -11349,15 +11443,15 @@ msgstr "o escriu el nom de variable:" #: server_status.php:1756 msgid "Display as differential value" -msgstr "" +msgstr "Mostra com a valor diferencial" #: server_status.php:1758 msgid "Apply a divisor" -msgstr "" +msgstr "Aplicar un divisor" #: server_status.php:1765 msgid "Append unit to data values" -msgstr "" +msgstr "Afegir unitat als valors" #: server_status.php:1771 msgid "Add this series" @@ -11365,7 +11459,7 @@ msgstr "Afegir aquesta serie" #: server_status.php:1773 msgid "Clear series" -msgstr "" +msgstr "Buidar sèrie" #: server_status.php:1776 msgid "Series in Chart:" @@ -11381,19 +11475,21 @@ msgstr "Rang de temps seleccionat:" #: server_status.php:1797 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" +msgstr "Només recuperar instruccions SELECT, INSERT, UPDATE i DELETE" #: server_status.php:1802 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" +"Elimina dades variables en les instruccions INSERT per a una millor " +"agrupació" #: server_status.php:1807 msgid "Choose from which log you want the statistics to be generated from." -msgstr "" +msgstr "Tria de quin registre vols que es generin les estadístiques." #: server_status.php:1809 msgid "Results are grouped by query text." -msgstr "" +msgstr "Els resultats s'agrupen pel text de la consulta." #: server_status.php:1814 msgid "Query analyzer" @@ -11529,7 +11625,7 @@ msgstr "" #: server_variables.php:87 msgid "Setting variable failed" -msgstr "" +msgstr "Errada a la configuració de la variable" #: server_variables.php:100 msgid "Server variables and settings" @@ -11550,6 +11646,8 @@ msgstr "Descarrega" #: setup/frames/form.inc.php:25 msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php" msgstr "" +"Conjunt de formularis incorrecte, comprova l'array $formsets a l'arxiu " +"setup/frames/form.inc.php" #: setup/frames/index.inc.php:51 msgid "Cannot load or save configuration" @@ -11597,6 +11695,9 @@ msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " "directory, copy it to top level one and delete directory config to use it." msgstr "" +"Configuració desada a l'arxiu config/config.inc.php dins el directori arrel " +"de phpMyAdmin, copia'l al nivell superior i elimina el directori de " +"configuració per utilitzar-lo." #: setup/frames/index.inc.php:107 setup/frames/menu.inc.php:16 msgid "Overview" @@ -11660,7 +11761,7 @@ msgstr "Afegir un nou servidor" #: setup/index.php:22 msgid "Wrong GET file attribute value" -msgstr "" +msgstr "Valor incorrecte d'atribut d'arxiu en GET" #: setup/lib/form_processing.lib.php:43 msgid "Warning" @@ -11876,39 +11977,39 @@ msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials." msgid "Wrong data" msgstr "Dades incorrectes" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usar el preferit \"%s\" com a pàgina de cerca per defecte." -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Realment vols fer?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Mostrant com a codi PHP" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "SQL validat" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Resultat SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Generat per" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etiqueta" @@ -11958,7 +12059,7 @@ msgstr "Títol del gràfic" #: tbl_chart.php:106 msgid "X-Axis:" -msgstr "" +msgstr "Eix X:" #: tbl_chart.php:121 msgid "Series:" @@ -12220,7 +12321,7 @@ msgstr "Mida de fila" #: tbl_printview.php:406 tbl_structure.php:963 msgid "Next autoindex" -msgstr "" +msgstr "AUTOINDEX Següent" #: tbl_relation.php:281 #, php-format @@ -12246,7 +12347,7 @@ msgstr "Límit de clau externa" #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:601 msgid "Spatial" -msgstr "" +msgstr "Espacial" #: tbl_structure.php:161 tbl_structure.php:165 #, fuzzy @@ -12532,22 +12633,26 @@ msgstr "Reanomena la vista a" #: libraries/advisory_rules.txt:49 msgid "Uptime below one day" -msgstr "" +msgstr "Temps d'activitat per sota d'un dia" #: libraries/advisory_rules.txt:52 msgid "Uptime is less than 1 day, performance tuning may not be accurate." msgstr "" +"El temps d'activitat és inferior a 1 dia, l'optimització del rendiment pot " +"no ser exacta." #: libraries/advisory_rules.txt:53 msgid "" "To have more accurate averages it is recommended to let the server run for " "longer than a day before running this analyzer" msgstr "" +"Per tenir unes mitjanes més exactes, es recomana deixar que el servidor " +"funcioni durant més d'un dia abans d'executar aquest analitzador" #: libraries/advisory_rules.txt:54 #, php-format msgid "The uptime is only %s" -msgstr "" +msgstr "El temps d'activitat només és de %s" #: libraries/advisory_rules.txt:56 msgid "Questions below 1,000" @@ -12558,12 +12663,16 @@ msgid "" "Fewer than 1,000 questions have been run against this server. The " "recommendations may not be accurate." msgstr "" +"S'han fet menys de 1.000 consultes en aquest servidor. Les recomanacions " +"poden no ser exactes." #: libraries/advisory_rules.txt:60 msgid "" "Let the server run for a longer time until it has executed a greater amount " "of queries." msgstr "" +"Deixa que el servidor s'executi per més temps fins que s'hagi dut a terme " +"una major quantitat de consultes." #: libraries/advisory_rules.txt:61 #, php-format @@ -12578,17 +12687,22 @@ msgstr "Percentatge de consultes lentes" msgid "" "There is a lot of slow queries compared to the overall amount of Queries." msgstr "" +"Hi ha una gran quantitat de consultes lentes (slow-queries) en comparació " +"amb la quantitat total de consultes." #: libraries/advisory_rules.txt:67 libraries/advisory_rules.txt:74 msgid "" "You might want to increase {long_query_time} or optimize the queries listed " "in the slow query log" msgstr "" +"Podries augmentar la variable {long_query_time} o optimitzar les consultes " +"que figuren en el registre de consultes lentes" #: libraries/advisory_rules.txt:68 #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" +"La taxa de consultes lentes ha de ser inferior al 5%%, el teu valor és %s%%." #: libraries/advisory_rules.txt:70 msgid "Slow query rate" @@ -12598,6 +12712,8 @@ msgstr "Freqüència de consultes lentes" msgid "" "There is a high percentage of slow queries compared to the server uptime." msgstr "" +"Hi ha un alt percentatge de consultes lentes en comparació amb el temps " +"d'activitat del servidor." #: libraries/advisory_rules.txt:75 #, php-format @@ -12605,6 +12721,8 @@ msgid "" "You have a slow query rate of %s per hour, you should have less than 1%% per " "hour." msgstr "" +"Tens una taxa de consultes lentes de %s per hora, hauries de tenir menys de " +"l'1%% per hora." #: libraries/advisory_rules.txt:77 msgid "Long query time" @@ -12615,40 +12733,44 @@ msgid "" "long_query_time is set to 10 seconds or more, thus only slow queries that " "take above 10 seconds are logged." msgstr "" +"long_query_time s'estableix en 10 segons o més, per tant, només entrarà les " +"consultes lentes que triguin més de 10 segons." #: libraries/advisory_rules.txt:81 msgid "" "It is suggested to set {long_query_time} to a lower value, depending on your " "environment. Usually a value of 1-5 seconds is suggested." msgstr "" +"Es suggereix establir {long_query_time} a un valor inferior, depenent del " +"teu entorn. En general, es recomana un valor de 1-5 segons." #: libraries/advisory_rules.txt:82 -#, fuzzy, php-format +#, php-format #| msgid "long_query_time is set to %d second(s)." msgid "long_query_time is currently set to %ds." -msgstr "«long_query_time» està configurat a %d segon(s)." +msgstr "long_query_time està configurat a %ds." #: libraries/advisory_rules.txt:84 msgid "Slow query logging" msgstr "Registre de consultes lentes" #: libraries/advisory_rules.txt:87 -#, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." -msgstr "«slow_query_log» està actiu." +msgstr "El registre de consultes lentes està desactivat." #: libraries/advisory_rules.txt:88 msgid "" "Enable slow query logging by setting {log_slow_queries} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" +"Habilita el registre de consultes lentes establint {log_slow_queries} a " +"'ON'. Això t'ajudarà a solucionar les consultes amb mal rendiment." #: libraries/advisory_rules.txt:89 -#, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "log_slow_queries is set to 'OFF'" -msgstr "«long_query_time» està configurat a %d segon(s)." +msgstr "log_slow_queries està a 'OFF'" #: libraries/advisory_rules.txt:93 msgid "Release Series" @@ -12656,13 +12778,15 @@ msgstr "Serie de versions" #: libraries/advisory_rules.txt:96 msgid "The MySQL server version less than 5.1." -msgstr "" +msgstr "La versió del servidor MySQL és inferior a 5.1." #: libraries/advisory_rules.txt:97 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." msgstr "" +"Hauries d'actualitzar, ja que MySQL 5.1 té millor rendiment, i encara és " +"millor en MySQL 5.5." #: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 #: libraries/advisory_rules.txt:112 @@ -12676,17 +12800,19 @@ msgstr "Versió menor" #: libraries/advisory_rules.txt:103 msgid "Version less than 5.1.30 (the first GA release of 5.1)." -msgstr "" +msgstr "Versió inferior a 5.1.30 (la primera versió disponible pública de 5.1)." #: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as recent versions of MySQL 5.1 have improved " "performance and MySQL 5.5 even more so." msgstr "" +"Hauries d'actualitzar, ja que les darreres versions de MySQL 5.1 tenen " +"millor rendiment, i MySQL 5.05 encara més." #: libraries/advisory_rules.txt:110 msgid "Version less than 5.5.8 (the first GA release of 5.5)." -msgstr "" +msgstr "Versió inferior a 5.5.8 (la primera versió disponible pública de 5.5)." #: libraries/advisory_rules.txt:111 msgid "You should upgrade, to a stable version of MySQL 5.5" @@ -12699,7 +12825,7 @@ msgstr "Distribució" #: libraries/advisory_rules.txt:117 msgid "Version is compiled from source, not a MySQL official binary." -msgstr "" +msgstr "Versió compilada des del codi font, no és un binari oficial de MySQL." #: libraries/advisory_rules.txt:118 msgid "" @@ -12707,31 +12833,39 @@ msgid "" "distribution. The MySQL manual only is accurate for official MySQL binaries, " "not any package distributions (such as RedHat, Debian/Ubuntu etc)." msgstr "" +"Si no vas compilar des del codi font, potser estàs utilitzant un paquet " +"modificat per una distribució. El manual de MySQL només és exacte per als " +"binaris de MySQL oficials, no per els paquets de distribucions (com RedHat, " +"Debian/Ubuntu, etc)." #: libraries/advisory_rules.txt:119 msgid "'source' found in version_comment" msgstr "" +"S'ha trobat \"font\" (\"source\") en el comentari de la versió " +"(\"version_comment\")" #: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 msgid "The MySQL manual only is accurate for official MySQL binaries." -msgstr "" +msgstr "El manual de MySQL només és exacte per als binaris oficials de MySQL." #: libraries/advisory_rules.txt:125 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" -msgstr "" +msgstr "La documentació de Percona es troba a http://www.percona.com/docs/wiki/" #: libraries/advisory_rules.txt:126 msgid "'percona' found in version_comment" -msgstr "" +msgstr "S'ha trobat 'percona' als comentaris de la versió (\"version_comment\")" #: libraries/advisory_rules.txt:132 msgid "Drizzle documentation is at http://docs.drizzle.org/" -msgstr "" +msgstr "La documentació de Drizzle es troba a http://docs.drizzle.org/" #: libraries/advisory_rules.txt:133 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" +"La cadena de la versió (%s) coincideix amb el sistema de control de versions " +"de Drizzle" #: libraries/advisory_rules.txt:135 msgid "MySQL Architecture" @@ -12739,7 +12873,7 @@ msgstr "Arquitectura MySQL" #: libraries/advisory_rules.txt:138 msgid "MySQL is not compiled as a 64-bit package." -msgstr "" +msgstr "MySQL no s'ha compilat com a paquet de 64 bits." #: libraries/advisory_rules.txt:139 msgid "" @@ -12747,11 +12881,15 @@ msgid "" "so MySQL might not be able to access all of your memory. You might want to " "consider installing the 64-bit version of MySQL." msgstr "" +"La teva capacitat de memòria és superior a 3 GiB (suposant que el servidor " +"està en localhost), de manera que MySQL no podria ser capaç d'accedir a la " +"totalitat de la seva memòria. És possible que vulgueu considerar la " +"instal·lació de la versió de 64 bits de MySQL." #: libraries/advisory_rules.txt:140 #, php-format msgid "Available memory on this host: %s" -msgstr "" +msgstr "Memòria disponible en aquest servidor: %s" #: libraries/advisory_rules.txt:146 msgid "Query cache disabled" @@ -12768,20 +12906,23 @@ msgid "" "and setting {query_cache_type} to 'ON'. Note: If you are using " "memcached, ignore this recommendation." msgstr "" +"Se sap que la memòria cau de consultes millora en gran mesura el rendiment " +"si s'ha configurat correctament. Activa'l mitjançant l'establiment de " +"{query_cache_size} a un valor MIB de 2 dígits i ajusta {query_cache_type} a " +"'ON'. Nota: Si utilitzes memcached, ignora aquesta recomanació." #: libraries/advisory_rules.txt:151 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" -msgstr "" +msgstr "query_cache_size s'estableix a 0 o query_cache_type està a 'OFF'" #: libraries/advisory_rules.txt:153 msgid "Query caching method" msgstr "Mètode de cau de consultes" #: libraries/advisory_rules.txt:156 -#, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." -msgstr "Memòria cau de consultes" +msgstr "Mètode d'emmagatzematge en memòria cau subòptima." #: libraries/advisory_rules.txt:157 msgid "" @@ -12790,6 +12931,11 @@ msgid "" "refman/5.5/en/ha-memcached.html\">memcached instead of the MySQL Query " "cache, especially if you have multiple slaves." msgstr "" +"Estàs utilitzant la memòria cau de consultes de MySQL amb una base de dades " +"de força transit. Valdria la pena considerar l'ús memcached en lloc de la memòria cau de consultes de " +"MySQL, especialment si tens diversos servidors esclaus." #: libraries/advisory_rules.txt:158 #, php-format @@ -12797,6 +12943,8 @@ msgid "" "The query cache is enabled and the server receives %d queries per second. " "This rule fires if there is more than 100 queries per second." msgstr "" +"La memòria cau de consultes està activat i el servidor rep %d consultes per " +"segon. Aquesta regla es dispara si hi ha més de 100 consultes per segon." #: libraries/advisory_rules.txt:160 #, php-format @@ -12806,16 +12954,19 @@ msgstr "Eficiència del cau de consultes (%%)" #: libraries/advisory_rules.txt:163 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" +"La memòria cau de consulta no s'executa de manera eficient, té una taxa " +"d'èxit baixa." #: libraries/advisory_rules.txt:164 msgid "Consider increasing {query_cache_limit}." -msgstr "" +msgstr "Pensa en la possibilitat d'augmentar {query_cache_limit}." #: libraries/advisory_rules.txt:165 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "The current query cache hit rate of %s%% is below 20%%" -msgstr "Tamany de l'àrea de classificació" +msgstr "" +"L'actual taxa d'èxit de la memòria cau de consultes %s%% és inferior al 20%%" #: libraries/advisory_rules.txt:167 msgid "Query Cache usage" @@ -12824,13 +12975,15 @@ msgstr "Ús del cau de consultes" #: libraries/advisory_rules.txt:170 #, php-format msgid "Less than 80%% of the query cache is being utilized." -msgstr "" +msgstr "S'utilitza menys del 80%% de la memòria cau de consultes." #: libraries/advisory_rules.txt:171 msgid "" "This might be caused by {query_cache_limit} being too low. Flushing the " "query cache might help as well." msgstr "" +"Això pot ser causat perque el valor de {query_cache_limit} és massa baix. " +"Buidar la memòria cau de consulta també pot ajudar." #: libraries/advisory_rules.txt:172 #, php-format @@ -12838,16 +12991,17 @@ msgid "" "The current ratio of free query cache memory to total query cache size is %s" "%%. It should be above 80%%" msgstr "" +"La taxa actual de memòria lluire del cau de consultes respecte la mida total " +"és de %s%%. Hauria de estar per sobre de 80%%" #: libraries/advisory_rules.txt:174 msgid "Query cache fragmentation" msgstr "Fragmentació del cau de consultes" #: libraries/advisory_rules.txt:177 -#, fuzzy #| msgid "The server is not responding" msgid "The query cache is considerably fragmented." -msgstr "El servidor no respon" +msgstr "La memòria cau de consultes està bastant fragmentada." #: libraries/advisory_rules.txt:178 msgid "" @@ -13638,6 +13792,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "max. connexions a la vegada" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "matriu PHP" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/ckb.po b/po/ckb.po index 22f12fe78b..9bd58a81f8 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-04 20:30+0200\n" "Last-Translator: Hunar kirkuk \n" "Language-Team: none\n" @@ -19,7 +19,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "پیشاندانی هەموو" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "گەڕان" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "گەڕان" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "بڕۆ" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "بنکەی دراوەی %1$s درووستکرا." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr ":تێبینی بنکەی دراوە" @@ -121,17 +124,17 @@ msgstr ":تێبینی بنکەی دراوە" msgid "Table comments" msgstr "تێبینیەکانی خشتە" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "ستون" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "جۆر" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "بەتاڵ" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "بەتاڵ" msgid "Default" msgstr "بنەڕەت" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "بەستەر دەکات بۆ" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "بۆچوون" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "نەخێر" @@ -243,19 +249,22 @@ msgstr "نەخێر" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "بەڵێ" @@ -263,8 +272,8 @@ msgstr "بەڵێ" msgid "View dump (schema) of database" msgstr "نیشاندانى بۆشایى (هێڵکارى) لە بنکەى دراوە" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr ".هیج خشتەیەک بوونی نیە لە نێو بنکەی دراو" @@ -280,74 +289,74 @@ msgstr "هەلنەبژاردنی هەموو" msgid "The database name is empty!" msgstr "ناوی بنکەی دراوە بەتاڵە!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "ناوی بنکەی دراوەی %1$s گۆڕدرا بۆ %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "بنکەی دراوەی %1$s ڕوونووس کرا بۆ بنکەی دراوەی %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "ناوی بنکەی دراوە بگۆڕە بۆ" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "سڕینەوەی بنکەی دراوە" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "بنکەی دراوەی %s سڕایەوە." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "سڕینەوەی بنکەی دراوە (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "لە ڕوونووسینەوەی بنکەی دراوە بۆ" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "تەنیا بنچینە" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "بنچینە و زانیاری" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "تەنیا زانیاری" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "بنکەی دراوە درووست بکە پێش ڕوونووسکردن" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "زیادکردن %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "زیادکردنی مەرج" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "بڕۆ بۆ بنکەی دراوەی ڕوونووس کراو" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "بڕۆ بۆ بنکەی دراوەی ڕوونووس کراو" msgid "Collation" msgstr "ڕێکخستن" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgid "" msgstr "" "شێوەی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە %shere%s" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "" @@ -375,16 +384,18 @@ msgstr "" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "خشتە" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "خانە" @@ -394,13 +405,13 @@ msgid "Size" msgstr "قەبارە" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "بەکار دەبرێت" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "درووستکردن" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "دواترین نوێکردنەوە" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -429,92 +440,15 @@ msgid_plural "%s tables" msgstr[0] "%s خشتە" msgstr[1] "%s خشتەکان" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "دەبێت لانیکەم ١ خانە هەڵبژێریت بۆ پیشاندان" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "لە سەرەتاوە بۆ کۆتایی" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "لە کۆتایی بۆ سەرەتا" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "ڕیزکردن" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "پیشاندان" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "مەرج" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "زۆرکردن/سڕینەوەی خانەی مەرج" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "زۆرکردن/سڕینەوەی خانە" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "نوێکردنەوەی پرس" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "خشتە بەکار ببە" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "یان" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "و" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "سڕینەوە" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "دەستکاری" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "پرسی SQL لەسەر بنکەی دراوەی %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "ناردنی پرس" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -555,7 +489,7 @@ msgstr "بەدواچوونەوە چالاکە." msgid "Tracking is not active." msgstr "بەدواچوونەوە ناچالاکە." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -583,20 +517,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "پشکنینی هەموو" @@ -604,31 +539,32 @@ msgstr "پشکنینی هەموو" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "هەناردن" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "پارچەیەک بۆ چاپکردن" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "بەتاڵ" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -672,17 +608,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "بنکەی دراو" @@ -700,18 +637,26 @@ msgstr "بارکراوە" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "ڕەوش" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "کردار" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "پیشاندان" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -752,31 +697,31 @@ msgstr "" msgid "Bad type!" msgstr "" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "دەستنیشانکردنی جۆری هەناردن بۆ پاشەکەوتکردنی لە پەڕگە!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, fuzzy, php-format msgid "Insufficient space to save the file %s." msgstr "پاشکەوتکردنی فایل وەک" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -799,7 +744,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -870,27 +815,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -898,46 +843,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "هێنان" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -952,7 +897,7 @@ msgstr "گەڕانەوە" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -961,7 +906,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1019,17 +964,21 @@ msgstr "ناوی خانەخوێ بەتاڵە!" msgid "The user name is empty!" msgstr "ناوی بەکارهێنانی خانەخوێ بەتاڵە!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "وشەی نهێنی بەتاڵە!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 #, fuzzy msgid "The passwords aren't the same!" msgstr "وشە نهێنیەکان وەک خۆیان نین" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "زیادکردنی بەکارهێنەر" @@ -1049,9 +998,9 @@ msgstr "داخستن" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1293,12 +1242,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "هیچ" @@ -1468,10 +1418,10 @@ msgid "Explain output" msgstr "" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "کات" @@ -1757,7 +1707,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "گۆڕین" @@ -1766,8 +1716,8 @@ msgstr "گۆڕین" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1838,7 +1788,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2311,14 +2261,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "هەڵە" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "داواکاری SQL" @@ -2329,7 +2279,7 @@ msgstr "داواکاری SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2358,6 +2308,10 @@ msgstr "" msgid "Create PHP Code" msgstr "" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "ناردنی پرس" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2382,7 +2336,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2409,14 +2363,14 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2424,7 +2378,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2432,7 +2386,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "" @@ -2453,16 +2407,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "" @@ -2470,21 +2425,20 @@ msgstr "" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "گەڕۆک" @@ -2505,21 +2459,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "" @@ -2536,6 +2490,74 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "لە سەرەتاوە بۆ کۆتایی" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "لە کۆتایی بۆ سەرەتا" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "ڕیزکردن" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "مەرج" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "زۆرکردن/سڕینەوەی خانەی مەرج" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "زۆرکردن/سڕینەوەی خانە" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "نوێکردنەوەی پرس" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "خشتە بەکار ببە" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "یان" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "و" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "سڕینەوە" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "دەستکاری" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "پرسی SQL لەسەر بنکەی دراوەی %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "لانیکەم یەکێک لە وشەکان" @@ -2576,8 +2598,8 @@ msgstr[1] "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2613,64 +2635,64 @@ msgstr "لەناو خشتە:\n" msgid "Inside column:" msgstr "لە نێو خشتەی:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2683,103 +2705,103 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "" @@ -2897,8 +2919,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "" @@ -2914,11 +2936,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -2936,9 +2958,9 @@ msgstr "" msgid "Query" msgstr "" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "" @@ -2947,7 +2969,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3043,50 +3065,50 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3095,7 +3117,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3107,7 +3129,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3146,7 +3168,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3493,7 +3515,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "" @@ -3504,9 +3526,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "" @@ -3620,32 +3643,32 @@ msgid "Disabled" msgstr "" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "" @@ -4043,13 +4066,13 @@ msgstr "" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "" @@ -4072,7 +4095,6 @@ msgstr "" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4112,23 +4134,22 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4137,14 +4158,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "" @@ -4181,7 +4202,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4194,7 +4215,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4211,7 +4232,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4220,7 +4241,7 @@ msgid "Export type" msgstr "" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4273,7 +4294,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "" @@ -4332,7 +4352,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "" @@ -4545,7 +4564,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5612,9 +5630,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "وشەی نهێنی" @@ -5776,7 +5796,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -5798,19 +5817,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -5866,25 +5882,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -5895,13 +5911,15 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "" @@ -5922,8 +5940,9 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "" @@ -5933,12 +5952,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "" @@ -6072,7 +6091,7 @@ msgid "View output as text" msgstr "" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "" @@ -6522,50 +6541,50 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6634,11 +6653,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6884,7 +6903,7 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -6991,93 +7010,93 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7093,238 +7112,227 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "وەشانی ڕاژە" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +msgid "Data creation options" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7391,6 +7399,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7444,6 +7456,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7627,11 +7643,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "نەپشکنینی هەموو" @@ -7651,9 +7668,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -7688,34 +7706,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7729,7 +7756,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7765,8 +7792,8 @@ msgid "Edit event" msgstr "" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -7842,7 +7869,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -7970,25 +7998,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8117,28 +8145,28 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8273,6 +8301,432 @@ msgstr "" msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8319,11 +8773,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8573,12 +9027,6 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "" - #: main.php:217 msgid "Server charset" msgstr "" @@ -9066,422 +9514,20 @@ msgstr "" msgid "disabled" msgstr "" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11025,37 +11071,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" diff --git a/po/cs.po b/po/cs.po index 44e0a8d8a1..8656b5409c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" -"PO-Revision-Date: 2012-07-09 15:14+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" +"PO-Revision-Date: 2012-07-27 11:52+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -17,7 +17,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Zobrazit vše" @@ -42,16 +43,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Vyhledávání" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -61,24 +62,26 @@ msgstr "Vyhledávání" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Proveď" @@ -112,7 +115,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Komentář k databázi: " @@ -122,17 +125,17 @@ msgstr "Komentář k databázi: " msgid "Table comments" msgstr "Komentář k tabulce" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -144,34 +147,34 @@ msgstr "Pole" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Typ" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -180,13 +183,13 @@ msgid "Null" msgstr "Nulový" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -194,10 +197,10 @@ msgstr "Nulový" msgid "Default" msgstr "Výchozí" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -206,10 +209,10 @@ msgstr "Odkazuje na" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -220,18 +223,21 @@ msgstr "Komentáře" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ne" @@ -244,19 +250,22 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ano" @@ -264,8 +273,8 @@ msgstr "Ano" msgid "View dump (schema) of database" msgstr "Zobrazit výpis (schéma) databáze" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "V databázi nebyla nalezena žádná tabulka." @@ -281,74 +290,74 @@ msgstr "Odznačit vše" msgid "The database name is empty!" msgstr "Jméno databáze je prázdné!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databáze %1$s byla přejmenována na %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databáze %1$s byla zkopírována do %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Přejmenovat databázi na" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Odstranit databázi" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Databáze %s byla zrušena." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Odstranit databázi (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Zkopírovat databázi na" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Pouze strukturu" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Strukturu a data" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Jen data" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Přidat %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Přidat integritní omezení" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Přepnout na zkopírovanou databázi" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -358,7 +367,7 @@ msgstr "Přepnout na zkopírovanou databázi" msgid "Collation" msgstr "Porovnávání" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -367,7 +376,7 @@ msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " "proč." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Upravit nebo exportovat relační schéma" @@ -377,16 +386,18 @@ msgstr "Upravit nebo exportovat relační schéma" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabulka" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Řádků" @@ -396,13 +407,13 @@ msgid "Size" msgstr "Velikost" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "právě se používá" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -410,7 +421,7 @@ msgstr "Vytvořeno" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -418,7 +429,7 @@ msgstr "Poslední změna" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -432,92 +443,15 @@ msgstr[0] "%s tabulka" msgstr[1] "%s tabulky" msgstr[2] "%s tabulek" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Musíte zvolit alespoň jedno pole, které chcete zobrazit" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Vzestupně" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Sestupně" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Řadit" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Zobrazit" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Podmínka" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Přidat nebo odebrat řádek" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Přidat nebo odebrat pole" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Aktualizovat dotaz" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Použít tabulky" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Nebo" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "a" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Přidat" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Smazat" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Úpravy" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Přepnout na %svizuálního návrháře%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL dotaz na databázi %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Provést dotaz" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -558,7 +492,7 @@ msgstr "Sledování je zapnuté." msgid "Tracking is not active." msgstr "Sledování není zapnuté." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -587,20 +521,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s je výchozí úložiště na tomto MySQL serveru." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Zaškrtnuté:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Zaškrtnout vše" @@ -608,31 +543,32 @@ msgstr "Zaškrtnout vše" msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Vyprázdnit" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -676,17 +612,18 @@ msgstr "Sledované tabulky" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Databáze" @@ -704,18 +641,26 @@ msgstr "Aktualizováno" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Stav" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Operace" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Zobrazit" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Odstranit všechny informace o sledování této tabulky" @@ -756,20 +701,20 @@ msgstr "Záznam databáze" msgid "Bad type!" msgstr "Chybný typ!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Zvolený export musí být uložen do souboru!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Chybné parametry!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatek místa pro uložení souboru %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -777,12 +722,12 @@ msgstr "" "Soubor %s již na serveru existuje, změňte jméno souboru, nebo zvolte " "přepsání souboru." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávnění uložit výpis do souboru %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis byl uložen do souboru %s." @@ -805,7 +750,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometrie" @@ -876,7 +821,7 @@ msgid "" "string into the \"Value\" field" msgstr "Z funkcí zvolte „GeomFromText“ a vložte níže uvedený text jako hodnotu" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -885,20 +830,20 @@ msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Položka byla smazána z oblíbených." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Soubor nelze přečíst" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -908,7 +853,7 @@ msgstr "" "Pokusili jste se importovat soubor s nepodporovanou kompresí (%s). Buďto " "podpora není implementována nebo je vypnuta ve vaší konfiguraci." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,27 +863,27 @@ msgstr "" "nebo jeho velikost překročila velikost povolenou v nastavení PHP. Viz [a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Bez potřebné knihovny nelze převést znakovou sadu" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import byl úspěšně dokončen, bylo provedeno %d dotazů." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -946,7 +891,7 @@ msgstr "" "Limit pro běh importu vypršel, prosím odešlete formulář znovu se stejným " "souborem a import bude pokračovat." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -955,8 +900,8 @@ msgstr "" "znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte " "časové limity v PHP." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -971,7 +916,7 @@ msgstr "Zpět" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin se lépe používá v prohlížeči podporujícím rámce." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." @@ -980,7 +925,7 @@ msgstr "Příkaz „DROP DATABASE“ je vypnutý." msgid "Do you really want to execute \"%s\"?" msgstr "Opravdu si přejete provést „%s“?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" @@ -1038,16 +983,20 @@ msgstr "Jméno počítače je prázdné!" msgid "The user name is empty!" msgstr "Jméno uživatele je prázdné!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Přidat uživatele" @@ -1067,9 +1016,9 @@ msgstr "Ukončit" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1314,12 +1263,13 @@ msgstr "Přidat graf do mřížky" msgid "Please add at least one variable to the series" msgstr "Prosím přidejte do série alespoň jednu hodnotu" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Žádná" @@ -1504,10 +1454,10 @@ msgid "Explain output" msgstr "Vysvětlení dotazu" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Čas" @@ -1799,7 +1749,7 @@ msgstr "Zobrazit pole pro dotaz" msgid "No rows selected" msgstr "Nebyl vybrán žádný řádek" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Změnit" @@ -1808,8 +1758,8 @@ msgstr "Změnit" msgid "Query execution time" msgstr "Doba běhu dotazu" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d není platné číslo řádku." @@ -1880,7 +1830,7 @@ msgstr "Obsah datového bodu" msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopírovat" @@ -2364,14 +2314,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Chyba" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-dotaz" @@ -2382,7 +2332,7 @@ msgstr "SQL-dotaz" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2411,6 +2361,10 @@ msgstr "Bez PHP kódu" msgid "Create PHP Code" msgstr "Vytvořit PHP kód" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Provést dotaz" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2435,7 +2389,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Upravit zde" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profilování" @@ -2462,14 +2416,14 @@ msgstr "Chybějící parametr:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "První" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2477,7 +2431,7 @@ msgstr "Předchozí" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2485,7 +2439,7 @@ msgstr "Následující" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Poslední" @@ -2506,16 +2460,17 @@ msgstr "Klikněte pro přepnutí" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" @@ -2523,21 +2478,20 @@ msgstr "Struktura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Vložit" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Projít" @@ -2558,21 +2512,21 @@ msgstr "Procházet váš počítač:" msgid "Select from the web server upload directory %s:" msgstr "Zvolte soubor z adresáře pro upload na serveru %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Nebyl zvolen žádný soubor pro nahrání" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Spustit" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Vytisknout" @@ -2591,6 +2545,74 @@ msgstr "" msgid "Font size" msgstr "Velikost písma" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Vzestupně" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Sestupně" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Řadit" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Podmínka" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Přidat nebo odebrat řádek" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Přidat nebo odebrat pole" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Aktualizovat dotaz" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Použít tabulky" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Nebo" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "a" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Přidat" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Smazat" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Úpravy" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL dotaz na databázi %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "alespoň jedno ze slov" @@ -2633,8 +2655,8 @@ msgstr[2] "%1$s odpovídajících záznamů v %2$s" msgid "Delete the matches for the %s table?" msgstr "Odstranit nalezené záznamy z tabulky %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2669,64 +2691,64 @@ msgstr "V tabulkách:" msgid "Inside column:" msgstr "Uvnitř pole:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Uložit upravovaná data" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Obnovit pořadí sloupců" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Počáteční řádek" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Počet řádků" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Režim" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "vodorovném" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "vodorovném (otočené hlavičky)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "svislém" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Záhlaví opakovat každých %s řádek" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Seřadit podle klíče" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2739,60 +2761,60 @@ msgstr "Seřadit podle klíče" msgid "Options" msgstr "Nastavení" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Zkrácené texty" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Celé texty" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relační klíč" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Pole pro zobrazení v relacích" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Zobrazit binární obsah" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Zobrazit obsah BLOBu" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Zobrazit binární obsah šestnáctkově (HEX)" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Nepoužít při prohlížení transformace" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Text (WKT)" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Binární (WKB)" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Řádek byl smazán" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Ukončit" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2800,44 +2822,44 @@ msgstr "" "Počet nemusí být přesný, viz [a@./Documentation.html#faq3_11@Documentation]" "FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "v dotazu" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Zobrazeny záznamy" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "celkem" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Dotaz trval %01.4f sekund" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Náhled pro tisk (s kompletními texty)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Zobrazit graf" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Zobrazit data GIS" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Vytvořit pohled" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Odkaz nenalezen" @@ -2962,8 +2984,8 @@ msgstr "" "odstraněn." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Databáze" @@ -2979,11 +3001,11 @@ msgid "Tracking" msgstr "Sledování" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Spouště" @@ -3001,9 +3023,9 @@ msgstr "Databáze se zdá být prázdná!" msgid "Query" msgstr "Dotaz" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Oprávnění" @@ -3012,7 +3034,7 @@ msgid "Routines" msgstr "Rutiny" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Události" @@ -3111,43 +3133,43 @@ msgstr "Úložiště %s je na tomto MySQL serveru vypnuté." msgid "This MySQL server does not support the %s storage engine." msgstr "Tento MySQL server nepodporuje úložiště %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "neznámý stav tabulky: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Zdrojová databáze „%s“ nebyla nalezena!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Cílová databáze „%s“ nebyla nalezena!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Chybná databáze" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Chybné jméno tabulky" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Chyba při přejmenování tabulky %1$s na %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabulka %1$s byla přejmenována na %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Nepodařilo se uložit nastavení prohlížení tabulky" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3156,7 +3178,7 @@ msgstr "" "Selhalo vyčištění tabulky s nastavením procházení (viz $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3167,7 +3189,7 @@ msgstr "" "stránky. Prosím zkontrolujte jestli se nezměnila struktura tabulky." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkce" @@ -3179,7 +3201,7 @@ msgstr "Operátor" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3218,7 +3240,7 @@ msgid "Maximum rows to plot" msgstr "Nejvyšší počet vykreslených řádků" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" @@ -3616,7 +3638,7 @@ msgstr "sdílený" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabulky" @@ -3627,9 +3649,10 @@ msgstr "Tabulky" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Data" @@ -3747,32 +3770,32 @@ msgid "Disabled" msgstr "Vypnuto" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "struktura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "data" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "struktura a data" @@ -4192,13 +4215,13 @@ msgstr "Komprese" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Přidat jména polí na první řádek" @@ -4221,7 +4244,6 @@ msgstr "Pole escapována" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Nahradit NULL hodnoty" @@ -4261,23 +4283,22 @@ msgstr "Vzor pro jméno tabulky" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Vypsat tabulku" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Použít titulek tabulky" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Titulek tabulky" @@ -4286,14 +4307,14 @@ msgid "Continued table caption" msgstr "Titulek pokračování tabulky" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Návěstí" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME typ" @@ -4330,7 +4351,7 @@ msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Parametry CREATE TABLE:" @@ -4343,7 +4364,7 @@ msgid "Use delayed inserts" msgstr "Používat zpožděné inserty" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Vypnout kontrolu cizích klíčů" @@ -4360,7 +4381,7 @@ msgid "Syntax to use when inserting data" msgstr "Jakou syntaxi použít pro vkládání dat" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maximální velikost vytvořeného dotazu" @@ -4369,7 +4390,7 @@ msgid "Export type" msgstr "Typ exportu" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Uzavřít příkazy v transakci" @@ -4425,7 +4446,6 @@ msgstr "Přizpůsobí výchozí nastavení" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4484,7 +4504,6 @@ msgid "Set import and export directories and compression options" msgstr "Nastaví adresáře pro import a export a volby komprese" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4712,7 +4731,6 @@ msgid "Customize text input fields" msgstr "Přizpůsobení textových polí" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! text" @@ -5891,9 +5909,11 @@ msgstr "Vyžaduje povolené kontrolování SQL" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Heslo" @@ -6071,7 +6091,6 @@ msgstr "CSV pomocí LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Sešit OpenDocument" @@ -6093,19 +6112,16 @@ msgstr "Nastavení exportu databází" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV pro MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Text OpenDocument" @@ -6162,27 +6178,27 @@ msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." msgid "possible deep recursion attack" msgstr "možný útok rekurzí" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Server neodpovídá (nebo není správně nastaven lokální socket MySQL serveru)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Server neodpovídá." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" "Prosím zkontrolujte přístupová práva u adresáře obsahujícího tuto databázi." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Podrobnosti..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6194,13 +6210,15 @@ msgid "Change password" msgstr "Změnit heslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Žádné heslo" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Heslo znovu" @@ -6221,8 +6239,9 @@ msgstr "Vytvořit databázi" msgid "Create" msgstr "Vytvořit" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Nemáte oprávnění" @@ -6232,12 +6251,12 @@ msgid "Create table" msgstr "Vytvořit tabulku" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Název" @@ -6376,7 +6395,7 @@ msgid "View output as text" msgstr "Zobrazit výstup jako text" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Formát:" @@ -6882,50 +6901,50 @@ msgstr "Blog PrimeBase XT, který píše Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Nebyla nalezena žádná data zobrazení GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Obsah struktury se zobrazí po kliknutí na její jméno" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Strukturu upravíte kliknutím na odkaz „Struktura“" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Přejít na databázi: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Upravit nastavení pro %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Přejít na tabulku: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Přejít na pohled: %s" @@ -6996,11 +7015,11 @@ msgstr "" "Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi " "směry" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" @@ -7246,7 +7265,7 @@ msgstr "Dokumentace phpMyAdmina" msgid "Reload navigation frame" msgstr "Znovu nahrát navigační rám" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Tento formát nemá žádná nastavení" @@ -7361,93 +7380,93 @@ msgstr "Nebyl připojen přihlašovací klíč" msgid "Authenticating..." msgstr "Authentizuji..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Pole oddělené:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Pole uzavřené do:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Pole escapována:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Řádky ukončené:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Nahradit NULL hodnoty:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Odstranit znaky konců řádek z polí" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Verze Excelu:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Nastavení výpisu dat" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Vypisuji data pro tabulku" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Událost" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definice" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struktura tabulky" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktura pro pohled" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Zástupná struktura pro pohled" @@ -7463,94 +7482,83 @@ msgstr "(pokračování)" msgid "Structure of table @TABLE@" msgstr "Struktura tabulky @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Nastavení vytváření objektů" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Titulek tabulky (pokračování)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Zobrazit cizí klíče" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Zobrazit komentáře" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Zobrazit MIME typy" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Počítač" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Vygenerováno" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Verze MySQL" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Verze PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Tabulka MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Exportovat jména tabulek" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Exportovat hlavičky tabulek" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Vygeneruje dokument obsahující data jedné tabulky)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Název výpisu:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP pole" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7558,35 +7566,35 @@ msgstr "" "Zobrazit komentáře (ty obsahují informace jako čas exportu, verzi PHP " "nebo MySQL serveru)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Přidat vlastní komentář do hlavičky (\\n odděluje řádky):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" "Vložit čas vytvoření, poslední aktualizace a poslední kontroly databáze" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Datázový systém nebo starší verze MySQL se kterým má být výstup kompatibilní:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Přidat příkaz %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Přidat příkazy:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7594,32 +7602,38 @@ msgstr "" "Uzavřít název tabulky a polí do zpětných uvozovek (Zabrání interpretaci " "názvů obsahujících speciální znaky nebo klíčová slova)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Možnosti vytváření dat" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Vyprázdnit tabulku před vkládáním" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Namísto příkazů INSERT použít:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "příkazy INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "příkazy INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Jakou funkci použít pro vypisování dat:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Jakou syntaxi použít pro vkládání dat:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7629,7 +7643,7 @@ msgstr "" "    Příklad: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7639,7 +7653,7 @@ msgstr "" "  Příklad: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7647,7 +7661,7 @@ msgstr "" "obě výše uvedené možnosti
      Příklad: INSERT " "INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7655,7 +7669,7 @@ msgstr "" "ani jedno z výše uvedených
      Příklad: INSERT " "INTO tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7663,7 +7677,7 @@ msgstr "" "Vypisovat binární pole šestnáctkově (například, „abc“ becomes 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7671,50 +7685,45 @@ msgstr "" "Vypisovat pole TIMESTAMP v UTC (usnadní přenost polí TIMESTAMP mezi " "servery v různých časových pásmech)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedury" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funkce" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Omezení pro exportované tabulky" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Omezení pro tabulku" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRO TABULKU" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELACE PRO TABULKU" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Chyba při čtení dat:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Nastavení vytváření objektů (všechna jsou doporučena)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Pohledy" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Exportovat obsah" @@ -7788,6 +7797,10 @@ msgstr "Názvy polí" msgid "This plugin does not support compressed imports!" msgstr "Tento plugin nepodporuje komprimované soubory!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Tabulka MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7844,6 +7857,10 @@ msgstr "Režim kompatibility SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8073,11 +8090,12 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Prosím přihlašte se znovu , aby se projevily změny v konfiguračním souboru." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "žádný popisek" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Odškrtnout vše" @@ -8099,9 +8117,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Jméno uživatele" @@ -8138,34 +8157,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Přidat replikačního uživatele pro podřízený server" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Jakýkoliv uživatel" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Použít textové pole" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Jakýkoliv počítač" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokální" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Použít tabulku Host" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8181,7 +8209,7 @@ msgstr "Vytvořit heslo" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8217,8 +8245,8 @@ msgid "Edit event" msgstr "Upravit událost" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Chyba při zpracování požadavku" @@ -8294,7 +8322,8 @@ msgstr "Musíte zadat správný typ události." msgid "You must provide an event definition." msgstr "Musíte zadat definici události." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Nová" @@ -8428,7 +8457,12 @@ msgstr "Musíte zadat platný návratový typ rutiny." msgid "You must provide a routine definition." msgstr "Musíte zadat definici rutiny." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Výsledek spuštění rutiny %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8436,18 +8470,13 @@ msgstr[0] "Posledním příkazem v proceduře byla ovlivněna %d řádka" msgstr[1] "Posledním příkazem v proceduře byly ovlivněny %d řádky" msgstr[2] "Posledním příkazem v proceduře bylo ovlivněno %d řádek" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Výsledek spuštění rutiny %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Spustit rutinu" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Parametry rutiny" @@ -8576,28 +8605,28 @@ msgstr "V databázi %2$s nebyla nalezen událost se jménem %1$s" msgid "There are no events to display." msgstr "Nejsou zde žádné události k zobrazení." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabulka %s neexistuje!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prosím, nastavte souřadnice pro tabulku %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schéma databáze %s - Strana %s" @@ -8734,6 +8763,448 @@ msgstr "Neznámý jazyk: %1$s." msgid "Current Server" msgstr "Aktuální server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Žádná oprávnění." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Všechna oprávnění kromě GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Umožňuje vybírat data." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Umožňuje vkládat a přepisovat data." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Umožňuje měnit data." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Umožňuje mazat data." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Umožňuje vytvářet nové databáze a tabulky." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Umožňuje odstranit databáze a tabulky." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL " +"serveru." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Umožňuje vypnout server." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Umožňuje prohlížet procesy všech uživatelů" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Umožňuje importovat a exportovat data z/do souborů na serveru." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nemá žádný vliv v této verzi MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Umožňuje vytvářet a odstraňovat klíče." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Umožňuje měnit strukturu existujících tabulek." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Umožňuje přístup k úplnému seznamu databází." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Umožňuje připojení, i když je dosažen maximální počet připojení. Potřebné " +"pro většinu operací pro správu serveru jako nastavování globálních " +"proměnných a zabíjení vláken jiných uživatelů." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Umožňuje vytvářet dočasné tabulky." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Umožňuje zamknout tabulku pro aktuální vlákno." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Potřebné pro replikaci pomocných serverů." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Umožní uživateli zjistit, kde je hlavní / pomocný server." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Umožňuje vytvářet nové pohledy." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Umožňuje plánovat úlohy pomocí plánovače" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Umožňuje vytváření a mazání spouští" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Umožňuje vytvářet uložené procedury." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Umožňuje měnit a rušit uložené procedury." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Umožňuje vytvářet, rušit a přejmenovávat účty uživatelů." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Umožňuje spouštět uložené procedury." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Žádná" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Omezení zdrojů" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Omezuje, kolik dotazů může uživatel odeslat serveru za hodinu." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Omezuje, kolik dotazů měnících nějakou tabulku nebo databázi může uživatel " +"spustit za hodinu." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Omezuje počet nových připojení, která může uživatel vytvořit za hodinu." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Omezuje počet současných připojení uživatele." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Oprávnění pro jednotlivé tabulky" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Poznámka: názvy oprávnění MySQL jsou uváděny anglicky" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Správa" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globální oprávnění" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Oprávnění pro jednotlivé databáze" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Umožňuje vytvářet nové tabulky." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Umožňuje odstranit tabulky." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Umožňuje přidávat uživatele a oprávnění bez znovunačítání tabulek " +"s oprávněními." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Přihlašování" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Neměnit heslo" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Heslo pro %s bylo úspěšně změněno." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Byla zrušena práva pro %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Databáze pro uživatele" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Přidělit všechna oprávnění na databázi „%s“" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Uživatelé mající přístup k „%s“" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Uživatel" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Přidělování" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Uživatel byl přidán." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Jakýkoliv" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globální" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "závislé na databázi" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "maska" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Nebyl nalezen žádný uživatel." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Upravit oprávnění" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Zrušit" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Exportovat vše" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... zachovat původního uživatele." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... smazat původního uživatele ze všech tabulek." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... odebrat všechna oprávnění původnímu uživateli a poté ho smazat." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "... smazat uživatele a poté znovu načíst oprávnění." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Změnit informace o uživateli / Kopírovat uživatele" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Vytvořit nového uživatele se stejnými oprávněními a ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Oprávnění pro jednotlivá pole" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Přidat oprávnění pro databázi" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Zástupné znaky _ a % by měly být escapovány pomocí \\ pokud je chcete použít " +"jako znak" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Přidat oprávnění pro tabulku" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Odstranit vybrané uživatele" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Odstranit databáze se stejnými jmény jako uživatelé." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Musíte vybrat uživatele, které chcete odstranit!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Načítám oprávnění" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Vybraní uživatelé byli úspěšně odstraněni." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Byla aktualizována oprávnění pro %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Oprávnění pro všechny uživatele" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Oprávnění pro %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Přehled uživatelů" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " +"tabulek se může lišit od oprávnění, která server právě používá, pokud byly " +"tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " +"oprávnění%s před pokračováním." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Uživatel byl přidán." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Zdrojová databáze" @@ -8780,11 +9251,11 @@ msgstr "Vyčistit" msgid "Columns" msgstr "Pole" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" @@ -9063,12 +9534,6 @@ msgstr "Verze software" msgid "Protocol version" msgstr "Verze protokolu" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Uživatel" - #: main.php:217 msgid "Server charset" msgstr "Znaková sada" @@ -9587,438 +10052,20 @@ msgstr "Licence" msgid "disabled" msgstr "vypnuto" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Všechna oprávnění kromě GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Umožňuje měnit strukturu existujících tabulek." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Umožňuje měnit a rušit uložené procedury." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Umožňuje vytvářet nové databáze a tabulky." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Umožňuje vytvářet uložené procedury." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Umožňuje vytvářet nové tabulky." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Umožňuje vytvářet dočasné tabulky." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Umožňuje vytvářet, rušit a přejmenovávat účty uživatelů." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Umožňuje vytvářet nové pohledy." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Umožňuje mazat data." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Umožňuje odstranit databáze a tabulky." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Umožňuje odstranit tabulky." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Umožňuje plánovat úlohy pomocí plánovače" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Umožňuje spouštět uložené procedury." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Umožňuje importovat a exportovat data z/do souborů na serveru." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Umožňuje přidávat uživatele a oprávnění bez znovunačítání tabulek " -"s oprávněními." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Umožňuje vytvářet a odstraňovat klíče." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Umožňuje vkládat a přepisovat data." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Umožňuje zamknout tabulku pro aktuální vlákno." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Omezuje počet nových připojení, která může uživatel vytvořit za hodinu." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Omezuje, kolik dotazů může uživatel odeslat serveru za hodinu." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Omezuje, kolik dotazů měnících nějakou tabulku nebo databázi může uživatel " -"spustit za hodinu." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Omezuje počet současných připojení uživatele." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Umožňuje prohlížet procesy všech uživatelů" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nemá žádný vliv v této verzi MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL " -"serveru." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Umožní uživateli zjistit, kde je hlavní / pomocný server." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Potřebné pro replikaci pomocných serverů." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Umožňuje vybírat data." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Umožňuje přístup k úplnému seznamu databází." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Umožňuje vypnout server." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Umožňuje připojení, i když je dosažen maximální počet připojení. Potřebné " -"pro většinu operací pro správu serveru jako nastavování globálních " -"proměnných a zabíjení vláken jiných uživatelů." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Umožňuje vytváření a mazání spouští" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Umožňuje měnit data." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Žádná oprávnění." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Žádná" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Oprávnění pro jednotlivé tabulky" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Poznámka: názvy oprávnění MySQL jsou uváděny anglicky" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Správa" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globální oprávnění" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Oprávnění pro jednotlivé databáze" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Omezení zdrojů" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Přihlašování" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Neměnit heslo" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Nebyl nalezen žádný uživatel." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Uživatel %s již existuje!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Uživatel byl přidán." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Byla aktualizována oprávnění pro %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Byla zrušena práva pro %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Heslo pro %s bylo úspěšně změněno." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Odstraňuji %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Musíte vybrat uživatele, které chcete odstranit!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Načítám oprávnění" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Vybraní uživatelé byli úspěšně odstraněni." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Upravit oprávnění" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Zrušit" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Exportovat vše" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Jakýkoliv" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Oprávnění pro všechny uživatele" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Oprávnění pro %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Přehled uživatelů" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Přidělování" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Odstranit vybrané uživatele" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Odstranit databáze se stejnými jmény jako uživatelé." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " -"tabulek se může lišit od oprávnění, která server právě používá, pokud byly " -"tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " -"oprávnění%s před pokračováním." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Oprávnění pro jednotlivá pole" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Přidat oprávnění pro databázi" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Zástupné znaky _ a % by měly být escapovány pomocí \\ pokud je chcete použít " -"jako znak" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Přidat oprávnění pro tabulku" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Změnit informace o uživateli / Kopírovat uživatele" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Vytvořit nového uživatele se stejnými oprávněními a ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... zachovat původního uživatele." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... smazat původního uživatele ze všech tabulek." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... odebrat všechna oprávnění původnímu uživateli a poté ho smazat." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "... smazat uživatele a poté znovu načíst oprávnění." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Databáze pro uživatele" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Přidělit všechna oprávnění na databázi „%s“" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Uživatelé mající přístup k „%s“" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globální" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "závislé na databázi" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "maska" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Uživatel byl přidán." - #: server_replication.php:82 msgid "Unknown error" msgstr "Neznámá chyba" @@ -11781,37 +11828,37 @@ msgstr "" msgid "Wrong data" msgstr "Chybná data" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Pro procházení databáze je použit oblíbený dotaz „%s\"." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Opravdu si přejete vykonat následující příkaz?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Zobrazuji jako PHP kód" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Proběhlo zkontrolování SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Výsledek SQL dotazu" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Vygeneroval" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s klíči v tabulce „%s\"" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Název" @@ -13657,6 +13704,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastaveno na 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP pole" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/cy.po b/po/cy.po index 57ec43158e..27b67e6b29 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh \n" @@ -18,7 +18,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Dangos pob" @@ -43,16 +44,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Chwilio" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -62,24 +63,26 @@ msgstr "Chwilio" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Ewch" @@ -113,7 +116,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Sylw cronfa ddata: " @@ -123,17 +126,17 @@ msgstr "Sylw cronfa ddata: " msgid "Table comments" msgstr "Sylwadau tabl" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -145,34 +148,34 @@ msgstr "Colofn" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Math" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -181,13 +184,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -195,10 +198,10 @@ msgstr "Null" msgid "Default" msgstr "Diofyn" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -207,10 +210,10 @@ msgstr "Cysylltu i" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -221,18 +224,21 @@ msgstr "Sylwadau" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Na" @@ -245,19 +251,22 @@ msgstr "Na" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ie" @@ -265,8 +274,8 @@ msgstr "Ie" msgid "View dump (schema) of database" msgstr "Dangos dadlwythiad (sgema) y gronfa ddata" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." @@ -282,76 +291,76 @@ msgstr "Dad-ddewis Pob" msgid "The database name is empty!" msgstr "Mae enw'r gronfa ddata'n wag!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Cafodd cronfa ddata %s ei hailenwi i %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Ailenwch y gronfa ddata i" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Tynnwch y gronfa ddata" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Cafodd cronfa ddata %s ei gollwng." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Dilëwch y gronfa ddata (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Copïwch y gronfa ddata i" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Strwythur yn unig" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Strwythur a data" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Data yn unig" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Defnyddiwch CREATE DATABASE cyn copïo" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Ychwanegwch cyfyngiadau" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Newidiwch i'r gronfa ddata a gopïwyd" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -361,7 +370,7 @@ msgstr "Newidiwch i'r gronfa ddata a gopïwyd" msgid "Collation" msgstr "Coladiad" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -370,7 +379,7 @@ msgstr "" "Cafodd storfa ffurfwedd phpMyAdmin ei dadweithredu. Pwyswch %syma%s i " "ddarganfod pam." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Golygu neu allforio sgema perthynol" @@ -380,16 +389,18 @@ msgstr "Golygu neu allforio sgema perthynol" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabl" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Rhesi" @@ -399,13 +410,13 @@ msgid "Size" msgstr "Maint" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "ar ddefnydd" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -413,7 +424,7 @@ msgstr "Cread" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -421,7 +432,7 @@ msgstr "Diweddariad diwethaf" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -434,93 +445,16 @@ msgid_plural "%s tables" msgstr[0] "%s tabl" msgstr[1] "%s tabl" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Mae'n rhaid dewis o leiaf un golofn i'w dangos" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Esgynnol" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Disgynnol" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Trefnu" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Dangos" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Meini prawf" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Ychwanegu/Dileu rhesi meini prawf" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Ychwanegu/Dileu colofnau" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Ymholiad Diweddaru" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Defnyddiwch Dablau" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Or" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "And" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Addasu" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "adeiladwr gweledol" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Ymholiad SQL ar gronfa ddata %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Cyflwyno Ymholiad" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -561,7 +495,7 @@ msgstr "Mae tracio'n weithredol" msgid "Tracking is not active." msgstr "Nid yw tracio'n weithredol" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -590,20 +524,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Gyda'r dewis:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Dewis Pob" @@ -611,31 +546,32 @@ msgstr "Dewis Pob" msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Allforio" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Argraffu golwg" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Gwagu" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -681,17 +617,18 @@ msgstr "Tablau a draciwyd" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Cronfa ddata" @@ -709,18 +646,26 @@ msgstr "Diweddarwyd" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Statws" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Gweithred" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Dangos" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" @@ -763,22 +708,22 @@ msgstr "Log cronfa ddata" msgid "Bad type!" msgstr "Allforio" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Mae'n rhaid cadw math yr allbwn hwn mewn ffeil!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Routines" msgid "Bad parameters!" msgstr "Rheolweithiau" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Lle annigonol i gadw'r ffeil %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -786,12 +731,12 @@ msgstr "" "Mae'r ffeil %s yn bodoli ar y gweinydd yn barod. Newidiwch enw'r ffeil neu " "gwiriwch yr opsiwn trosysgrifo." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Nid oes gan y gweinydd gwe yr hawl i gadw'r ffeil %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." @@ -816,7 +761,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -897,7 +842,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -906,20 +851,20 @@ msgstr "" "Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth" "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Dangos clustnod" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Cafodd y clustnod ei ddileu." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Nid oedd modd darllen y ffeil hon." -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -929,7 +874,7 @@ msgstr "" "Fe geisioch lwytho ffeil gyda chywasgiad sydd heb ei gynnal (%s). Naill ai " "bod dim cynhaliaeth ar gyfer hwn neu mae eich ffurfwedd wedi ei analluogi." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -940,40 +885,40 @@ msgstr "" "ganiatáu gan eich ffurfwedd PHP. Gweler See [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Nid oedd modd llwytho ategynnau mewnforio, gwiriwch eich arsefydliad!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Clustnodi %s a grëwyd" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Gorffennodd y mewnforiad yn llwyddiannus, gyda %d ymholiad wedi'u gweithredu." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -988,7 +933,7 @@ msgstr "Nôl" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." @@ -998,7 +943,7 @@ msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." msgid "Do you really want to execute \"%s\"?" msgstr "A ydych chi wir am" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Rydych am DINISTRIO cronfa ddata gyfan!" @@ -1069,16 +1014,20 @@ msgstr "Mae enw'r gwesteiwr yn wag!" msgid "The user name is empty!" msgstr "Mae enw'r defnyddiwr yn wag!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Mae'r cyfrinair yn wag!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1102,9 +1051,9 @@ msgstr "Cau" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1380,12 +1329,13 @@ msgstr "Snap i'r grid" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Dim" @@ -1579,10 +1529,10 @@ msgid "Explain output" msgstr "Esbonio SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Amser" @@ -1941,7 +1891,7 @@ msgstr "Dangos ymholiad mewnosod" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Newid" @@ -1952,8 +1902,8 @@ msgstr "Newid" msgid "Query execution time" msgstr "Gweithrediad SQL" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "Dydy %d ddim yn rhif rhes dilys." @@ -2036,7 +1986,7 @@ msgstr "Datganiad diffiniad data" msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2537,14 +2487,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Gwall" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Ymholiad SQL" @@ -2555,7 +2505,7 @@ msgstr "Ymholiad SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2586,6 +2536,10 @@ msgstr "Heb God PHP" msgid "Create PHP Code" msgstr "Creu Cod PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Cyflwyno Ymholiad" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2610,7 +2564,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Mewnol" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Proffilio" @@ -2639,7 +2593,7 @@ msgstr "Rheolweithiau" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2648,7 +2602,7 @@ msgstr "Dechrau" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2658,7 +2612,7 @@ msgstr "Cynt" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2668,7 +2622,7 @@ msgstr "Nesaf" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2693,16 +2647,17 @@ msgstr "Pwyso i ddewis" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Strwythur" @@ -2710,21 +2665,20 @@ msgstr "Strwythur" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Mewnosod" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Pori" @@ -2746,23 +2700,23 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" "Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a " "lanwlythwyd" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Argraffu" @@ -2779,6 +2733,74 @@ msgstr "" msgid "Font size" msgstr "Maint ffont" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Esgynnol" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Disgynnol" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Trefnu" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Meini prawf" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Ychwanegu/Dileu rhesi meini prawf" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Ychwanegu/Dileu colofnau" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Ymholiad Diweddaru" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Defnyddiwch Dablau" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Or" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "And" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Addasu" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Ymholiad SQL ar gronfa ddata %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "o leiaf un o'r geiriau" @@ -2820,8 +2842,8 @@ msgstr[1] "%s ergyd mewn tabl %s" msgid "Delete the matches for the %s table?" msgstr "Dileu'r cydweddau ar gyfer tabl %s" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2860,71 +2882,71 @@ msgstr "Tu fewn tabl(au):" msgid "Inside column:" msgstr "Tu fewn colofn:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete columns" msgid "Restore column order" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of columns" msgid "Number of rows" msgstr "Nifer y colofnau" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mo" msgid "Mode" msgstr "Llu" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "llorweddol" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "llorweddol (penawdau wedi cylchdroi)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "fertigol" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Gweithredu ymholiad a glustnodwyd" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Trefnu gan allwedd" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2937,113 +2959,113 @@ msgstr "Trefnu gan allwedd" msgid "Options" msgstr "Opsiynau" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Testunau Rhannol" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Testunau Llawn" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Allwedd perthynol" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Colofn dangosydd perthynol" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Dangos cynnwys deuaidd" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Dangos cynnwys BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Dangos cynnwys deuaidd fel HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Trawsffurfiad porwr" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Lladd" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "mewn ymholiad" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Yn dangos rhesi" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "cyfanswm" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Argraffu golwg (gyda thestunau llawn)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Dangos sgema PDF" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Methu â darganfod y cysylltiad" @@ -3165,8 +3187,8 @@ msgstr "" "ohonyn nhw." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Cronfeydd Data" @@ -3182,11 +3204,11 @@ msgid "Tracking" msgstr "Tracio" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3204,9 +3226,9 @@ msgstr "Mae'r gronfa ddata yn ymddangos yn wag!" msgid "Query" msgstr "Ymholiad" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Breintiau" @@ -3215,7 +3237,7 @@ msgid "Routines" msgstr "Rheolweithiau" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Digwyddiadau" @@ -3318,53 +3340,53 @@ msgstr "Cafodd %s ei analluogi ar y gweinydd MySQL hwn." msgid "This MySQL server does not support the %s storage engine." msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Cronfa ddata ffynhonnell" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Heb ddarganfod thema ddiofyn %s!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Crofna ddata annilys" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Enw tabl annilys" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Gwall wrth ailenwi tabl %1$s i %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Cafodd y tabl %s ei ailenwi i %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3373,7 +3395,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Swyddogaeth" @@ -3385,7 +3407,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3428,7 +3450,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3789,7 +3811,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tablau" @@ -3800,9 +3822,10 @@ msgstr "Tablau" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Data" @@ -3923,32 +3946,32 @@ msgid "Disabled" msgstr "Analluogwyd" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4372,13 +4395,13 @@ msgstr "Cywasgiad" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Rhoi enwau colofnau yn y rhes gyntaf" @@ -4401,7 +4424,6 @@ msgstr "Colofnau wedi'u dianc gan" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Amnewid NULL gan" @@ -4445,12 +4467,11 @@ msgstr "Templed enw tabl" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" @@ -4458,13 +4479,13 @@ msgid "Dump table" msgstr "%s tabl" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Cynnwys pennawd y tabl" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Pennawd y tabl" @@ -4475,14 +4496,14 @@ msgid "Continued table caption" msgstr "Cynnwys pennawd y tabl" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Allwedd y label" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Math MIME" @@ -4521,7 +4542,7 @@ msgid "SQL compatibility mode" msgstr "Modd cytunedd SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4534,7 +4555,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4551,7 +4572,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4562,7 +4583,7 @@ msgid "Export type" msgstr "Allforio" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4617,7 +4638,6 @@ msgstr "Gweithrediadau canlyniadau ymholiad" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4678,7 +4698,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4911,7 +4930,6 @@ msgid "Customize text input fields" msgstr "Defnyddiwch faes testun" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6014,9 +6032,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Cyfrinair" @@ -6190,7 +6210,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Taenlen Open Document" @@ -6216,19 +6235,16 @@ msgstr "Ystadegau cronfeydd data" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV ar gyfer MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Testun Open Document" @@ -6286,27 +6302,27 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Dyw'r gweinydd ddim yn ymateb" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Manylion..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6317,13 +6333,15 @@ msgid "Change password" msgstr "Newid cyfrinair" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Dim Cyfrinair" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Ail-deipiwch" @@ -6346,8 +6364,9 @@ msgstr "Creu cronfa ddata newydd" msgid "Create" msgstr "Creu" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Dim Breintiau" @@ -6357,12 +6376,12 @@ msgid "Create table" msgstr "Crëwch dabl" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Enw" @@ -6527,7 +6546,7 @@ msgid "View output as text" msgstr "Cadw fel ffeil" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6997,54 +7016,54 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Dim cronfeydd data" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Data ar goll ar gyfer %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "Cyfrifwch y tablau" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Strwythur yn unig" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7115,11 +7134,11 @@ msgstr "" "Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i " "symud unrhyw le" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7369,7 +7388,7 @@ msgstr "Dogfennaeth phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7488,84 +7507,84 @@ msgstr "" msgid "Authenticating..." msgstr "Yn dilysu..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Columns terminated by" msgid "Columns separated with:" msgstr "Terfynwyd colofnau gan" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with:" msgstr "Amgaewyd colofnau gan" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with:" msgstr "Colofnau wedi'u dianc gan" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Terfynwyd llinellau gan" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Amnewid NULL gan" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 #, fuzzy #| msgid "Remove CRLF characters within columns" msgid "Remove carriage return/line feed characters within columns" msgstr "Tynnu nodau CRLF tu fewn colofnau" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Argraffiad Excel" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Dadlwytho data ar gyfer y tabl" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Digwyddiad" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7573,24 +7592,24 @@ msgstr "Digwyddiad" msgid "Definition" msgstr "Disgrifiad" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Strwythur y tabl ar gyfer y tabl" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7608,254 +7627,245 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "Strwythur y tabl ar gyfer y tabl" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Pennawd y tabl" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Display columns table" msgid "Display comments" msgstr "Dangos tabl colofnau" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Mathau MIME ar gael" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Gwesteiwr" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Amser Generadu" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Fersiwn y gweinydd" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Fersiwn PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Tabl MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export as %s" msgid "Export table names" msgstr "Allforio fel %s" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "llorweddol (penawdau wedi cylchdroi)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Teitl yr adroddiad" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "Aräe PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Add constraints" msgid "Add statements:" msgstr "Ychwanegwch cyfyngiadau" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Databases statistics" +msgid "Data creation options" +msgstr "Ystadegau cronfeydd data" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Gweithdrefnau" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Swyddogaethau" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Dangos" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7924,6 +7934,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Tabl MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7981,6 +7995,10 @@ msgstr "Modd cytunedd SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8164,11 +8182,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Dad-ddewis Pob" @@ -8188,9 +8207,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -8225,34 +8245,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Unrhyw ddefnyddiwr" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Defnyddiwch faes testun" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Unrhyw westeiwr" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lleol" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Y Gwesteiwr Hwn" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Defnyddiwch Dabl Gwesteiwyr" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8266,7 +8295,7 @@ msgstr "Generadu Cyfrinair" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8306,8 +8335,8 @@ msgid "Edit event" msgstr "Golygu gweinydd" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8394,7 +8423,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8539,25 +8569,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8722,28 +8752,28 @@ msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." msgid "There are no events to display." msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8888,6 +8918,441 @@ msgstr "Iaith anhysbys: %1$s." msgid "Current Server" msgstr "Gweinydd cyfredol" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Dim" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Defnyddiwr" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Cafodd golwg %s ei ollwng" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Allforio" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Breintiau" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Breintiau" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "Overview" +msgid "Users overview" +msgstr "Gorolwg" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Cronfa ddata ffynhonnell" @@ -8934,11 +9399,11 @@ msgstr "Clirio" msgid "Columns" msgstr "Colofnau" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -9205,12 +9670,6 @@ msgstr "Dangos fersiynau" msgid "Protocol version" msgstr "Fersiwn protocol" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Defnyddiwr" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -9744,431 +10203,20 @@ msgstr "" msgid "disabled" msgstr "Analluogwyd" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Dim" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Allforio" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Breintiau" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Breintiau" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "Overview" -msgid "Users overview" -msgstr "Gorolwg" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Cafodd golwg %s ei ollwng" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11764,41 +11812,41 @@ msgstr "" msgid "Wrong data" msgstr "Dim cronfeydd data" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "A ydych chi wir am" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Dilysu SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" @@ -13636,6 +13684,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "Aräe PHP" + #~ msgid "rows" #~ msgstr "Pori" diff --git a/po/da.po b/po/da.po index 66910fb9fa..c1f0767520 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-23 04:24+0200\n" "Last-Translator: Aputsiaq Niels Janussen \n" "Language-Team: danish \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Vis alle" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Søg" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Søg" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Udfør" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Database %1$s er oprettet." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Databasekommentar: " @@ -119,17 +122,17 @@ msgstr "Databasekommentar: " msgid "Table comments" msgstr "Tabel kommentarer" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "Kolonnenavn" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Datatype" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "Nulværdi" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "Nulværdi" msgid "Default" msgstr "Standardværdi" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "Linker til" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "Kommentarer" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nej" @@ -241,19 +247,22 @@ msgstr "Nej" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -261,8 +270,8 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Vis dump (skema) af database" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Ingen tabeller fundet i databasen." @@ -278,74 +287,74 @@ msgstr "Fravælg alle" msgid "The database name is empty!" msgstr "Databasenavnet er tomt!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Database %1$s er blevet omdøbt til %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databasen %1$s er blevet kopieret til %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Omdøb database til" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Fjern database" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Database %s er slettet." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopier database til" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Kun strukturen" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Kun data" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Tilføj %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Tilføj begrænsninger" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Skift til den kopierede database" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -355,7 +364,7 @@ msgstr "Skift til den kopierede database" msgid "Collation" msgstr "Tegnsæt (sortering)" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -363,7 +372,7 @@ msgid "" msgstr "" "phpMyAdmin er ikke sat op til at gemme tabel-relationer. Se her %shvorfor%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Editer eller eksporter relations skema" @@ -373,16 +382,18 @@ msgstr "Editer eller eksporter relations skema" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Rækker" @@ -392,13 +403,13 @@ msgid "Size" msgstr "Størrelse" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "i brug" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -406,7 +417,7 @@ msgstr "Oprettelse" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -414,7 +425,7 @@ msgstr "Sidste opdatering" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -427,92 +438,15 @@ msgid_plural "%s tables" msgstr[0] "%s tabel" msgstr[1] "%s tabeller" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Du skal vælge mindst en kolonne der skal vises" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Stigende" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Faldende" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sorter" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Vis" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriterier" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Tilføj/Slet kriterie-række" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Tilføj/Slet kolonner" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Opdater forespørgsel" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Benyt tabeller" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Eller" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Og" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins (Indsæt)" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del (Slet)" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Ret" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Skift til %svisuel konstruktør%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-forespørgsel til database %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Send forespørgsel" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -553,7 +487,7 @@ msgstr "Sporing er aktiv." msgid "Tracking is not active." msgstr "Sporing er ikke aktiv." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -582,20 +516,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard datalageret på denne MySQL-server." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Med det markerede:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Vælg alle" @@ -603,33 +538,34 @@ msgstr "Vælg alle" msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Udskriv" # By "Empty", if this is an action, it should translate to "Tøm" but if it's a # state it should translate to "Tom". -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Tøm" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -673,17 +609,18 @@ msgstr "Sporede tabeller" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Database" @@ -701,18 +638,26 @@ msgstr "Opdateret" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Handling" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Vis" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Slet sporingsdata for denne tabel" @@ -753,20 +698,20 @@ msgstr "Databaselog" msgid "Bad type!" msgstr "Forkert type!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Valgte eksporttype skal gemmes som fil!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Forkerte parametre!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Utilstrækkelig plads til at gemme filen %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -774,12 +719,12 @@ msgstr "" "Filen %s findes allerede på serveren, lav filnavnet om eller tillad at der " "overskrives." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tilladelse til at gemme filen %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump er blevet gemt i filen %s." @@ -802,7 +747,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometri" @@ -875,7 +820,7 @@ msgstr "" "Vælg \"GeomFromText\" fra kolonnen \"Function\" og indsæt strengen nedenfor " "i feltet \"Value\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -885,20 +830,20 @@ msgstr "" "%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " "begrænsning." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Viser bogmærke" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Bogmærket er fjernet." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Filen kunne ikke læses" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -909,7 +854,7 @@ msgstr "" "Understøttelse af denne funktion er ikke implementeret eller ikke slået til " "for din konfiguration." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -920,27 +865,27 @@ msgstr "" "tilladt af din PHP-konfiguration. Se [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan ikke konvertere filens tegnsæt uden konverteringsbibliotek for tegnsæt" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Kunne ikke indlæse importplugins, check venligst din installation!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen er korrekt gennemført, %d forespørgsler udført." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -948,7 +893,7 @@ msgstr "" "Script timeout nået, hvis du vil afslutte importen, indsend venligst samme " "fil igen og importen vil blive genoptaget." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -957,8 +902,8 @@ msgstr "" "normalt at phpMyAdmin ikke vil være i stand til at gennemføre importen med " "mindre du forøger PHP-tidsbegrænsningerne." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -974,7 +919,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin er mere brugervenlig med en browser, der kan klare frames." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." @@ -983,7 +928,7 @@ msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." msgid "Do you really want to execute \"%s\"?" msgstr "Er du sikker på at du vil udføre \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Du er ved at DESTRUERE en komplet database!" @@ -1041,16 +986,20 @@ msgstr "Der er intet værtsnavn!" msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Adgangskoden er tom!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "De to adgangskoder er ikke ens!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Opret bruger" @@ -1070,9 +1019,9 @@ msgstr "Luk" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1318,12 +1267,13 @@ msgstr "Snap diagram til gitter" msgid "Please add at least one variable to the series" msgstr "Tilføj mindst en variabel til serien" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Ingen" @@ -1506,10 +1456,10 @@ msgid "Explain output" msgstr "Forklar output" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Tid" @@ -1806,7 +1756,7 @@ msgstr "Vis forespørgselsbox" msgid "No rows selected" msgstr "Ingen rækker valgt" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Ret" @@ -1815,8 +1765,8 @@ msgstr "Ret" msgid "Query execution time" msgstr "Eksekveringstid for forespørgsel" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldigt rækkenummer." @@ -1890,7 +1840,7 @@ msgstr "Datapunkt-indhold" msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopi" @@ -2376,14 +2326,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Fejl" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-forespørgsel" @@ -2394,7 +2344,7 @@ msgstr "SQL-forespørgsel" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2423,6 +2373,10 @@ msgstr "Uden PHP-kode" msgid "Create PHP Code" msgstr "Fremstil PHP-kode" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Send forespørgsel" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2447,7 +2401,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "I linje" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profilering" @@ -2474,14 +2428,14 @@ msgstr "Manglende parameter:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Start" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2489,7 +2443,7 @@ msgstr "Forrige" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2497,7 +2451,7 @@ msgstr "Næste" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Slut" @@ -2518,16 +2472,17 @@ msgstr "Klik for at skifte" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" @@ -2535,21 +2490,20 @@ msgstr "Struktur" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Indsæt" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Vis" @@ -2570,21 +2524,21 @@ msgstr "Gennemse din computer:" msgid "Select from the web server upload directory %s:" msgstr "Vælg fra %s - webserverens upload-mappe:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Der er ikke nogen filer at uploade" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Udfør" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Print" @@ -2602,6 +2556,74 @@ msgstr "" msgid "Font size" msgstr "Skriftstørrelse" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Stigende" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Faldende" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sorter" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriterier" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Tilføj/Slet kriterie-række" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Tilføj/Slet kolonner" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Opdater forespørgsel" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Benyt tabeller" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Eller" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Og" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins (Indsæt)" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del (Slet)" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Ret" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-forespørgsel til database %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "mindst et af ordene" @@ -2642,8 +2664,8 @@ msgstr[1] "%1$s sammenfald i %2$s" msgid "Delete the matches for the %s table?" msgstr "Slet sammenfald for %s tabellen?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2678,64 +2700,64 @@ msgstr "Indeni tabel(ler):" msgid "Inside column:" msgstr "Indeni kolonne:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Gem redigerede data" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Gendan kolonneorden" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Startrække" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Antal rækker" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Tilstand" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "vandret" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "vandret (roterede overskrifter)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "lodret" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Overskrifter for hver %s. række" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sorteringsnøgle" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2748,60 +2770,60 @@ msgstr "Sorteringsnøgle" msgid "Options" msgstr "Indstillinger" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Delvise tekster" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Komplette tekster" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relationel nøgle" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Relationel visningskolonne" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Vis binært indhold" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Vis indhold af BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Vis binært indhold som HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Skjul browser-transformation" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Velkendt tekst" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Velkendt binær" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Rækken er slettet" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2809,44 +2831,44 @@ msgstr "" "Kan være anslået. Se [a@./Documentation.html#faq3_11@Documentation] FAQ 3.11" "[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "i forespørgsel" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Viser poster" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "forepørgsel tog %01.4f sek" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Udskriv (med fulde tekster)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Vis diagram" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Opret view" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Link ikke fundet" @@ -2970,8 +2992,8 @@ msgstr "" "sikkert fjernes." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Databaser" @@ -2987,11 +3009,11 @@ msgid "Tracking" msgstr "Sporing" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggers" @@ -3009,9 +3031,9 @@ msgstr "Database ser ud til at være tom!" msgid "Query" msgstr "Foresp. via eks" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegier" @@ -3020,7 +3042,7 @@ msgid "Routines" msgstr "Rutiner" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Hændelser" @@ -3118,43 +3140,43 @@ msgstr "%s er slået fra på denne MySQL-server." msgid "This MySQL server does not support the %s storage engine." msgstr "Denne MySQL-server understøtter ikke %s datalager." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "ukendt tabelstatus: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Kildedatabasen '%s' blev ikke fundet!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Mål-databasen '%s' blev ikke fundet!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Ugyldig database" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Ugyldigt tabelnavn" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Fejl ved omdøbning af tabel %1$s til %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabellen %1$s er nu omdøbt til %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Kunne ikke gemme brugerindstillinger for tabel" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3163,7 +3185,7 @@ msgstr "" "Kunne ikke rydde op i indstillinger for tabel-UI (se $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3175,7 +3197,7 @@ msgstr "" "ændret." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funktion" @@ -3187,7 +3209,7 @@ msgstr "Operatør" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3226,7 +3248,7 @@ msgid "Maximum rows to plot" msgstr "Maksimalt antal plottede rækker" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" @@ -3618,7 +3640,7 @@ msgstr "delt" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabeller" @@ -3629,9 +3651,10 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Data" @@ -3750,32 +3773,32 @@ msgid "Disabled" msgstr "Slået fra" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "struktur" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "data" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "struktur og data" @@ -4199,13 +4222,13 @@ msgstr "Komprimering" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Indsæt feltnavne i første række" @@ -4228,7 +4251,6 @@ msgstr "Kolonner escapes med" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Erstat NULL med" @@ -4268,23 +4290,22 @@ msgstr "Skabelon for tabelnavn" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Dump tabel" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Inkluder tabeloverskrift" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Tabeloverskrift" @@ -4293,14 +4314,14 @@ msgid "Continued table caption" msgstr "Fortsat tabeloverskrift" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Mærke nøgle" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-type" @@ -4337,7 +4358,7 @@ msgid "SQL compatibility mode" msgstr "SQL-kompatibilitetstilstand" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Indstillinger til CREATE TABLE:" @@ -4350,7 +4371,7 @@ msgid "Use delayed inserts" msgstr "Brug forsinkede indsættelser" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Slå fremmednøgle-checks fra" @@ -4367,7 +4388,7 @@ msgid "Syntax to use when inserting data" msgstr "Syntaks der bruges, når der indsættes data" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maksimal længde på oprettet forespørgsel" @@ -4376,7 +4397,7 @@ msgid "Export type" msgstr "Eksporttype" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Indlejr eksport i en transaktion" @@ -4431,7 +4452,6 @@ msgstr "Tilpas standardindstillinger" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV (kommasepareret)" @@ -4492,7 +4512,6 @@ msgstr "" "komprimering" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4720,7 +4739,6 @@ msgid "Customize text input fields" msgstr "Tilpas tekstfelter" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! tekst" @@ -5830,7 +5848,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:377 -#| msgid "Hide query box" msgid "Retain query box" msgstr "Bevar forespørgeselsboks" @@ -5892,9 +5909,11 @@ msgstr "Kræver SQL Validator bliver aktiveret" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Adgangskode" @@ -6074,7 +6093,6 @@ msgstr "CSV vha. LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document regneark" @@ -6096,19 +6114,16 @@ msgstr "Database eksportindstillinger" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV til MS Excel-data" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document tekst" @@ -6164,7 +6179,7 @@ msgstr "%s udvidelsen mangler. Check din PHP-konfiguration." msgid "possible deep recursion attack" msgstr "muligt dybt rekursionsangreb" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6172,19 +6187,19 @@ msgstr "" "Serveren svarer ikke (eller den lokale servers socket er ikke korrekt " "konfigureret)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Serveren svarer ikke." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detaljer..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6196,13 +6211,15 @@ msgid "Change password" msgstr "Ændre adgangskode" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Ingen adgangskode" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Skriv igen" @@ -6223,8 +6240,9 @@ msgstr "Opret ny database" msgid "Create" msgstr "Opret" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Ingen privilegier" @@ -6234,12 +6252,12 @@ msgid "Create table" msgstr "Opret tabel" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Navn" @@ -6376,7 +6394,7 @@ msgid "View output as text" msgstr "Se output som tekst" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Format:" @@ -6884,51 +6902,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Ingen data fundet for GIS visualization." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "De følgende strukturer er enten oprettet eller ændret. Her kan du:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Vis en strukturs indhold ved at klikke på dens navn" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Ændr alle indstillinger ved at klikke på det tilhørende \"Indstilling\" link" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Rediger struktur ved at følge linket \"Struktur\"" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Gå til databasen: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Rediger indstillinger for %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Gå til tabellen: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Strukturen af %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Gå til view: %s" @@ -6999,11 +7017,11 @@ msgstr "" "Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL" "+piletasterne til at flytte frit omkring" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" @@ -7249,7 +7267,7 @@ msgstr "phpMyAdmin dokumentation" msgid "Reload navigation frame" msgstr "Genindlæs navigationsramme" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Dette format har ingen indstillinger" @@ -7367,93 +7385,93 @@ msgstr "Ingen gyldig autorisations-nøgle indkoblet" msgid "Authenticating..." msgstr "Godkender..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Kolonner adskilt med:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Kolonner indrammet med:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Kolonner escaped med:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Linjer afsluttet med:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Erstat NULL med:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Fjern vognretur/linjeskiftstegn i kolonnedata" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel-udgave:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Database eksportindstillinger" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Data dump for tabellen" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Hændelse" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definition" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struktur-dump for tabellen" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktur for visning" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Stand-in-struktur for visning" @@ -7469,94 +7487,83 @@ msgstr "(fortsættes)" msgid "Structure of table @TABLE@" msgstr "Struktur for tabel @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Object oprettelsesindstillinger" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Tabeloverskrift (fortsat)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Vis fremmednøgle-relationer" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Vis kommentarer" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Vis MIME-typer" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Vært" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Genereringstid" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Serverversion" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP-version" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki tabel" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Eksportér tabelnavne" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Eksportér tabel-hoveder" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Genererer en rapport indeholdende dataene fra en enkelt tabel)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Rapporttitel:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP-array" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7564,13 +7571,13 @@ msgstr "" "Vis kommentarer (inkluderer info som eksport tidsstempel, PHP version og " "serverversion)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Ekstra kommentarer i headeren (\n" " deler linjer):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7578,25 +7585,25 @@ msgstr "" "Inkluder et tidsstempel for hvornår databaser blev oprettet, sidst opdateret " "og sidst checket" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Databasesystem eller ældre MYSQL server til maksimering af kompatibiltet af " "output:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Tilføj %s forespørgsel" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Tilføj forespørgsler:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7604,32 +7611,39 @@ msgstr "" "Omgiv tabel- og feltnavne med backquotes (Beskytter felt- og tabelnavne " "indeholdende specielle tegn og nøgleord)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Object oprettelsesindstillinger" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "I stedet for INSERT forespørgsler, brug:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED forespørgsler" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE forspørgsler" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Funktioner der bruges, når data udtrækkes:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Syntaks der bruges, når data indsættes:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7639,7 +7653,7 @@ msgstr "" "    Eksempel: INSERT INTO tbl_name (col_A,col_B,col_C) " "VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7649,7 +7663,7 @@ msgstr "" "    Eksempel: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7657,7 +7671,7 @@ msgstr "" "begge af ovenstående
      Eksempel: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7665,7 +7679,7 @@ msgstr "" "ingen af ovenstående
      Eksempel: INSERT INTO " "tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7673,7 +7687,7 @@ msgstr "" "Udtræk binære kolonner i hexadecimal notation (fx, \"abc\" becomes " "0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7681,50 +7695,45 @@ msgstr "" "Udtræk TIMESTAMP kolonner i UTC (gør at TIMESTAMP kolonner kan udtrækkes " "og indsættes i servere på tværs af tidszoner)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedurer" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funktioner" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Begrænsninger for tabel" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE (MIME-typer for tabellen)" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE (Relationer for tabellen)" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Fejl ved læsning af data:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Indstillinger for oprettelse af objekter (alle anbefales)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Views" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Eksport indhold" @@ -7798,6 +7807,10 @@ msgstr "Kolonnenavne" msgid "This plugin does not support compressed imports!" msgstr "Denne plugin understøtter ikke komprimeret import!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki tabel" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7855,6 +7868,10 @@ msgstr "SQL-kompatibilitetsmodus:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Brug ikke AUTO_INCREMENT for nulværdier" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8096,11 +8113,12 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-login til phpMyAdmin for at indlæse den opdaterede konfigurationsfil." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "ingen beskrivelse" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Fravælg alle" @@ -8122,9 +8140,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Brugernavn" @@ -8159,34 +8178,43 @@ msgstr "Kun slaver startet med --report-host=host_name er synlige i listen." msgid "Add slave replication user" msgstr "Tilføj slave replikationsbruger" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Enhver bruger" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Brug tekstfelt" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Enhver vært" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Denne vært" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Brug tabellen host" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8202,7 +8230,7 @@ msgstr "Generer adgangskode" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8238,8 +8266,8 @@ msgid "Edit event" msgstr "Rediger hændelse" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fejl i udførsel af forespørgsel" @@ -8315,7 +8343,8 @@ msgstr "Du skal angive en gyldig type for hændelsen." msgid "You must provide an event definition." msgstr "Du skal angive en hændelsesdefinition." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Ny" @@ -8336,10 +8365,6 @@ msgid "Returns" msgstr "Returværdier" #: libraries/rte/rte_routines.lib.php:69 -#| msgid "" -#| "You are using PHP's deprecated 'mysql' extension, which is not capable of " -#| "handling multi queries. The execution of some stored routines may fail!" -#| " Please use the improved 'mysqli' extension to avoid any problems." msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8453,25 +8478,25 @@ msgstr "Du skal angive en gyldig returtype for rutinen." msgid "You must provide a routine definition." msgstr "Du skal angive en rutinedefinition." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Udførelsesresultater af rutine %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d række påvirket af den sidste SQL-sætning inde i proceduren" msgstr[1] "%d rækker påvirket af den sidste SQL-sætning inde i proceduren" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Udførelsesresultater af rutine %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Udfør rutine" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Rutineparametre" @@ -8602,28 +8627,28 @@ msgstr "Ingen hændelse med navnet %1$s fundet i database %2$s" msgid "There are no events to display." msgstr "Der er ingen hændelser at vise." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabellen \"%s\" findes ikke!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Konfigurer venligst koordinaterne for tabel %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Skema for databasen \"%s\" - Side %s" @@ -8760,6 +8785,452 @@ msgstr "Ukendt sprog: %1$s." msgid "Current Server" msgstr "Aktuel server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Ingen privilegier." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Inkluderer alle privilegier pånær GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Tillader læsning af data." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Tillader indsættelse og erstatning af data." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Tillader ændring af data." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Tillader sletning af data." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Tillader oprettelse af nye databaser og tabeller." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Tillader at droppe databaser og tabeller." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Tillader nedlukning af serveren." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Tillader at se processer for alle brugere" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Tillader import af data fra og eksport af data til filer." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Har ingen effekt i denne MySQL version." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Tillader at skabe og droppe indeks." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Tillader ændring af strukturen på eksisterende tabeller." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Giver adgang til den fuldstændige liste over databaser." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Tillader forbindelse, selv hvis maksimalt antal forbindelser er nået; " +"nødvendigt for de fleste administrative operationer som indstilling af " +"globale variable eller for at dræbe andre brugeres tråde." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Tillader oprettelse af midlertidige tabeller." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Tillader låsning af tabeller for nuværende tråd." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Nødvendigt for replikationsslaverne." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Giver brugeren rettigheder til at spørge hvor slaves / masters er." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Tillader oprettelse af nye views." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Tillader at oprette hændelser til hændelsesskeduleren" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Tillader oprettelse og sletning af triggers" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Tillader oprettelse af gemte rutiner." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Tillader ændring og sletning af gemte rutiner." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Tillader udførelse af gemte rutiner." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Ingen" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ressourcebegrænsninger" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Begrænser antallet af forespørgsler brugeren må sende til serveren pr. time." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Begrænser antallet af kommandoer som ændrer enhver tabel eller database " +"brugeren må udføre pr. time." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Begrænser antallet af nye forbindelser brugeren må åbne pr. time." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Begrænser antallet af samtidige forbindelser brugere må have." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Tabel-specifikke privilegier" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "NB: Navne på MySQL privilegier er på engelsk" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administration" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globale privilegier" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Database-specifikke privilegier" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Tillader oprettelse af nye tabeller." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Tillader at droppe tabeller." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Tillader oprettelse af brugere og privilegier uden at genindlæse privilegie-" +"tabellerne." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Login-information" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Adgangskoden må ikke ændres" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Adgangskoden for %s blev korrekt udskiftet." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Du har tilbagekaldt privilegierne for %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Database for bruger" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Opret database med samme navn og tildel alle privilegier" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Tildel alle privilegier på database "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Brugere med adgang til "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Bruger" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Tildel" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Bruger er blevet tilføjet." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Enhver" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "database-specifik" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "jokertegn" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Ingen bruger fundet." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Ret privilegier" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Tilbagekald" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Eksportér alle" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... behold den gamle." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... slet den gamle fra brugertabellerne." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... tilbagekald alle aktive privilegier fra den gamle og slet den " +"efterfølgende." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... slet den gamle fra brugertabellerne og genindlæs privilegierne " +"efterfølgende." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Ret Login-information / Kopier bruger" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Opret en bruger med samme privilegier og ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Kolonne-specifikke privilegier" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Tilføj privilegier på følgende database" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Jokertegn % og _ skal escapes med en \\ for brug af dem som almindelige tegn" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Tilføj privileges på følgende tabel" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Fjern valgte brugere" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Drop databaser der har samme navne som brugernes." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Ingen brugere valgt til sletning!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Genindlæs privilegierne" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "De valgte brugere er blevet korrekt slettet." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Du har opdateret privilegierne for %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Privilegier for alle brugere" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Privilegier for %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Oversigt over brugere" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs " +"privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra " +"privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle " +"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" +"%s før du fortsætter." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Du har tilføjet en ny bruger." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Kildedatabase" @@ -8806,11 +9277,11 @@ msgstr "Ryd" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" @@ -8909,7 +9380,6 @@ msgstr "" #: libraries/tbl_common.inc.php:53 #, php-format -#| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." msgstr "Sporing af %s er aktiveret." @@ -8940,7 +9410,6 @@ msgid "Index" msgstr "Indeks" #: libraries/tbl_properties.inc.php:123 -#| msgid "Remove column(s)" msgid "Move column" msgstr "Fjern kolonne" @@ -9002,7 +9471,6 @@ msgstr "" #: libraries/tbl_properties.inc.php:613 #, php-format -#| msgid "After %s" msgid "after %s" msgstr "efter %s" @@ -9094,12 +9562,6 @@ msgstr "Programmelversion" msgid "Protocol version" msgstr "Protokolversion" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Bruger" - #: main.php:217 msgid "Server charset" msgstr "Servers tegnsæt" @@ -9235,7 +9697,6 @@ msgid "No databases" msgstr "Ingen databaser" #: navigation.php:171 -#| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "filtrer databaser efter navn" @@ -9293,7 +9754,6 @@ msgid "Toggle small/big" msgstr "Skift mellem små/store" #: pmd_general.php:122 -#| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Slå relationslinjer til eller fra" @@ -9546,7 +10006,6 @@ msgstr "Tegnsæt og kollationer" #: server_databases.php:116 #, php-format -#| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d databaser er blevet droppet korrekt." @@ -9621,446 +10080,20 @@ msgstr "Licens" msgid "disabled" msgstr "slået fra" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Inkluderer alle privilegier pånær GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Tillader ændring af strukturen på eksisterende tabeller." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Tillader ændring og sletning af gemte rutiner." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Tillader oprettelse af nye databaser og tabeller." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Tillader oprettelse af gemte rutiner." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Tillader oprettelse af nye tabeller." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Tillader oprettelse af midlertidige tabeller." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Tillader oprettelse af nye views." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Tillader sletning af data." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Tillader at droppe databaser og tabeller." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Tillader at droppe tabeller." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Tillader at oprette hændelser til hændelsesskeduleren" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Tillader udførelse af gemte rutiner." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Tillader import af data fra og eksport af data til filer." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Tillader oprettelse af brugere og privilegier uden at genindlæse privilegie-" -"tabellerne." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Tillader at skabe og droppe indeks." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Tillader indsættelse og erstatning af data." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Tillader låsning af tabeller for nuværende tråd." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Begrænser antallet af nye forbindelser brugeren må åbne pr. time." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Begrænser antallet af forespørgsler brugeren må sende til serveren pr. time." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Begrænser antallet af kommandoer som ændrer enhver tabel eller database " -"brugeren må udføre pr. time." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Begrænser antallet af samtidige forbindelser brugere må have." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Tillader at se processer for alle brugere" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Har ingen effekt i denne MySQL version." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Giver brugeren rettigheder til at spørge hvor slaves / masters er." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Nødvendigt for replikationsslaverne." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Tillader læsning af data." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Giver adgang til den fuldstændige liste over databaser." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Tillader nedlukning af serveren." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Tillader forbindelse, selv hvis maksimalt antal forbindelser er nået; " -"nødvendigt for de fleste administrative operationer som indstilling af " -"globale variable eller for at dræbe andre brugeres tråde." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Tillader oprettelse og sletning af triggers" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Tillader ændring af data." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Ingen privilegier." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Ingen" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Tabel-specifikke privilegier" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "NB: Navne på MySQL privilegier er på engelsk" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administration" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globale privilegier" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Database-specifikke privilegier" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ressourcebegrænsninger" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Login-information" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Adgangskoden må ikke ændres" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Ingen bruger fundet." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Brugeren %s findes i forvejen!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Du har tilføjet en ny bruger." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Du har opdateret privilegierne for %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Du har tilbagekaldt privilegierne for %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Adgangskoden for %s blev korrekt udskiftet." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Ingen brugere valgt til sletning!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Genindlæs privilegierne" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "De valgte brugere er blevet korrekt slettet." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Ret privilegier" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Tilbagekald" - -#: server_privileges.php:1589 -#| msgid "Export" -msgid "Export all" -msgstr "Eksportér alle" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Enhver" - -#: server_privileges.php:1695 -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilegier for alle brugere" - -#: server_privileges.php:1708 -#, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilegier for %s" - -#: server_privileges.php:1739 -#| msgid "User overview" -msgid "Users overview" -msgstr "Oversigt over brugere" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Tildel" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Fjern valgte brugere" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Drop databaser der har samme navne som brugernes." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs " -"privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra " -"privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle " -"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" -"%s før du fortsætter." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Kolonne-specifikke privilegier" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Tilføj privilegier på følgende database" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Jokertegn % og _ skal escapes med en \\ for brug af dem som almindelige tegn" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Tilføj privileges på følgende tabel" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Ret Login-information / Kopier bruger" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Opret en bruger med samme privilegier og ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... behold den gamle." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... slet den gamle fra brugertabellerne." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... tilbagekald alle aktive privilegier fra den gamle og slet den " -"efterfølgende." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... slet den gamle fra brugertabellerne og genindlæs privilegierne " -"efterfølgende." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Database for bruger" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Opret database med samme navn og tildel alle privilegier" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Tildel alle privilegier på database "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Brugere med adgang til "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "database-specifik" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "jokertegn" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Bruger er blevet tilføjet." - #: server_replication.php:82 msgid "Unknown error" msgstr "Ukendt fejl" @@ -10904,7 +10937,6 @@ msgstr "" "været i brug på en gang." #: server_status.php:1428 -#| msgid "Percentage of used open files limit" msgid "Percentage of used key cache (calculated value)" msgstr "Procentdel af anvende nøgle-cache (beregnet værdi)" @@ -11848,39 +11880,39 @@ msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn." msgid "Wrong data" msgstr "Forkerte data" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bruger bogmærket \"%s\" som standard-forespørgsel til gennemsyn." -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Er du sikker på at du vil " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Viser som PHP-kode" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Valideret SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-resultat" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Genereret af" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Mærke" @@ -13814,6 +13846,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er sat til 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP-array" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/de.po b/po/de.po index bed8e78d01..629c30b671 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-13 00:19+0200\n" "Last-Translator: Maxi Lampert \n" "Language-Team: none\n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Alles anzeigen" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Suche" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Suche" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "OK" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Die Datenbank %1$s wurde erzeugt." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Datenbankkommentar: " @@ -120,17 +123,17 @@ msgstr "Datenbankkommentar: " msgid "Table comments" msgstr "Tabellen-Kommentar" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Spalte" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Typ" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Null" msgid "Default" msgstr "Standard" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Verweise" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Kommentare" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nein" @@ -242,19 +248,22 @@ msgstr "Nein" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -262,8 +271,8 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Dump (Schema) der Datenbank anzeigen" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Es wurden keine Tabellen in der Datenbank gefunden." @@ -279,74 +288,74 @@ msgstr "Auswahl entfernen" msgid "The database name is empty!" msgstr "Der Datenbankname ist leer!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Datenbank %1$s wurde umbenannt in %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Datenbank %1$s wurde nach %2$s kopiert" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Datenbank umbenennen in" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Datenbank entfernen" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Datenbank %s wurde gelöscht." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Datenbank löschen (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Datenbank kopieren nach" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Nur Struktur" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktur und Daten" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Nur Daten" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Vor dem Kopieren CREATE DATABASE ausführen" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s hinzufügen" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Constraints hinzufügen" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Zu kopierter Datenbank wechseln" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Zu kopierter Datenbank wechseln" msgid "Collation" msgstr "Kollation" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier" "%s um herauszufinden warum." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Beziehungsschema bearbeiten oder exportieren" @@ -375,16 +384,18 @@ msgstr "Beziehungsschema bearbeiten oder exportieren" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabelle" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Datensätze" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Größe" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "in Benutzung" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Erzeugt am" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Aktualisiert am" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -429,92 +440,15 @@ msgid_plural "%s tables" msgstr[0] "%s Tabelle" msgstr[1] "%s Tabellen" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Aufsteigend" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Absteigend" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sortierung" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Zeige" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriterium" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Kriterienzeilen hinzufügen/entfernen" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Spalten hinzufügen/entfernen" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Aktualisieren" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Verwendete Tabellen" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Oder" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Und" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Einf" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Entf" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Verändern" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Zu %svisual builder%s wechseln" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-Befehl in der Datenbank %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "SQL-Befehl ausführen" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -555,7 +489,7 @@ msgstr "Tracking ist aktiviert." msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s ist die Standard Storage-Engine dieses MySQL-Servers." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "markierte:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Alle auswählen" @@ -606,31 +541,32 @@ msgstr "Alle auswählen" msgid "Check tables having overhead" msgstr "Tabellen mit Überhang auswählen" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportieren" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Leeren" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "Verfolgte Tabellen" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Datenbank" @@ -702,18 +639,26 @@ msgstr "Aktualisiert" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Aktion" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Zeige" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Lösche die Verlaufsdaten dieser Tabelle" @@ -754,20 +699,20 @@ msgstr "Datenbank-Log" msgid "Bad type!" msgstr "Ungültiger Typ!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Der gewählte Export-Typ kann nur als Datei exportiert werden!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Ungültige Parameter!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Zu wenig Speicherplatz um die Datei %s zu speichern." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -775,14 +720,14 @@ msgstr "" "Die Datei %s besteht bereits auf dem Server. Bitte ändern Sie den Dateinamen " "oder wählen Sie die Überschreibungs-Option." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern." # Schema is not the right word for it, because a dump contains also data, and # NOT just the scheme. -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Auflistung wurde in Datei %s gespeichert." @@ -805,7 +750,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometrie" @@ -882,7 +827,7 @@ msgstr "" "Wählen Sie \"GeomFromText\" aus der Spalte \"Funktion\" und kopieren Sie den " "Text in das Feld \"Wert\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -891,20 +836,20 @@ msgstr "" "Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " "%sDokumentation%s zur Lösung diese Problems." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Bookmark wird angezeigt" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "SQL-Abfrage wurde gelöscht." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Die Datei konnte nicht gelesen werden" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -915,7 +860,7 @@ msgstr "" "Verfahren komprimiert wurde (%s). Entweder ist das Verfahren nicht " "implementiert oder in Ihrer Konfiguration deaktiviert." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -926,31 +871,31 @@ msgstr "" "Konfiguration überschritten. Siehe [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Die Zeichen-Kodierung der Datei kann nicht ohne eine Zeichen-" "Kodierungsbibliothek konvertiert werden" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Die Import-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre " "phpMyAdmin-Installation!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Der Import wurde erfolgreich abgeschlossen, %d Abfragen wurden ausgeführt." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -958,7 +903,7 @@ msgstr "" "Das Ausführungszeitlimit wurde erreicht. Wenn Sie die Datei erneut " "abschicken, wird der Import fortgesetzt." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -967,8 +912,8 @@ msgstr "" "dass phpMyAdmin nicht in der Lage sein wird, den Import zu beenden, sofern " "nicht die Ausführungszeitbeschränkungen von php gelockert werden." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -983,7 +928,7 @@ msgstr "Zurück" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin arbeitet besser mit einem Frame-fähigen Browser." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." @@ -992,7 +937,7 @@ msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." msgid "Do you really want to execute \"%s\"?" msgstr "Möchten Sie die Abfrage \"%s\" wirklich ausführen?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Sie sind dabei eine komplette Datenbank zu LÖSCHEN!" @@ -1050,16 +995,20 @@ msgstr "Es wurde kein Host angegeben!" msgid "The user name is empty!" msgstr "Es wurde kein Benutzername eingegeben!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Benutzer hinzufügen" @@ -1079,9 +1028,9 @@ msgstr "Schließen" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1328,12 +1277,13 @@ msgstr "Skala dem Raster hinzufügen" msgid "Please add at least one variable to the series" msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "keine" @@ -1520,10 +1470,10 @@ msgid "Explain output" msgstr "Ausgabe erklären" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Zeit" @@ -1820,7 +1770,7 @@ msgstr "SQL-Querybox anzeigen" msgid "No rows selected" msgstr "Es wurden keine Datensätze ausgewählt" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Bearbeiten" @@ -1829,8 +1779,8 @@ msgstr "Bearbeiten" msgid "Query execution time" msgstr "Ausführungszeit der Abfrage" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d ist keine gültige Zeilennummer." @@ -1906,7 +1856,7 @@ msgstr "Datenpunkt-Inhalt" msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopieren" @@ -2397,14 +2347,14 @@ msgid "en" msgstr "de" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Fehler" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-Befehl" @@ -2415,7 +2365,7 @@ msgstr "SQL-Befehl" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2444,6 +2394,10 @@ msgstr "ohne PHP-Code" msgid "Create PHP Code" msgstr "PHP-Code erzeugen" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "SQL-Befehl ausführen" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2468,7 +2422,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Messen" @@ -2495,14 +2449,14 @@ msgstr "Fehlende(r) Parameter:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Anfang" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2510,7 +2464,7 @@ msgstr "Vorherige" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2518,7 +2472,7 @@ msgstr "Nächste" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Ende" @@ -2540,16 +2494,17 @@ msgstr "Zum Umschalten anklicken" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" @@ -2557,21 +2512,20 @@ msgstr "Struktur" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Einfügen" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Anzeigen" @@ -2592,21 +2546,21 @@ msgstr "Durchsuchen Sie ihren Computer:" msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Es sind keine Dateien zum Upload vorhanden" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Ausführen" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Drucken" @@ -2625,6 +2579,74 @@ msgstr "" msgid "Font size" msgstr "Schriftgröße" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Aufsteigend" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Absteigend" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sortierung" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriterium" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Kriterienzeilen hinzufügen/entfernen" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Spalten hinzufügen/entfernen" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Aktualisieren" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Verwendete Tabellen" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Oder" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Und" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Einf" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Entf" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Verändern" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-Befehl in der Datenbank %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "mindestens eines der Wörter" @@ -2665,8 +2687,8 @@ msgstr[1] "%1$s Treffer in %2$s" msgid "Delete the matches for the %s table?" msgstr "Treffer für Tabelle %s löschen?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2701,64 +2723,64 @@ msgstr "In der/den Tabelle(n):" msgid "Inside column:" msgstr "In Spalte:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Speichere bearbeitete Daten" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Spalten-Anordnung wiederherstellen" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Anfangs-Datensatz" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Anzahl der Datensätze" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Art und Weise" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "untereinander" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontal (gedrehte Kopfzeilen)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "nebeneinander" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Kopfzeilen alle %s Zeilen" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Nach Schlüssel sortieren" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2771,60 +2793,60 @@ msgstr "Nach Schlüssel sortieren" msgid "Options" msgstr "Optionen" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Gekürzte Texte" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Vollständige Texte" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relationaler Schlüssel" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Relationale Anzeigespalte" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Binäre Inhalte anzeigen" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "BLOB Inhalte anzeigen" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Binäre Inhalte in hexadezimal anzeigen" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Darstellungsumwandlung ausblenden" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Bekannter Text" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Bekanntes Binary" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Der Datensatz wurde gelöscht" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Beenden" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2832,46 +2854,46 @@ msgstr "" "Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch [a@./" "Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "in der Abfrage" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Zeige Datensätze" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "insgesamt" # (s is the abbreviation of "Sekunde", sec is it not (according to # International System of Units), so we wrote the complete one.) -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Die Abfrage dauerte %01.4f Sekunden" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Druckansicht (vollständige Textfelder)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Diagramm anzeigen" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Visualisiere GIS Daten" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Erzeuge View" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden" @@ -2997,8 +3019,8 @@ msgstr "" "möglicherweise entfernt werden." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Datenbanken" @@ -3014,11 +3036,11 @@ msgid "Tracking" msgstr "Nachverfolgung" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Trigger" @@ -3036,9 +3058,9 @@ msgstr "Die Datenbank scheint leer zu sein!" msgid "Query" msgstr "Abfrage" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Rechte" @@ -3047,7 +3069,7 @@ msgid "Routines" msgstr "Routinen" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Ereignisse" @@ -3143,44 +3165,44 @@ msgstr "%s wurde auf diesem MySQL-Server deaktiviert." msgid "This MySQL server does not support the %s storage engine." msgstr "Dieser MySQL-Server unterstützt %s nicht." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "Unbekannter Tabellenstatus: " # source != search / Source != Suche -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Quell-Datenbank `%s` nicht gefunden!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Ziel-Datenbank `%s` nicht gefunden!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Ungültige Datenbank" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Ungültiger Tabellenname" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelle %1$s wurde in %2$s umbenannt." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Konnte die UI Einstellungen der Tabelle nicht speichern" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3189,7 +3211,7 @@ msgstr "" "Bereinigen der Tabellen UI Einstellungen fehlgeschlagen (siehe $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3201,7 +3223,7 @@ msgstr "" "Bitte überprüfen Sie, ob die Struktur der Tabelle geändert wurde." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funktion" @@ -3213,7 +3235,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3252,7 +3274,7 @@ msgid "Maximum rows to plot" msgstr "Maximale Anzahl der darzustellenden Datensätze" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" @@ -3671,7 +3693,7 @@ msgstr "freigegeben" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabellen" @@ -3682,9 +3704,10 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Daten" @@ -3804,32 +3827,32 @@ msgid "Disabled" msgstr "Deaktiviert" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "Struktur" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "Daten" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "Struktur und Daten" @@ -4255,13 +4278,13 @@ msgstr "Kompression" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Spaltennamen in die erste Zeile setzen" @@ -4284,7 +4307,6 @@ msgstr "Felder ausgeschlossen von" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Ersetze NULL durch" @@ -4324,23 +4346,22 @@ msgstr "Schablone für Tabellennamen" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Tabelle exportieren" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Tabellenbeschriftung einfügen" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Tabellenbeschriftung" @@ -4349,14 +4370,14 @@ msgid "Continued table caption" msgstr "Fortgesetzte Tabellenbeschriftung" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Kennzeichen" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-Typ" @@ -4393,7 +4414,7 @@ msgid "SQL compatibility mode" msgstr "SQL-Kompatibilitätsmodus" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE Optionen:" @@ -4406,7 +4427,7 @@ msgid "Use delayed inserts" msgstr "Verzögerten INSERT-Befehl verwenden" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Fremdschlüsselüberprüfung deaktivieren" @@ -4423,7 +4444,7 @@ msgid "Syntax to use when inserting data" msgstr "Zu verwendende Syntax beim Hinzufügen von Daten" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maximale Länge der erstellten Abfrage" @@ -4432,7 +4453,7 @@ msgid "Export type" msgstr "Exporttyp" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Export in einer Transaktion zusammenfassen" @@ -4488,7 +4509,6 @@ msgstr "Standard-Einstellungen anpassen" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4547,7 +4567,6 @@ msgid "Set import and export directories and compression options" msgstr "Import/Export-Verzeichnis und Kompressionsoptionen setzen" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4779,7 +4798,6 @@ msgid "Customize text input fields" msgstr "Texteingabefelder anpassen" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! Text" @@ -5984,9 +6002,11 @@ msgstr "Erfordert das der SQL-Validator aktiviert ist" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Passwort" @@ -6166,7 +6186,6 @@ msgstr "CSV mit LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Kalkulationstabelle" @@ -6188,19 +6207,16 @@ msgstr "Export-Optionen der Datenbank" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV-Daten für MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Text" @@ -6257,7 +6273,7 @@ msgstr "Die Erweiterung %s fehlt. Bitte die PHP Konfiguration überprüfen." msgid "possible deep recursion attack" msgstr "möglicher Deep-Recursion-Angriff" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6265,21 +6281,21 @@ msgstr "" "Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers " "nicht korrekt konfiguriert)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Der Server antwortet nicht." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" "Bitte prüfen Sie die Rechte des Verzeichnisses, in dem sich die Datenbank " "befindet." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Details..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6292,13 +6308,15 @@ msgid "Change password" msgstr "Passwort ändern" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Kein Passwort" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Wiederholen" @@ -6319,8 +6337,9 @@ msgstr "Neue Datenbank anlegen" msgid "Create" msgstr "Anlegen" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Keine Rechte" @@ -6330,12 +6349,12 @@ msgid "Create table" msgstr "Erzeuge Tabelle" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Name" @@ -6475,7 +6494,7 @@ msgid "View output as text" msgstr "Ausgabe als Text anzeigen" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Format:" @@ -6988,54 +7007,54 @@ msgstr "The PrimeBase XT-Blog von Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Keine Daten für die GIS-Darstellung gefunden." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier " "können Sie:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" "Zum Ändern der Struktur auf den entsprechenden \"Struktur\"-Link klicken" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Gehe zur Datenbank: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Einstellung für %s bearbeiten" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Gehe zur Tabelle: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Struktur von %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Gehe zur Ansicht: %s" @@ -7107,11 +7126,11 @@ msgstr "" "Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten " "beliebig bewegen" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" @@ -7357,7 +7376,7 @@ msgstr "phpMyAdmin-Dokumentation" msgid "Reload navigation frame" msgstr "Navigations-Frame aktualisieren" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Für dieses Format sind keine Optionen vorhanden" @@ -7478,93 +7497,93 @@ msgstr "Kein gültiger Authentisierungsschlüssel angeschlossen" msgid "Authenticating..." msgstr "Authentifiziere..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Spalten getrennt mit:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Spalten eingeschlossen von:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Spalten escaped mit:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Zeilen enden auf:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Ersetze NULL durch:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "CRLF-Zeichen aus Feldern entfernen" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel-Version:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Datenexport-Optionen" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Daten für Tabelle" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Ereignis" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Beschreibung" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tabellenstruktur für Tabelle" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktur des Views" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Stellvertreter-Struktur des Views" @@ -7580,94 +7599,83 @@ msgstr "(Fortsetzung)" msgid "Structure of table @TABLE@" msgstr "Struktur der Tabelle @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Objekterstellungsoptionen" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Tabellenbeschriftung (2)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Fremdschlüssel-Beziehungen anzeigen" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Kommentare anzeigen" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "MIME-Typen anzeigen" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Host" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Erstellungszeit" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Server Version" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP-Version" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Tabelle für MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Exportiere Tabellennamen" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Exportiere Tabellenkopfzeilen" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Erstellt einen Report mit den Daten einer Tabelle)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Titel des Reports:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP-Array" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7675,13 +7683,13 @@ msgstr "" "Kommentare anzeigen (beinhaltet Informationen wie Export Zeitstempel, PHP " "Version und Serverversion)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Individuelle Kommentare für den Kopfbereich (\\n erzeugt einen " "Zeilenumbruch):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7689,25 +7697,25 @@ msgstr "" "Zeitstempel einfügen wann die Datenbank angelegt, zuletzt geändert oder " "geprüft wurde" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Datenbanksystem oder älterer MySQL-Server für den die Ausgabe-Kompatibilität " "maximiert werden soll:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "%s-Befehl hinzufügen" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Befehle hinzufügen:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7715,32 +7723,39 @@ msgstr "" "Tabellen- und Feldnamen in Backticks einschließen (Schützt Feld- und " "Tabellennamen, die aus Sonderzeichen oder reservierten Wörtern bestehen)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Objekterstellungsoptionen" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "TRUNCATE Tabelle vor dem Einfügen" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Statt INSERT-Befehlen benutze:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED-Befehle" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE Schlüsselworte" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Beim Exportieren von Daten zu verwendende Funktion:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Zu verwendende Syntax bei der Dateneingabe:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7750,7 +7765,7 @@ msgstr "" "      Beispiel: INSERT INTO tbl_name (col_A,col_B," "col_C) VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7760,7 +7775,7 @@ msgstr "" "      Beispiel: INSERT INTO tbl_name VALUES (1,2,3), " "(4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7769,7 +7784,7 @@ msgstr "" "INSERT INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7777,7 +7792,7 @@ msgstr "" "keine der beiden obigen Optionen verwenden
      " "Beispiel: INSERT INTO tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7785,7 +7800,7 @@ msgstr "" "Binäre Spalten in hexadezimaler Schreibweise exportieren (zum Beispiel " "wird aus \"abc\" 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7794,50 +7809,45 @@ msgstr "" "und importiert werden, auch wenn die Server in verschiedenen Zeitzonen sind)" "
" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Prozeduren" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funktionen" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Constraints der exportierten Tabellen" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Constraints der Tabelle" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPEN DER TABELLE" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONEN DER TABELLE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Fehler beim Lesen der Daten:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Optionen zum Anlegen von Objekten (alle werden empfohlen)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Ansichten" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Export-Inhalte" @@ -7913,6 +7923,10 @@ msgstr "Spaltennamen" msgid "This plugin does not support compressed imports!" msgstr "Dieses Plugin unterstützt keine Kompression!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Tabelle für MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7974,6 +7988,10 @@ msgstr "SQL-Kompatibilitätsmodus:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT nicht für Nullwerte verwenden" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8217,11 +8235,12 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Erneut in phpMyAdmin anmelden um die neue Konfigurationsdatei zu laden." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "keine Beschreibung" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Auswahl entfernen" @@ -8244,9 +8263,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Benutzername" @@ -8283,34 +8303,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Benutzer für den Replication-Slave hinzufügen" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Jeder Benutzer" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Textfeld verwenden" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Jeder Host" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Dieser Host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Verwende Hosttabelle" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8326,7 +8355,7 @@ msgstr "Passwort generieren" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8364,8 +8393,8 @@ msgid "Edit event" msgstr "Event bearbeiten" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fehler beim Bearbeiten der Anfrage" @@ -8441,7 +8470,8 @@ msgstr "Sie müssen einen gültigen Typ für dieses Event angeben." msgid "You must provide an event definition." msgstr "Sie müssen die Definition des Ereignisses angeben." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Neu" @@ -8578,7 +8608,12 @@ msgstr "" msgid "You must provide a routine definition." msgstr "Sie müssen die Definition der Prozedur angeben." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Ergebnisse der ausgeführten Prozedur %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8587,18 +8622,13 @@ msgstr[0] "" msgstr[1] "" "%d Datensätze betroffen aufgrund des letzten Befehls innerhalb der Prozedur" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Ergebnisse der ausgeführten Prozedur %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Führe Prozedur aus" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Prozeduren-Parameter" @@ -8731,28 +8761,28 @@ msgstr "Es wurde kein Ereignis mit dem Namen %1$s in Datenbank %2$s gefunden" msgid "There are no events to display." msgstr "Es sind keine Ereignisse vorhanden, die angezeigt werden könnten." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Die Tabelle %s existiert nicht!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Bitte konfigurieren Sie die Koordinaten für die Tabelle %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema der Datenbank %s - Seite %s" @@ -8889,6 +8919,459 @@ msgstr "Unbekannte Sprache: %1$s." msgid "Current Server" msgstr "Aktueller Server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Keine Rechte." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Enthält alle Rechte bis auf GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Erlaubt das Auslesen von Daten." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Erlaubt das Verändern von gespeicherten Daten." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Erlaubt das Löschen von Daten." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Erlaubt das erneute Laden von Servereinstellungen und das Leeren der " +"Zwischenspeicher zur Laufzeit." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Erlaubt das Beenden des Servers." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" +"Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Hat keinen Effekt in dieser MySQL-Version." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Erlaubt das Erstellen und Löschen von Indizes." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Gewährt Zugang zur vollständigen Datenbankliste." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Erlaubt eine Verbindung, selbst wenn die maximale Anzahl an Verbindungen " +"bereits erreicht ist; Wird für viele administrative Operationen, wie das " +"Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Erlaubt das Erstellen temporärer Tabellen." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Erlaubt die Sperrung bestimmter Tabellen." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Wird für die Replication-Slave-Systeme benötigt." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme " +"befinden." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Erlaubt das Erstellen von Views." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Erlaubt das Erzeugen und Löschen Triggern" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Erlaubt das Ausführen von SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Erlaubt das Erstellen von gespeicherten Routinen." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Erlaubt das Verändern und Löschen von Routinen." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Erlaubt das Ausführen von Routinen." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Kein(e)" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ressourcenbeschränkungen" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Der Wert 0 (null) entfernt die Beschränkung." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an " +"allen Datenbanken und Tabellen vornehmen darf." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde " +"aufbauen darf." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Tabellenspezifische Rechte" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Hinweis: MySQL-Rechte werden auf Englisch angegeben" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administration" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globale Rechte" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Datenbankspezifische Rechte" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Erlaubt das Erstellen neuer Tabellen." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Erlaubt das Löschen ganzer Tabellen." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Erlaubt das Hinzufügen von Benutzern und Rechten ohne den die " +"Benutzerprofile neu laden zu müssen." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Anmelde-Informationen" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Passwort nicht verändert" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Das Passwort für %s wurde geändert." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Sie haben die Rechte für %s widerrufen" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Datenbank für Benutzer" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" +"Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen " +"(username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Gewähre alle Rechte auf die Datenbank "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Benutzer mit Zugriff auf "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Benutzer" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "GRANT" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Benutzer wurde hinzugefügt." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Jeder" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "datenbankspezifisch" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "Platzhalter" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Es wurde kein Benutzer gefunden." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Rechte ändern" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Entfernen" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Alle exportieren" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... behalte den alten bei." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... lösche den alten von den Benutzertabellen." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... entziehe dem alten alle Rechte und lösche ihn anschließend." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "... lösche den alten und lade anschließend die Benutzertabellen neu." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Anmelde-Information ändern/Benutzer kopieren" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Spaltenspezifische Rechte" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Rechte zu folgender Datenbank hinzufügen" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Platzhalter _ und % sollten mit einem \\ escaped werden, um das gewünschte " +"Sonderzeichen einzubinden" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Rechte zu folgender Tabelle hinzufügen" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Die ausgewählten Benutzer löschen" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Den Benutzern alle Rechte entziehen und sie anschließend aus den " +"Benutzertabellen löschen." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Die gleichnamigen Datenbanken löschen." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Lade die Benutzertabellen neu" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Die gewählten Benutzer wurden gelöscht." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Die Rechte für %s wurden geändert." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Rechte für alle Benutzer" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Rechte für %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Benutzerübersicht" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Hinweis: phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden " +"MySQL-Tabellen aus. Der Inhalt dieser Tabellen kann sich von den " +"Benutzerprofilen, die MySQL z.Zt. verwendet, unterscheiden, wenn manuelle " +"Änderungen vorgenommen wurden. In diesem Fall sollten Sie %sdie " +"Benutzerprofile neu laden%s bevor Sie fortfahren." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Der Benutzer wurde hinzugefügt." + # source != search / Source != Suche #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" @@ -8936,11 +9419,11 @@ msgstr "Werte löschen" msgid "Columns" msgstr "Spalten" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" @@ -9223,12 +9706,6 @@ msgstr "Software-Version" msgid "Protocol version" msgstr "Protokoll-Version" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Benutzer" - #: main.php:217 msgid "Server charset" msgstr "Server Zeichensatz" @@ -9754,449 +10231,20 @@ msgstr "Lizenz" msgid "disabled" msgstr "deaktiviert" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Enthält alle Rechte bis auf GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Erlaubt das Verändern und Löschen von Routinen." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Erlaubt das Erstellen von gespeicherten Routinen." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Erlaubt das Erstellen neuer Tabellen." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Erlaubt das Erstellen temporärer Tabellen." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Erlaubt das Erstellen von Views." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Erlaubt das Löschen von Daten." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Erlaubt das Löschen ganzer Tabellen." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Erlaubt das Ausführen von Routinen." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" -"Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Erlaubt das Hinzufügen von Benutzern und Rechten ohne den die " -"Benutzerprofile neu laden zu müssen." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Erlaubt das Erstellen und Löschen von Indizes." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Erlaubt die Sperrung bestimmter Tabellen." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde " -"aufbauen darf." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an " -"allen Datenbanken und Tabellen vornehmen darf." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Hat keinen Effekt in dieser MySQL-Version." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Erlaubt das erneute Laden von Servereinstellungen und das Leeren der " -"Zwischenspeicher zur Laufzeit." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme " -"befinden." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Wird für die Replication-Slave-Systeme benötigt." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Erlaubt das Auslesen von Daten." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Gewährt Zugang zur vollständigen Datenbankliste." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Erlaubt das Ausführen von SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Erlaubt das Beenden des Servers." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Erlaubt eine Verbindung, selbst wenn die maximale Anzahl an Verbindungen " -"bereits erreicht ist; Wird für viele administrative Operationen, wie das " -"Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Erlaubt das Erzeugen und Löschen Triggern" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Erlaubt das Verändern von gespeicherten Daten." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Keine Rechte." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Kein(e)" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Tabellenspezifische Rechte" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Hinweis: MySQL-Rechte werden auf Englisch angegeben" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administration" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globale Rechte" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Datenbankspezifische Rechte" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ressourcenbeschränkungen" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Der Wert 0 (null) entfernt die Beschränkung." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Anmelde-Informationen" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Passwort nicht verändert" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Es wurde kein Benutzer gefunden." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Der Benutzer %s existiert bereits!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Der Benutzer wurde hinzugefügt." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Die Rechte für %s wurden geändert." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Sie haben die Rechte für %s widerrufen" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Das Passwort für %s wurde geändert." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Lösche %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Lade die Benutzertabellen neu" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Die gewählten Benutzer wurden gelöscht." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Rechte ändern" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Entfernen" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Alle exportieren" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Jeder" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Rechte für alle Benutzer" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Rechte für %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Benutzerübersicht" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "GRANT" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Die ausgewählten Benutzer löschen" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Den Benutzern alle Rechte entziehen und sie anschließend aus den " -"Benutzertabellen löschen." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Die gleichnamigen Datenbanken löschen." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Hinweis: phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden " -"MySQL-Tabellen aus. Der Inhalt dieser Tabellen kann sich von den " -"Benutzerprofilen, die MySQL z.Zt. verwendet, unterscheiden, wenn manuelle " -"Änderungen vorgenommen wurden. In diesem Fall sollten Sie %sdie " -"Benutzerprofile neu laden%s bevor Sie fortfahren." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Spaltenspezifische Rechte" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Rechte zu folgender Datenbank hinzufügen" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Platzhalter _ und % sollten mit einem \\ escaped werden, um das gewünschte " -"Sonderzeichen einzubinden" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Rechte zu folgender Tabelle hinzufügen" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Anmelde-Information ändern/Benutzer kopieren" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... behalte den alten bei." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... lösche den alten von den Benutzertabellen." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... entziehe dem alten alle Rechte und lösche ihn anschließend." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "... lösche den alten und lade anschließend die Benutzertabellen neu." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Datenbank für Benutzer" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" -"Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen " -"(username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Gewähre alle Rechte auf die Datenbank "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Benutzer mit Zugriff auf "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "datenbankspezifisch" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "Platzhalter" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Benutzer wurde hinzugefügt." - #: server_replication.php:82 msgid "Unknown error" msgstr "Unbekannter Fehler" @@ -12034,37 +12082,37 @@ msgstr "" msgid "Wrong data" msgstr "Fehlerhafte Daten" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Möchten Sie diese Abfrage wirklich ausführen?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Ansicht als PHP Code" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Geprüftes SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-Abfrageergebnis" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Erstellt von" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Titel" @@ -13969,6 +14017,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ist auf 0 gesetzt" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP-Array" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/el.po b/po/el.po index ae4cb9f1d9..86a11f0127 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-03-22 09:27+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 0.8\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Εμφάνιση όλων" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Αναζήτηση" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Αναζήτηση" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Εκτέλεση" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Σχόλιο βάσης: " @@ -120,17 +123,17 @@ msgstr "Σχόλιο βάσης: " msgid "Table comments" msgstr "Σχόλια πίνακα" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Στήλη" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Τύπος" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Κενό" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Κενό" msgid "Default" msgstr "Προεπιλογή" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Σύνδεση με" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Σχόλια" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Όχι" @@ -242,19 +248,22 @@ msgstr "Όχι" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ναι" @@ -262,8 +271,8 @@ msgstr "Ναι" msgid "View dump (schema) of database" msgstr "Εμφάνιση σκαριφήματος (σχήματος) της βάσης δεδομένων" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Δεν βρέθηκαν πίνακες στη βάση δεδομένων." @@ -279,76 +288,76 @@ msgstr "Αποεπιλογή όλων" msgid "The database name is empty!" msgstr "Το όνομα της βάσης δεδομένων είναι κενό!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Η βάση δεδομένων %s μετονομάστηκε σε %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Μετακίνηση βάσης δεδομένων σε" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Η βάση δεδομένων %s διεγράφη." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Διαγραφή της βάση δεδομένων (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Αντιγραφή βάσης δεδομένων σε" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Μόνο η δομή" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Δομή και δεδομένα" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Μόνο τα δεδομένα" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE πριν την αντιγραφή" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Προσθήκη περιορισμών" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -358,7 +367,7 @@ msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομέν msgid "Collation" msgstr "Σύνθεση" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -367,7 +376,7 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματος" @@ -377,16 +386,18 @@ msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματ #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Πίνακας" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Εγγραφές" @@ -396,13 +407,13 @@ msgid "Size" msgstr "Μέγεθος" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "σε χρήση" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -410,7 +421,7 @@ msgstr "Δημιουργία" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -418,7 +429,7 @@ msgstr "Τελευταία ενημέρωση" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,92 +442,15 @@ msgid_plural "%s tables" msgstr[0] "%s πίνακας" msgstr[1] "%s πίνακες" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Πρέπει να επιλέξετε τουλάχιστον μία στήλη για εμφάνιση" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Αύξουσα" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Φθίνουσα" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Ταξινόμηση" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Εμφάνιση" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Κριτήρια" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Προσθήκη/Αφαίρεση Γραμμής Κριτηρίων" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Προσθήκη/Αφαίρεση Στηλών" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Ενημέρωση Ερωτήματος" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Χρήση Πινάκων" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Ενωση" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Τομή" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Εισαγωγή" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Διαγραφή" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Τροποποίηση" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Αλλαγή στον %sεικονικός μάστορας%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Εντολή SQL στη βάση δεδομένων %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Υποβολή ερωτήματος" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "Η παρακολούθηση είναι ενεργοποιημένη." msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -588,20 +522,21 @@ msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Με τους επιλεγμένους:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Επιλογή όλων" @@ -609,31 +544,32 @@ msgstr "Επιλογή όλων" msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Εξαγωγή" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Άδειασμα" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -677,17 +613,18 @@ msgstr "Παρακολουθούμενοι πίνακες" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Βάση" @@ -705,18 +642,26 @@ msgstr "Ενημερώθηκε" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Κατάσταση" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Ενέργεια" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Εμφάνιση" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα" @@ -757,20 +702,20 @@ msgstr "Καταγραφή Βάσης Δεδομένων" msgid "Bad type!" msgstr "Μη έγκυρος τύπος!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Ο επιλεγμένος τύπος εξαγωγής πρέπει να αποθηκευτεί σε αρχείο!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Μη έγκυρες παράμετροι!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Δεν υπάρχει διαθέσιμος χώρος για την αποθήκευση του αρχείου %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -778,12 +723,12 @@ msgstr "" "Το αρχείο %s υπάρχει ήδη στον διακομιστή, για αυτό επιλέξτε διαφορετικό " "όνομα αρχείου ή ενεργοποιήστε την επιλογή αντικατάστασης." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Ο διακομιστής δεν έχει δικαιώματα αποθήκευσης του αρχείου %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." @@ -806,7 +751,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Γεωμετρία" @@ -879,7 +824,7 @@ msgstr "" "Επιλέξτε «GeomFromText» από τη στήλη «συνάρτηση» και επικολήστε το παρακάτω " "κείμενο στο πεδίο «Τιμή»" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -888,20 +833,20 @@ msgstr "" "Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " "%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Η ετικέτα διεγράφη." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -912,7 +857,7 @@ msgstr "" "υποστήριξη για αυτή δεν έχει εφαρμοστεί ή απενεργοποιηθεί από τις ρυθμίσεις " "σας." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -923,29 +868,29 @@ msgstr "" "της ΡΗΡ. Δείτε τις [a@./Documentation.html#faq1_16@Documentation]ΣΑΕ 1.16[/" "a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Αδύνατη η μετατροπή της κωδικοποίησης χωρίς τη βιβλιοθήκη μετατροπής " "κωδικοποίησης" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -953,7 +898,7 @@ msgstr "" "Το χρονικό όριο του κώδικα εξαντλήθηκε, οπότε αν θέλετε να τελειώσετε την " "εισαγωγή, επανυποβάλτε το ίδιο αρχείο και η εισαγωγή θα συνεχίσει." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -962,8 +907,8 @@ msgstr "" "σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή εκτός " "και αν αυξήσετε τα χρονικά όρια της php." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -980,7 +925,7 @@ msgstr "" "Το phpMyAdmin είναι πιο φιλικό με έναν που υποστηρίζει frames " "φυλλομετρητή." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." @@ -990,7 +935,7 @@ msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποι msgid "Do you really want to execute \"%s\"?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!" @@ -1048,16 +993,20 @@ msgstr "Το όνομα του συστήματος είναι κενό!" msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Ο κωδικός πρόσβασης είναι κενός!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Προσθήκη χρήστη" @@ -1077,9 +1026,9 @@ msgstr "Κλείσιμο" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1325,12 +1274,13 @@ msgstr "Προσθήκη διαγράμματος στο πλέγμα" msgid "Please add at least one variable to the series" msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Καμία" @@ -1522,10 +1472,10 @@ msgid "Explain output" msgstr "Επεξήγηση προϊόντος" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Χρόνος" @@ -1834,7 +1784,7 @@ msgstr "Προβολή παραθύρου ερωτήματος" msgid "No rows selected" msgstr "Δεν επιλέχθηκαν γραμμές" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Αλλαγή" @@ -1843,8 +1793,8 @@ msgstr "Αλλαγή" msgid "Query execution time" msgstr "Χρόνος εκτέλεσης ερωτήματος" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." @@ -1921,7 +1871,7 @@ msgstr "Περιεχόμενο δείκτη δεδομένων" msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Αντιγραφή" @@ -2414,14 +2364,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Λάθος" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Εντολή SQL" @@ -2432,7 +2382,7 @@ msgstr "Εντολή SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2461,6 +2411,10 @@ msgstr "χωρίς κώδικα PHP" msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Υποβολή ερωτήματος" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2485,7 +2439,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Εσωτερικό" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Δημιουργία προφίλ" @@ -2512,14 +2466,14 @@ msgstr "Απολεσθείσα παράμετρος:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Αρχή" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2527,7 +2481,7 @@ msgstr "Προηγούμενη" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2535,7 +2489,7 @@ msgstr "Επόμενη" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Τέλος" @@ -2557,16 +2511,17 @@ msgstr "Πατήστε για εναλλαγή" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Δομή" @@ -2574,21 +2529,20 @@ msgstr "Δομή" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "Κώδικας SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Προσθήκη" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Περιήγηση" @@ -2609,22 +2563,22 @@ msgstr "Περιηγηθείτε στον υπολογιστή σας:" msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Δεν υπάρχουν αρχεία προς αποστολή" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Εκτέλεση" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Εκτύπωση" @@ -2643,6 +2597,74 @@ msgstr "" msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Αύξουσα" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Φθίνουσα" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Ταξινόμηση" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Κριτήρια" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Προσθήκη/Αφαίρεση Γραμμής Κριτηρίων" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Προσθήκη/Αφαίρεση Στηλών" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Ενημέρωση Ερωτήματος" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Χρήση Πινάκων" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Ενωση" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Τομή" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Εισαγωγή" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Διαγραφή" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Τροποποίηση" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Εντολή SQL στη βάση δεδομένων %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "τουλάχιστον έναν από τους όρους" @@ -2685,8 +2707,8 @@ msgstr[1] "%1$s αποτελέσματα στον πίνακα %2$s" msgid "Delete the matches for the %s table?" msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2721,65 +2743,65 @@ msgstr "Μέσα στους πίνακες:" msgid "Inside column:" msgstr "Εσωτερικό πεδίο:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Αποθήκευση επεξεργασμένων δεδομένων" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Επαναφορά κατανομής στηλών" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Εγγραφή έναρξης" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Αριθμός εγγραφών" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Μορφή" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "οριζόντια" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "οριζόντια (στραμμένες επικεφαλίδες)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "κάθετη" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Κεφαλίδες κάθε %s εγγραφές" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Ταξινόμηση ανά κλειδί" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2792,60 +2814,60 @@ msgstr "Ταξινόμηση ανά κλειδί" msgid "Options" msgstr "Επιλογές" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Περιληπτικά κείμενα" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Πλήρη κείμενα" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Κλειδί συσχέτισης" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Στήλη προβολής συσχέτισης" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Εμφάνιση δυαδικών περιεχομένων" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Εμφάνιση περιεχομένων BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Απόκρυψη μετατροπής περιηγητή" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Καλά Γνωστό Κείμενο" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Καλά Γνωστό Δυαδικό" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Η εγγραφή έχει διαγραφεί" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Τερματισμός" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2853,44 +2875,44 @@ msgstr "" "Ίσως είναι κατά προσέγγιση. Δείτε τις [a@./Documentation." "html#faq3_11@Documentation]ΣΑΕ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "στην εντολή" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Εμφάνιση εγγραφών" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "συνολικά" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Εμφάνιση διαγράμματος" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Οπτικοποίηση δεδομένων GIS" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Δημιουργία προβολής" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" @@ -3018,8 +3040,8 @@ msgstr "" "απομακρυνθεί." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Βάσεις δεδομένων" @@ -3035,11 +3057,11 @@ msgid "Tracking" msgstr "Παρακολούθηση" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Δείκτες" @@ -3057,9 +3079,9 @@ msgstr "Η βάση δεδομένων φαίνεται να είναι άδει msgid "Query" msgstr "Επερώτημα κατά παράδειγμα" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Δικαιώματα" @@ -3068,7 +3090,7 @@ msgid "Routines" msgstr "Εργασίες" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Συμβάντα" @@ -3166,45 +3188,45 @@ msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το δια msgid "This MySQL server does not support the %s storage engine." msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "άγνωστη κατάσταση πίνακα: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Βάση δεδομένων προέλευσης" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Το θέμα %s δεν βρέθηκε!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Μη έγκυρη βάση δεδομένων" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Μη έγκυρο όνομα πίνακα" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Ο πίνακας %1$s μετονομάσθηκε σε %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Αδύνατη η αποθήκευση του πίανακα ρυθμίσεων UI" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3213,7 +3235,7 @@ msgstr "" "Αδύνατη η εκκαθάριση του πίνακα προτιμήσεων του περιβάλλοντος εργασίας " "(δείτε το $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3225,7 +3247,7 @@ msgstr "" "αλλαχτεί." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Συνάρτηση" @@ -3237,7 +3259,7 @@ msgstr "Τελεστής" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3276,7 +3298,7 @@ msgid "Maximum rows to plot" msgstr "Μέγιστος αριθμός γραμμών για εκτύπωση" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" @@ -3637,7 +3659,7 @@ msgstr "κοινόχρηστο" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Πίνακες" @@ -3648,9 +3670,10 @@ msgstr "Πίνακες" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Δεδομένα" @@ -3774,32 +3797,32 @@ msgid "Disabled" msgstr "Απενεργοποιημένη" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "δομή" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "δεδομένα" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "δομή και δεδομένα" @@ -4225,13 +4248,13 @@ msgstr "Συμπίεση" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γραμμή" @@ -4254,7 +4277,6 @@ msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα δι #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Αντικατάσταση τιμής NULL με" @@ -4294,23 +4316,22 @@ msgstr "Πρότυπο ονόματος πίνακα" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Απόρριψη πίνακα" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Συμπερίληψη λεζάντας πίνακα" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Λεζάντα πίνακα" @@ -4319,14 +4340,14 @@ msgid "Continued table caption" msgstr "Συνεχής λεζάντα πίνακα" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Κλειδί ετικέτας" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Τύπος MIME" @@ -4363,7 +4384,7 @@ msgid "SQL compatibility mode" msgstr "Κατάσταση συμβατότητας SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Επιλογές CREATE TABLE:" @@ -4376,7 +4397,7 @@ msgid "Use delayed inserts" msgstr "Χρήση εισαγωγών με καθυστέρηση" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Απενεργοποίηση ελέγχων μη διακριτών κλειδιών" @@ -4393,7 +4414,7 @@ msgid "Syntax to use when inserting data" msgstr "Σύνταξη για χρήση στην εισαγωγή δεδομένων" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Μέγιστο μήκος δημιουργηθέντος ερωτήματος" @@ -4402,7 +4423,7 @@ msgid "Export type" msgstr "Εξαγωγή τύπου" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Συμπερίληψη εξαγωγής στη συναλλαγή" @@ -4457,7 +4478,6 @@ msgstr "Προσαρμογή προεπιλεγμένων επιλογών" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4516,7 +4536,6 @@ msgid "Set import and export directories and compression options" msgstr "Ορισμός φακέλων εισαγωγής-εξαγωγής και επιλογές συμπίεσης" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "Έγγραφο LaTeX" @@ -4750,7 +4769,6 @@ msgid "Customize text input fields" msgstr "Προσαρμογή πεδίων εισαγωγής κειμένου" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Κείμενο Texy" @@ -5971,9 +5989,11 @@ msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποι #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Κωδικός πρόσβασης" @@ -6157,7 +6177,6 @@ msgstr "CSV με χρήση LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Έγγραφο Λογιστικού Φύλλου Ανοιχτού Κώδικα - ODS" @@ -6179,19 +6198,16 @@ msgstr "Επιλογές εξαγωγής βάσης δεδομένων" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "Μορφή CSV για δεδομένα MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Έγγραφο Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα - ODΤ" @@ -6252,7 +6268,7 @@ msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσει msgid "possible deep recursion attack" msgstr "πιθανή βαθειά ανάδρομή επίθεση" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6260,19 +6276,19 @@ msgstr "" "Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί " "σωστά)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Ο διακομιστής δεν αποκρίνεται." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Λεπτομέρειες..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας." @@ -6283,13 +6299,15 @@ msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Χωρίς Κωδικό Πρόσβασης" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Επαναεισαγωγή" @@ -6310,8 +6328,9 @@ msgstr "Δημιουργία βάσης δεδομένων" msgid "Create" msgstr "Δημιουργία" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Χωρίς Δικαιώματα" @@ -6321,12 +6340,12 @@ msgid "Create table" msgstr "Δημιουργία πίνακα" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Όνομα" @@ -6465,7 +6484,7 @@ msgid "View output as text" msgstr "Προβολή εξαγόμενου ως κείμενο" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Μορφοποίηση:" @@ -6988,51 +7007,51 @@ msgstr "Το Ιστολόγιο του PrimeBase XT από τον Paul McCullagh msgid "No data found for GIS visualization." msgstr "Δεν βρέθηκαν δεδομένα για την οπτικοποίηση GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Προβολή των περιεχομένων δομής πατώντας στο όνομά της" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Επεξεργαστείτε τη δομή πατώντας τον σύνδεσμο «Δομή»" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Μετάβαση στη βάση δεδομένων: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Επεξεργασία ρυθμίσεων για %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Μετάβαση στον πίνακα: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Δομή του %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Μετάβαση στην προβολή: %s" @@ -7104,11 +7123,11 @@ msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" @@ -7356,7 +7375,7 @@ msgstr "Τεκμηρίωση phpMyAdmin" msgid "Reload navigation frame" msgstr "Επαναφόρτωση πλαισίου πλοήγησης" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Αυτή η μορφή δεν έχει επιλογές" @@ -7476,93 +7495,93 @@ msgstr "Δεν τοποθετήθηκε κανένα έγκυρο κλειδί msgid "Authenticating..." msgstr "Επικύρωση..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Στήλες που χωρίζονται με:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Στήλες που περικλείονται με:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα διαφυγής:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Γραμμές που τελειώνουν με:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Αντικατάσταση τιμής NULL με:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Απομάκρυνση χαρακτήρων αλλαγής γραμμής μέσα στις στήλες" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Έκδοση Excel:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Επιλογές απορριμμάτων δεδομένων" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Άδειασμα δεδομένων του πίνακα" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Συμβάν" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Προσδιορισμός" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Δομή πίνακα για τον πίνακα" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Δομή για προβολή" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Στημένη δομή για προβολή" @@ -7578,98 +7597,87 @@ msgstr "(συνεχίζεται)" msgid "Structure of table @TABLE@" msgstr "Δομή του πίνακα @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Επιλογές μετατροπής αντικειμένου" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Λεζάντα πίνακα (συνεχίζει)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Προβολή σχέσεων μη διακριτών κλειδιών" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Εμφάνιση σχολίων" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Διαθέσιμοι τύποι MIME" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Φιλοξενητής" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Χρόνος δημιουργίας" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Έκδοση διακομιστή" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Έκδοση PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Πίνακας MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "Εξαγωγή περιεχομένων" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "οριζόντια (στραμμένες επικεφαλίδες)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "Έγγραφο PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Δημιουργεί μια αναφορά με τα δεδομένα ενός πίνακα)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Τίτλος αναφοράς:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "Σειρά PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7677,12 +7685,12 @@ msgstr "" "Προβολή σχολίων (περιλαμβάνει πληροφορίες όπως εξαγωγή timestamp, έκδοση " "PHPκαι έκδοση διακομιστή)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Προσθήκη προσαρμοσμένου σχολίου στην κεφαλίδα (το \\ n χωρίζει τις γραμμές):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7690,25 +7698,25 @@ msgstr "" "Περιλαμβάνει μια χρονοσφραγίδα για το πότε δημιουργούνται, ενημερώνονται και " "ελέγχονται βάσεις δεδομένων" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Σύστημα βάσεων δεδομένων ή παλαιός διακομιστής MySQL για μεγιστοποίηση της " "συμβατότητας του εξαγόμενου με:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Προσθήκη δήλωσης %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Προσθήκη δηλώσεων:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7717,32 +7725,39 @@ msgstr "" "ονόματα πεδίων και πινάκων που δημιουργήθηκαν με ειδικούς χαρακτήρες ή " "λέξεις-κλειδιά)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Επιλογές μετατροπής αντικειμένου" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Εκκαθάριση του πίνακα πριν την εισαγωγή" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Αντί για δηλώσεις INSERT, χρησιμοποιήστε:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "δηλώσεις INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "δηλώσεις INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Η συνάρτηση που θα χρησιμοποιηθεί κατά την μετατροπή δεδομένων:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Η σύνταξη που θα χρησιμοποιηθεί κατά την εισαγωγή δεδομένων:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7752,7 +7767,7 @@ msgstr "" "      Παράδειγμα: INSERT INTO tbl_name (col_A,col_B," "col_C) VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7762,7 +7777,7 @@ msgstr "" "    Παράδειγμα: INSERT INTO tbl_name VALUES (1,2,3), " "(4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7770,7 +7785,7 @@ msgstr "" "όλα τα παραπάνω
      Παράδειγμα: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7778,7 +7793,7 @@ msgstr "" "κανένα από τα παραπάνω
      Παράδειγμα: INSERT " "INTO tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7786,7 +7801,7 @@ msgstr "" "Μετατροπή δυαδικών στηλών σε δεκαεξαδική σημείωση (για παράδειγμα, το " "«abc» γίνεται 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7795,50 +7810,45 @@ msgstr "" "μετατραπούν και να επαναφορτωθούν μεταξύ διακομιστών σε διαφορετικές ζώνες " "ώρας)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Διαδικασίες" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Συναρτήσεις" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Περιορισμοί για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Περιορισμοί για πίνακα" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "ΤΥΠΟΙ MIME ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "ΣΥΣΧΕΤΙΣΕΙΣ ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Σφάλμα ανάγνωσης δεδομένων:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "Κώδικας XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Επιλογές δημιουργίας αντικειμένου (όλες προτείνονται)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Προβολές" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Εξαγωγή περιεχομένων" @@ -7912,6 +7922,10 @@ msgstr "Ονόματα στηλών" msgid "This plugin does not support compressed imports!" msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπιεσμένες εισαγωγές!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Πίνακας MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7970,6 +7984,10 @@ msgstr "Κατάσταση συμβατότητας SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Να μην γίνεται AUTO_INCREMENT σε μηδενικές τιμές" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "Κώδικας XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8219,11 +8237,12 @@ msgstr "" "Επανασυνδεθείτε στο phpMyAdmin για να φορτωθεί το ενημερωμένο αρχείο " "ρυθμίσεων." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "χωρίς περιγραφή" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Απεπιλογή όλων" @@ -8245,9 +8264,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Όνομα χρήστη" @@ -8284,34 +8304,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Προσθήκη δευτερέοντα χρήστη αναπαραγωγής" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Οποιοσδήποτε χρήστης" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Οποιοδήποτε σύστημα" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Τοπικό" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Αυτός ο διακομιστής" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Χρήση Οικείου Πίνακα" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8327,7 +8356,7 @@ msgstr "Παραγωγή Κωδικού Πρόσβασης" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8365,8 +8394,8 @@ msgid "Edit event" msgstr "Επεξεργασία συμβάντος" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Σφάλμα στην προώθηση αιτημάτος" @@ -8442,7 +8471,8 @@ msgstr "Πρέπει να δώσετε έναν έγκυρο τύπο συμβά msgid "You must provide an event definition." msgstr "Πρέπει να δώσετε έναν προσδιορισμό συμβάντος." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Νέο" @@ -8582,7 +8612,12 @@ msgstr "Πρέπει να δώσετε ένα έγκυρο τύπο επιστρ msgid "You must provide a routine definition." msgstr "Πρέπει να δώσετε ένα προσδιορισμό ρουτίνας." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Αποτελέσματα εκτέλεσης της ρουτίνας %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8590,18 +8625,13 @@ msgstr[0] "%d εγγραφή επηρεάστηκε από την τελευτα msgstr[1] "" "%d εγγραφές επηρεάστηκαν από την τελευταία δήλωση μέσα στη διαδικασία" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Αποτελέσματα εκτέλεσης της ρουτίνας %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Εκτέλεση ρουτίνας" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Παράμετροι ρουτίνας" @@ -8731,28 +8761,28 @@ msgstr "Κανένα συμβάν με ονομασία %1$s δεν βρέθηκ msgid "There are no events to display." msgstr "Δεν υπάρχουν συμβάντα για εμφάνιση." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Ο πίνακας «%s» δεν υπάρχει!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Παρακαλώ ορίστε τις συντεταγμένες για τον πίνακα %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Σχήμα της βάσης δεδομένων %s - Σελίδα %s" @@ -8889,6 +8919,460 @@ msgstr "Άγνωστη γλώσσα: %1$s." msgid "Current Server" msgstr "Τρέχων διακομιστής" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Χωρίς δικαιώματα." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Επιτρέπει την ανάγνωση δεδομένων." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Επιτρέπει την αλλαγή δεδομένων." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Επιτρέπει τη διαγραφή δεδομένων." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών " +"αρχείων του." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Επιτρέπει τη σύνδεση, ακόμα και όταν ο μέγιστος αριθμός συνδέσεων έχει " +"καλυθφεί, το οποίο απαιτείται για τις περισσότερες λειτουργίες διαχείρισης " +"όπως ο ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι / δευτερεύοντες " +"διακομιστές." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Επιτρέπει τη δημιουργία νέων προβολών." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Κανένα" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Όρια πόρων" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον " +"διακομιστή ανά ώρα." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να " +"εκετελέσει ανά ώρα." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει " +"ανά ώρα." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Δικαιώματα πινάκων" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Διαχείριση" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Γενικά δικαιώματα" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Δικαιώματα βάσης δεδομένων" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Επιτρέπει τη διαγραφή πινάκων." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους " +"πίνακες δικαιωμάτων." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Πληροφορίες Σύνδεσης" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Διατήρηση κωδικού πρόσβασης" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Ο κωδικός πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Ανακαλέσατε τα δικαιώματα για %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Βάση δεδομένων για χρήστη" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" +"Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Χρήστες με πρόσβαση στη βάση «%s»" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Χρήστης" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Χορήγηση" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Ο χρήστης προστέθηκε." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Οποιοδήποτε" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "γενικός" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "σχετιζόμενος με βάση δεδομένων" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "μπαλαντέρ" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Δεν βρέθηκαν χρήστες." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Επεξεργασία Δικαιωμάτων" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Ανάκληση" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Εξαγωγή όλων" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... διατήρηση του παλιού χρήστη." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση των " +"δικαιωμάτων." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Δικαιώματα πεδίων" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να " +"χρησιμοποιηθούν" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Διαγραφή των επιλεγμένων χρηστών" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Επαναφόρτωση δικαιωμάτων" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Δικαιώματα για όλους του χρήστες" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Δικαιώματα για %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Επισκόπηση χρηστών" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από " +"τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί " +"να διαφέρει από τα δικαιώματα που χρησιμοποιεί ο διακομιστής εάν έχουν γίνει " +"αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " +"τα δικαιώματα%s πριν συνεχίσετε." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Προσθέσατε ένα νέο χρήστη." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Βάση δεδομένων προέλευσης" @@ -8935,11 +9419,11 @@ msgstr "Καθάρισμα" msgid "Columns" msgstr "Στήλες" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" @@ -9222,12 +9706,6 @@ msgstr "Έκδοση λογισμικού" msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Χρήστης" - #: main.php:217 msgid "Server charset" msgstr "Κωδικοποιήση διακομιστή" @@ -9756,450 +10234,20 @@ msgstr "Άδεια" msgid "disabled" msgstr "Απενεργοποιημένο" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Επιτρέπει τη δημιουργία νέων προβολών." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Επιτρέπει τη διαγραφή δεδομένων." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Επιτρέπει τη διαγραφή πινάκων." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους " -"πίνακες δικαιωμάτων." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει " -"ανά ώρα." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον " -"διακομιστή ανά ώρα." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να " -"εκετελέσει ανά ώρα." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών " -"αρχείων του." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι / δευτερεύοντες " -"διακομιστές." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Επιτρέπει την ανάγνωση δεδομένων." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Επιτρέπει τη σύνδεση, ακόμα και όταν ο μέγιστος αριθμός συνδέσεων έχει " -"καλυθφεί, το οποίο απαιτείται για τις περισσότερες λειτουργίες διαχείρισης " -"όπως ο ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Επιτρέπει την αλλαγή δεδομένων." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Χωρίς δικαιώματα." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Κανένα" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Δικαιώματα πινάκων" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Διαχείριση" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Γενικά δικαιώματα" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Δικαιώματα βάσης δεδομένων" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Όρια πόρων" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Πληροφορίες Σύνδεσης" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Διατήρηση κωδικού πρόσβασης" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Δεν βρέθηκαν χρήστες." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Ο χρήστης %s υπάρχει ήδη!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Προσθέσατε ένα νέο χρήστη." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Ανακαλέσατε τα δικαιώματα για %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Ο κωδικός πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Διαγραφή %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Επαναφόρτωση δικαιωμάτων" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Επεξεργασία Δικαιωμάτων" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Ανάκληση" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Εξαγωγή όλων" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Οποιοδήποτε" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Δικαιώματα για όλους του χρήστες" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Δικαιώματα για %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Επισκόπηση χρηστών" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Χορήγηση" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Διαγραφή των επιλεγμένων χρηστών" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από " -"τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί " -"να διαφέρει από τα δικαιώματα που χρησιμοποιεί ο διακομιστής εάν έχουν γίνει " -"αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " -"τα δικαιώματα%s πριν συνεχίσετε." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Δικαιώματα πεδίων" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να " -"χρησιμοποιηθούν" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... διατήρηση του παλιού χρήστη." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση των " -"δικαιωμάτων." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Βάση δεδομένων για χρήστη" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" -"Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Χρήστες με πρόσβαση στη βάση «%s»" - -#: server_privileges.php:2544 -msgid "global" -msgstr "γενικός" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "σχετιζόμενος με βάση δεδομένων" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "μπαλαντέρ" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Ο χρήστης προστέθηκε." - #: server_replication.php:82 msgid "Unknown error" msgstr "Άγνωστο σφάλμα" @@ -12047,37 +12095,37 @@ msgstr "" msgid "Wrong data" msgstr "Εσφαλμένα δεδομένα" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Εμφάνιση ως κώδικά PHP" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Επικυρωμένη SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "αποτέλεσμα SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Δημιουργήθηκε από" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Ετικέτα" @@ -14004,6 +14052,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Το concurrent_insert έχει οριστεί στο 0" +#~ msgid "PDF" +#~ msgstr "Έγγραφο PDF" + +#~ msgid "PHP array" +#~ msgstr "Σειρά PHP" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/en_GB.po b/po/en_GB.po index a64e29a2fc..28610c8e2d 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-02 11:22+0200\n" "Last-Translator: Robert Readman \n" "Language-Team: english-gb \n" @@ -17,7 +17,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Show all" @@ -42,16 +43,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Search" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -61,24 +62,26 @@ msgstr "Search" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Go" @@ -112,7 +115,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Database %1$s has been created." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Database comment: " @@ -122,17 +125,17 @@ msgstr "Database comment: " msgid "Table comments" msgstr "Table comments" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -144,34 +147,34 @@ msgstr "Column" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Type" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -180,13 +183,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -194,10 +197,10 @@ msgstr "Null" msgid "Default" msgstr "Default" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -206,10 +209,10 @@ msgstr "Links to" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -220,18 +223,21 @@ msgstr "Comments" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "No" @@ -244,19 +250,22 @@ msgstr "No" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Yes" @@ -264,8 +273,8 @@ msgstr "Yes" msgid "View dump (schema) of database" msgstr "View dump (schema) of database" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "No tables found in database." @@ -281,74 +290,74 @@ msgstr "Unselect All" msgid "The database name is empty!" msgstr "The database name is empty!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Database %1$s has been renamed to %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Database %1$s has been copied to %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Remove database" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Database %s has been dropped." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Drop the database (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Data only" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -358,7 +367,7 @@ msgstr "Switch to copied database" msgid "Collation" msgstr "Collation" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -367,7 +376,7 @@ msgstr "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Edit or export relational schema" @@ -377,16 +386,18 @@ msgstr "Edit or export relational schema" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Table" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Rows" @@ -396,13 +407,13 @@ msgid "Size" msgstr "Size" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "in use" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -410,7 +421,7 @@ msgstr "Creation" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -418,7 +429,7 @@ msgstr "Last update" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,92 +442,15 @@ msgid_plural "%s tables" msgstr[0] "%s table" msgstr[1] "%s tables" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "You have to choose at least one column to display" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Ascending" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Descending" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sort" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Show" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Criteria" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Add/Delete criteria rows" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Add/Delete columns" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Update Query" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Use Tables" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Or" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "And" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modify" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Switch to %svisual builder%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL query on database %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Submit Query" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "Tracking is active." msgid "Tracking is not active." msgstr "Tracking is not active." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -587,20 +521,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "With selected:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Check All" @@ -608,31 +543,32 @@ msgstr "Check All" msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Print view" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Empty" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -676,17 +612,18 @@ msgstr "Tracked tables" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Database" @@ -704,18 +641,26 @@ msgstr "Updated" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Action" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Show" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Delete tracking data for this table" @@ -756,32 +701,32 @@ msgstr "Database Log" msgid "Bad type!" msgstr "Bad type!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Bad parameters!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." @@ -804,7 +749,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometry" @@ -877,7 +822,7 @@ msgstr "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -886,20 +831,20 @@ msgstr "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "The bookmark has been deleted." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "File could not be read" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -909,7 +854,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -919,27 +864,27 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Cannot convert file's character set without character set conversion library" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plug-ins, please check your installation!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import has been successfully finished, %d queries executed." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -947,7 +892,7 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -955,8 +900,8 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -971,7 +916,7 @@ msgstr "Back" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." @@ -980,7 +925,7 @@ msgstr "\"DROP DATABASE\" statements are disabled." msgid "Do you really want to execute \"%s\"?" msgstr "Do you really want to execute \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -1038,16 +983,20 @@ msgstr "The host name is empty!" msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Add user" @@ -1067,9 +1016,9 @@ msgstr "Close" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1315,12 +1264,13 @@ msgstr "Add chart to grid" msgid "Please add at least one variable to the series" msgstr "Please add at least one variable to the series" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "None" @@ -1503,10 +1453,10 @@ msgid "Explain output" msgstr "Explain output" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Time" @@ -1798,7 +1748,7 @@ msgstr "Show query box" msgid "No rows selected" msgstr "No rows selected" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Change" @@ -1807,8 +1757,8 @@ msgstr "Change" msgid "Query execution time" msgstr "Query execution time" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." @@ -1879,7 +1829,7 @@ msgstr "Data point content" msgid "Ignore" msgstr "Ignore" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Copy" @@ -2362,14 +2312,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Error" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL query" @@ -2380,7 +2330,7 @@ msgstr "SQL query" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2409,6 +2359,10 @@ msgstr "Without PHP Code" msgid "Create PHP Code" msgstr "Create PHP Code" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Submit Query" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2433,7 +2387,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profiling" @@ -2460,14 +2414,14 @@ msgstr "Missing parameter:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Begin" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2475,7 +2429,7 @@ msgstr "Previous" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2483,7 +2437,7 @@ msgstr "Next" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "End" @@ -2504,16 +2458,17 @@ msgstr "Click to toggle" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Structure" @@ -2521,21 +2476,20 @@ msgstr "Structure" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insert" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Browse" @@ -2556,21 +2510,21 @@ msgstr "Browse your computer:" msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "There are no files to upload" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Execute" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Print" @@ -2588,6 +2542,74 @@ msgstr "" msgid "Font size" msgstr "Font size" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Ascending" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Descending" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sort" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Criteria" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Add/Delete criteria rows" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Add/Delete columns" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Update Query" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Use Tables" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Or" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "And" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modify" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL query on database %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "at least one of the words" @@ -2628,8 +2650,8 @@ msgstr[1] "%1$s matches in %2$s" msgid "Delete the matches for the %s table?" msgstr "Delete the matches for the %s table?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2664,64 +2686,64 @@ msgstr "Inside tables:" msgid "Inside column:" msgstr "Inside column:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Save edited data" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Restore column order" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Start row" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Number of rows" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Mode" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontal (rotated headers)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Headers every %s rows" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2734,60 +2756,60 @@ msgstr "Sort by key" msgid "Options" msgstr "Options" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Partial texts" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Full texts" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relational key" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Relational display column" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Show binary contents" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Show binary contents as HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Hide browser transformation" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "The row has been deleted" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2795,44 +2817,44 @@ msgstr "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "in query" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Showing rows" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Query results operations" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Display chart" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Visualise GIS data" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Create view" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Link not found" @@ -2957,8 +2979,8 @@ msgstr "" "removed." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Databases" @@ -2974,11 +2996,11 @@ msgid "Tracking" msgstr "Tracking" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggers" @@ -2996,9 +3018,9 @@ msgstr "Database seems to be empty!" msgid "Query" msgstr "Query" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privileges" @@ -3007,7 +3029,7 @@ msgid "Routines" msgstr "Routines" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Events" @@ -3104,43 +3126,43 @@ msgstr "%s has been disabled for this MySQL server." msgid "This MySQL server does not support the %s storage engine." msgstr "This MySQL server does not support the %s storage engine." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "unknown table status: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Source database `%s` was not found!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Target database `%s` was not found!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Invalid database" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Invalid table name" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error renaming table %1$s to %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Table %1$s has been renamed to %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Could not save table UI preferences" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3149,7 +3171,7 @@ msgstr "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3161,7 +3183,7 @@ msgstr "" "changed." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Function" @@ -3173,7 +3195,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3212,7 +3234,7 @@ msgid "Maximum rows to plot" msgstr "Maximum rows to plot" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Browse foreign values" @@ -3620,7 +3642,7 @@ msgstr "shared" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tables" @@ -3631,9 +3653,10 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Data" @@ -3751,32 +3774,32 @@ msgid "Disabled" msgstr "Disabled" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "structure" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "data" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "structure and data" @@ -4199,13 +4222,13 @@ msgstr "Compression" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Put columns names in the first row" @@ -4228,7 +4251,6 @@ msgstr "Columns escaped by" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Replace NULL by" @@ -4268,23 +4290,22 @@ msgstr "Table name template" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Dump table" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Include table caption" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Table caption" @@ -4293,14 +4314,14 @@ msgid "Continued table caption" msgstr "Continued table caption" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Label key" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME type" @@ -4337,7 +4358,7 @@ msgid "SQL compatibility mode" msgstr "SQL compatibility mode" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE options:" @@ -4350,7 +4371,7 @@ msgid "Use delayed inserts" msgstr "Use delayed inserts" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" @@ -4367,7 +4388,7 @@ msgid "Syntax to use when inserting data" msgstr "Syntax to use when inserting data" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maximal length of created query" @@ -4376,7 +4397,7 @@ msgid "Export type" msgstr "Export type" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" @@ -4431,7 +4452,6 @@ msgstr "Customise default options" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4490,7 +4510,6 @@ msgid "Set import and export directories and compression options" msgstr "Set import and export directories and compression options" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4720,7 +4739,6 @@ msgid "Customize text input fields" msgstr "Customise text input fields" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! text" @@ -5901,9 +5919,11 @@ msgstr "Requires SQL Validator to be enabled" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Password" @@ -6081,7 +6101,6 @@ msgstr "CSV using LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" @@ -6103,19 +6122,16 @@ msgstr "Database export options" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV for MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Text" @@ -6171,7 +6187,7 @@ msgstr "The %s extension is missing. Please check your PHP configuration." msgid "possible deep recursion attack" msgstr "possible deep recursion attack" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6179,19 +6195,19 @@ msgstr "" "The server is not responding (or the local server's socket is not correctly " "configured)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "The server is not responding." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Please check privileges of directory containing database." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Details..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed." @@ -6202,13 +6218,15 @@ msgid "Change password" msgstr "Change password" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "No Password" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Re-type" @@ -6229,8 +6247,9 @@ msgstr "Create database" msgid "Create" msgstr "Create" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "No Privileges" @@ -6240,12 +6259,12 @@ msgid "Create table" msgstr "Create table" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Name" @@ -6382,7 +6401,7 @@ msgid "View output as text" msgstr "View output as text" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Format:" @@ -6891,52 +6910,52 @@ msgstr "The PrimeBase XT Blog by Paul McCullagh" msgid "No data found for GIS visualization." msgstr "No data found for GIS visualisation." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "The following structures have either been created or altered. Here you can:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "View a structure's contents by clicking on its name" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Change any of its settings by clicking the corresponding \"Options\" link" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Edit structure by following the \"Structure\" link" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Go to database: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Edit settings for %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Go to table: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Structure of %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Go to view: %s" @@ -7006,11 +7025,11 @@ msgid "" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" @@ -7256,7 +7275,7 @@ msgstr "phpMyAdmin documentation" msgid "Reload navigation frame" msgstr "Reload navigation frame" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "This format has no options" @@ -7370,93 +7389,93 @@ msgstr "No valid authentication key plugged" msgid "Authenticating..." msgstr "Authenticating..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Columns separated with:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Columns enclosed with:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Columns escaped with:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Lines terminated with:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Replace NULL with:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Remove carriage return/line feed characters within columns" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel edition:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Data dump options" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Dumping data for table" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Event" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definition" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Table structure for table" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Structure for view" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" @@ -7472,94 +7491,83 @@ msgstr "(continued)" msgid "Structure of table @TABLE@" msgstr "Structure of table @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Object creation options" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Table caption (continued)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Display foreign key relationships" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Display comments" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Display MIME types" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Host" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Generation Time" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Server version" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP Version" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki Table" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Export table names" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Export table headers" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Generates a report containing the data of a single table)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Report title:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP array" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7567,11 +7575,11 @@ msgstr "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Additional custom header comment (\\n splits lines):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7579,24 +7587,24 @@ msgstr "" "Include a timestamp of when databases were created, last updated, and last " "checked" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Database system or older MySQL server to maximise output compatibility with:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Add %s statement" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Add statements:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7604,32 +7612,39 @@ msgstr "" "Enclose table and column names with back-quotes (Protects column and " "table names formed with special characters or keywords)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Object creation options" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Truncate table before insert" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Instead of INSERT statements, use:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED statements" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE statements" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Function to use when dumping data:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Syntax to use when inserting data:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7639,7 +7654,7 @@ msgstr "" "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7649,7 +7664,7 @@ msgstr "" "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7657,7 +7672,7 @@ msgstr "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7665,7 +7680,7 @@ msgstr "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7673,7 +7688,7 @@ msgstr "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7681,50 +7696,45 @@ msgstr "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedures" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Functions" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Error reading data:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Object creation options (all are recommended)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Views" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Export contents" @@ -7798,6 +7808,10 @@ msgstr "Column names" msgid "This plugin does not support compressed imports!" msgstr "This plug-in does not support compressed imports!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki Table" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7855,6 +7869,10 @@ msgstr "SQL compatibility mode:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Do not use AUTO_INCREMENT for zero values" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8085,11 +8103,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Re-login to phpMyAdmin to load the updated configuration file." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "no description" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Uncheck All" @@ -8111,9 +8130,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "User name" @@ -8150,34 +8170,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Add slave replication user" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Any user" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Any host" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8193,7 +8222,7 @@ msgstr "Generate Password" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8229,8 +8258,8 @@ msgid "Edit event" msgstr "Edit event" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Error in processing request" @@ -8306,7 +8335,8 @@ msgstr "You must provide a valid type for the event." msgid "You must provide an event definition." msgstr "You must provide an event definition." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "New" @@ -8440,25 +8470,25 @@ msgstr "You must provide a valid return type for the routine." msgid "You must provide a routine definition." msgstr "You must provide a routine definition." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Execution results of routine %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d row affected by the last statement inside the procedure" msgstr[1] "%d rows affected by the last statement inside the procedure" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Execution results of routine %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Execute routine" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Routine parameters" @@ -8587,28 +8617,28 @@ msgstr "No event with name %1$s found in database %2$s" msgid "There are no events to display." msgstr "There are no events to display." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "The %s table doesn't exist!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema of the %s database - Page %s" @@ -8745,6 +8775,446 @@ msgstr "Unknown language: %1$s." msgid "Current Server" msgstr "Current server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "No privileges." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Includes all privileges except GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Allows reading data." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Allows inserting and replacing data." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Allows changing data." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Allows deleting data." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Allows creating new databases and tables." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Allows dropping databases and tables." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "Allows reloading server settings and flushing the server's caches." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Allows shutting down the server." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Allows viewing processes of all users" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Allows importing data from and exporting data into files." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Has no effect in this MySQL version." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Allows creating and dropping indexes." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Allows altering the structure of existing tables." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Gives access to the complete list of databases." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Allows creating temporary tables." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Allows locking tables for the current thread." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Needed for the replication slaves." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Allows the user to ask where the slaves / masters are." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Allows creating new views." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Allows to set up events for the event scheduler" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Allows creating and dropping triggers" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Allows performing SHOW CREATE VIEW queries." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Allows creating stored routines." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Allows altering and dropping stored routines." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Allows creating, dropping and renaming user accounts." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Allows executing stored routines." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "None" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Resource limits" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Note: Setting these options to 0 (zero) removes the limit." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Limits the number of queries the user may send to the server per hour." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Limits the number of new connections the user may open per hour." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limits the number of simultaneous connections the user may have." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Table-specific privileges" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Note: MySQL privilege names are expressed in English" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administration" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Global privileges" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Database-specific privileges" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Allows creating new tables." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Allows dropping tables." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Allows adding users and privileges without reloading the privilege tables." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Login Information" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Do not change the password" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "The password for %s was changed successfully." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "You have revoked the privileges for %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Database for user" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Create database with same name and grant all privileges" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Grant all privileges on wildcard name (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Grant all privileges on database "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Users having access to "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "User" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Grant" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "User has been added." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Any" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "database-specific" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "wildcard" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "No user found." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Edit Privileges" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Revoke" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Export all" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... keep the old one." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... delete the old one from the user tables." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +"... revoke all active privileges from the old one and delete it afterwards." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Change Login Information / Copy User" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Create a new user with the same privileges and ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Column-specific privileges" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Add privileges on the following database" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Add privileges on the following table" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Remove selected users" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Revoke all active privileges from the users and delete them afterwards." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Drop the databases that have the same names as the users." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "No users selected for deleting!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Reloading the privileges" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "The selected users have been deleted successfully." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "You have updated the privileges for %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Privileges for all users" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Privileges for %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Users overview" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "The selected user was not found in the privilege table." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "You have added a new user." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Source database" @@ -8791,11 +9261,11 @@ msgstr "Clear" msgid "Columns" msgstr "Columns" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -9074,12 +9544,6 @@ msgstr "Software version" msgid "Protocol version" msgstr "Protocol version" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "User" - #: main.php:217 msgid "Server charset" msgstr "Server charset" @@ -9597,436 +10061,20 @@ msgstr "Licence" msgid "disabled" msgstr "disabled" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Includes all privileges except GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Allows altering the structure of existing tables." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Allows altering and dropping stored routines." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Allows creating new databases and tables." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Allows creating stored routines." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Allows creating new tables." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Allows creating temporary tables." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Allows creating, dropping and renaming user accounts." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Allows creating new views." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Allows deleting data." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Allows dropping databases and tables." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Allows dropping tables." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Allows to set up events for the event scheduler" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Allows executing stored routines." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Allows importing data from and exporting data into files." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Allows adding users and privileges without reloading the privilege tables." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Allows creating and dropping indexes." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Allows inserting and replacing data." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Allows locking tables for the current thread." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Limits the number of queries the user may send to the server per hour." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limits the number of simultaneous connections the user may have." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Allows viewing processes of all users" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Has no effect in this MySQL version." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "Allows reloading server settings and flushing the server's caches." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Allows the user to ask where the slaves / masters are." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Needed for the replication slaves." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Allows reading data." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Gives access to the complete list of databases." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Allows performing SHOW CREATE VIEW queries." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Allows shutting down the server." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Allows creating and dropping triggers" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Allows changing data." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "No privileges." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "None" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Table-specific privileges" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Note: MySQL privilege names are expressed in English" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administration" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Global privileges" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Database-specific privileges" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Resource limits" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Note: Setting these options to 0 (zero) removes the limit." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Login Information" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Do not change the password" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "No user found." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "You have added a new user." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "You have updated the privileges for %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "You have revoked the privileges for %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "The password for %s was changed successfully." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Deleting %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "No users selected for deleting!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Reloading the privileges" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "The selected users have been deleted successfully." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Edit Privileges" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Revoke" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Export all" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Any" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Privileges for all users" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Privileges for %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Users overview" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Remove selected users" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Revoke all active privileges from the users and delete them afterwards." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Drop the databases that have the same names as the users." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "The selected user was not found in the privilege table." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Column-specific privileges" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Add privileges on the following database" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Add privileges on the following table" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Change Login Information / Copy User" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Create a new user with the same privileges and ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... keep the old one." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... delete the old one from the user tables." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -"... revoke all active privileges from the old one and delete it afterwards." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Database for user" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Create database with same name and grant all privileges" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Grant all privileges on wildcard name (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Grant all privileges on database "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Users having access to "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "database-specific" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "wildcard" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "User has been added." - #: server_replication.php:82 msgid "Unknown error" msgstr "Unknown error" @@ -11790,37 +11838,37 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters." msgid "Wrong data" msgstr "Wrong data" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Using bookmark \"%s\" as default browse query." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Do you really want to execute following query?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Showing as PHP code" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Validated SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL result" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Generated by" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Label" @@ -13659,6 +13707,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is set to 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP array" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/es.po b/po/es.po index e7e25c08fe..9f8aed92e1 100644 --- a/po/es.po +++ b/po/es.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" -"PO-Revision-Date: 2012-07-09 17:51+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" +"PO-Revision-Date: 2012-07-27 18:07+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Mostrar todo" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Buscar" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Buscar" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Continuar" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "La base de datos %1$s ha sido creada." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Comentario de la base de datos: " @@ -120,17 +123,17 @@ msgstr "Comentario de la base de datos: " msgid "Table comments" msgstr "Comentarios de la tabla" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Columna" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tipo" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Nulo" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Nulo" msgid "Default" msgstr "Predeterminado" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Enlaces a" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Comentarios" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "No" @@ -242,19 +248,22 @@ msgstr "No" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Sí" @@ -262,8 +271,8 @@ msgstr "Sí" msgid "View dump (schema) of database" msgstr "Ver el volcado (esquema) de la base de datos" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "No se han encontrado tablas en la base de datos." @@ -279,74 +288,74 @@ msgstr "Deseleccionar todo" msgid "The database name is empty!" msgstr "¡El nombre de la base de datos está vacío!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "La base de datos %1$s ha sido renombrada a %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "La base de datos %1$s ha sido copiada a %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Renombrar la base de datos a" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Eliminar base de datos" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "La base de datos %s ha sido eliminada." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Eliminar la base de datos (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Copiar la base de datos a" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Únicamente la estructura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Estructura y datos" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Solamente datos" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREAR BASE DE DATOS antes de copiar" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Añada %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Añadir restricciones" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Seleccionar la base de datos copiada" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Seleccionar la base de datos copiada" msgid "Collation" msgstr "Cotejamiento" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. " "Para saber por qué haz clic %saquí%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Editar o exportar esquema relacional" @@ -375,16 +384,18 @@ msgstr "Editar o exportar esquema relacional" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabla" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Filas" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Tamaño" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "en uso" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Creación" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Última actualización" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,92 +442,15 @@ msgid_plural "%s tables" msgstr[0] "%s tabla" msgstr[1] "%s tablas" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Debe elegir al menos una columna para mostrar" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Ascendente" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Descendente" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Ordenar" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Mostrar" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Criterio" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Añadir/borrar filas de criterio" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Añadir/borrar columnas" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Modificar la consulta" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Usar tablas" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "O" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "y luego" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Insertar" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Borrar" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modificar" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cambiar al %sconstructor visual%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Consulta a la base de datos %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Ejecutar la consulta" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "El seguimiento está activo." msgid "Tracking is not active." msgstr "El seguimiento no está activo." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -588,20 +522,21 @@ msgstr "" "%s es el motor de almacenamiento predeterminado en este servidor MySQL." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Para los elementos que están marcados:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Marcar todos" @@ -609,31 +544,32 @@ msgstr "Marcar todos" msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Vaciar" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -677,17 +613,18 @@ msgstr "Tablas con seguimiento" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Base de datos" @@ -705,18 +642,26 @@ msgstr "Actualizado" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Estado actual" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Acción" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Mostrar" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Borrar los datos de seguimiento para esta tabla" @@ -757,20 +702,20 @@ msgstr "Registro de la base de datos" msgid "Bad type!" msgstr "¡Tipo erróneo!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "¡El formato de exportación seleccionado debe grabarse en el archivo!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "¡Parámetros incorrectos!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hay suficiente espacio para guardar el archivo %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -778,12 +723,12 @@ msgstr "" "El archivo %s ya existe en el servidor, cambie el nombre del archivo o " "revise la opción de sobreescritura." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "El servidor web no tiene permiso para guardar el archivo %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "El volcado ha sido guardado al archivo %s." @@ -808,7 +753,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometría" @@ -881,7 +826,7 @@ msgstr "" "Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena " "ubicada debajo en el campo \"Valor\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -890,20 +835,20 @@ msgstr "" "Usted probablemente intentó cargar un archivo demasiado grande. Refiérase a " "%sla documentation%s para hallar modos de superar esta limitación." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Mostrando el favorito" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "El favorito ha sido borrado." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "No fue posible leer el archivo" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -914,7 +859,7 @@ msgstr "" "Este tipo de compresión puede no estar implementado o quizá no ha sido " "habilitado en su archivo de configuración." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -924,29 +869,29 @@ msgstr "" "el tamaño del archivo excedió el máximo permitido por su configuración PHP. " "Ver [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "No se pudo convertir el conjunto de caracteres del archivo sin la biblioteca " "correspondiente" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "No se pudieron cargar los plugins de importación. ¡Revise su instalación!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "La importación se ejecutó exitosamente, se ejecutaron %d consultas." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -954,7 +899,7 @@ msgstr "" "Se ha agotado el tiempo de ejecución del script; si desea completar la " "importación reenvíe el mismo archivo y la importación continuará." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -963,8 +908,8 @@ msgstr "" "usualmente significa que phpMyAdmin no será capaz de completar esta " "importación a menos que usted incremente el tiempo de ejecución de php." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -979,7 +924,7 @@ msgstr "Volver" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funciona mejor con un navegador que reconoce frames." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." @@ -988,7 +933,7 @@ msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." msgid "Do you really want to execute \"%s\"?" msgstr "¿Realmente desea ejecutar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" @@ -1046,16 +991,20 @@ msgstr "¡El nombre del servidor está vacío!" msgid "The user name is empty!" msgstr "¡El nombre de usuario está vacío!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Agregar usuario" @@ -1075,9 +1024,9 @@ msgstr "Cerrar" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1326,12 +1275,13 @@ msgstr "Agregar gráfico a la grilla" msgid "Please add at least one variable to the series" msgstr "Agregue al menos una variable a la serie" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Ninguna" @@ -1517,10 +1467,10 @@ msgid "Explain output" msgstr "Explicar salida" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Tiempo" @@ -1815,7 +1765,7 @@ msgstr "Mostrar ventana de consultas SQL" msgid "No rows selected" msgstr "No se seleccionaron filas" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Cambiar" @@ -1824,8 +1774,8 @@ msgstr "Cambiar" msgid "Query execution time" msgstr "Tiempo de ejecución de la consulta" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d no es un número de fila válido." @@ -1898,7 +1848,7 @@ msgstr "Contenido del punto de datos" msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Copiar" @@ -2390,14 +2340,14 @@ msgid "en" msgstr "es" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Error" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "consulta SQL" @@ -2408,7 +2358,7 @@ msgstr "consulta SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2437,6 +2387,10 @@ msgstr "Sin código PHP" msgid "Create PHP Code" msgstr "Crear código PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Ejecutar la consulta" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2461,7 +2415,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En línea" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Perfilando" @@ -2488,14 +2442,14 @@ msgstr "Parámetro faltante:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Comenzar" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2503,7 +2457,7 @@ msgstr "Anterior" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2511,7 +2465,7 @@ msgstr "Siguiente" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Fin" @@ -2532,16 +2486,17 @@ msgstr "Pulse para conmutar" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Estructura" @@ -2549,21 +2504,20 @@ msgstr "Estructura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insertar" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Examinar" @@ -2585,22 +2539,22 @@ msgid "Select from the web server upload directory %s:" msgstr "" "Seleccionar directorio en el servidor web para subir los archivos %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" "No se puede acceder al directorio que seleccionó para subir los archivos" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "No hay archivos para subir" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Ejecutar" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Imprimir" @@ -2619,6 +2573,74 @@ msgstr "" msgid "Font size" msgstr "Tamaño de fuente" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Ascendente" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Descendente" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Ordenar" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Criterio" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Añadir/borrar filas de criterio" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Añadir/borrar columnas" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Modificar la consulta" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Usar tablas" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "O" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "y luego" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Insertar" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Borrar" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modificar" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Consulta a la base de datos %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "al menos una de estas palabras" @@ -2661,8 +2683,8 @@ msgstr[1] "%1$s coincidencias en la tabla %2$s" msgid "Delete the matches for the %s table?" msgstr "¿Eliminar las coincidencias para la tabla %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2697,64 +2719,64 @@ msgstr "Dentro de las tablas:" msgid "Inside column:" msgstr "Dentro de la columna:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Guardar datos editados" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Restaurar orden de las columnas" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Fila de inicio" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Número de filas" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Modo" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontal (encabezados rotados)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Cabeceras cada %s filas" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Ordenar según la clave" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2767,62 +2789,62 @@ msgstr "Ordenar según la clave" msgid "Options" msgstr "Opciones" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Textos parciales" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Clave relacional" # Display option apparently related to # http://www.phpmyadmin.net/documentation/#relation -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Mostrar columna de relación" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Mostrar contenido binario" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Mostrar contenido BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Mostrar contenido binario como HEXadecimal" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Ocultar transformación del navegador" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Texto muy conocido" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Binario muy conocido" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "La fila se ha borrado" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Matar el proceso" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2830,44 +2852,44 @@ msgstr "" "Podría ser aproximado. Ver [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "en la consulta" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Mostrando registros" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Previsualización para imprimir (documento completo)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Visualizar datos GIS" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Crear vista" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "No se encontró el enlace" @@ -2993,8 +3015,8 @@ msgstr "" "uno." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Bases de datos" @@ -3010,11 +3032,11 @@ msgid "Tracking" msgstr "Seguimiento" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Disparadores" @@ -3032,9 +3054,9 @@ msgstr "La base de datos, ¡parece estar vacía!" msgid "Query" msgstr "Generar una consulta" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegios" @@ -3043,7 +3065,7 @@ msgid "Routines" msgstr "Rutinas" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Eventos" @@ -3142,43 +3164,43 @@ msgid "This MySQL server does not support the %s storage engine." msgstr "" "Este servidor MySQL no es compatible con el motor de almacenamiento %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "estado de tabla desconocido: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "¡No se encontró la base de datos de origen «%s»!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "¡No se encontró la base de datos de destino «%s»!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "La base de datos no es válida" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "El nombre de la tabla no es válido" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error al cambiar el nombre de la tabla %1$s a %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La tabla %1$s ahora se llama %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "No se pudieron guardar las preferencias de interfaz" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3187,7 +3209,7 @@ msgstr "" "Falló la limpieza de las preferencia de interfaz de tablas (ver $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3199,7 +3221,7 @@ msgstr "" "estructura de la tabla." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Función" @@ -3211,7 +3233,7 @@ msgstr "Operador" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3251,7 +3273,7 @@ msgid "Maximum rows to plot" msgstr "Máximo número de filas a graficar" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Mostrar los valores foráneos" @@ -3676,7 +3698,7 @@ msgstr "compartido" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tablas" @@ -3687,9 +3709,10 @@ msgstr "Tablas" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Datos" @@ -3814,32 +3837,32 @@ msgid "Disabled" msgstr "Deshabilitado" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "estructura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "datos" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "estructura y datos" @@ -4267,13 +4290,13 @@ msgstr "Compresión" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Poner los nombres de campo en la primera fila" @@ -4296,7 +4319,6 @@ msgstr "Caracter de escape de columnas" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Reemplazar NULL por" @@ -4338,23 +4360,22 @@ msgstr "Nombre de la plantilla de la tabla" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Volcar tabla" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Incluir el subtitulado de la tabla" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Subtitulado de la tabla" @@ -4363,14 +4384,14 @@ msgid "Continued table caption" msgstr "Continuación del subtitulado de la tabla" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Clave de la etiqueta" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-type" @@ -4407,7 +4428,7 @@ msgid "SQL compatibility mode" msgstr "Modo compatible con SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Opciones CREATE TABLE:" @@ -4420,7 +4441,7 @@ msgid "Use delayed inserts" msgstr "Utilizar inserciones con retraso" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Deshabilitar la revisión de las claves foráneas" @@ -4437,7 +4458,7 @@ msgid "Syntax to use when inserting data" msgstr "Sintaxis a utilizar para insertar datos" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Longitud máxima de la consulta creada" @@ -4448,7 +4469,7 @@ msgid "Export type" msgstr "Tipo de exportación" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Incluir lo exportado en una transacción" @@ -4504,7 +4525,6 @@ msgstr "Personalizar las opciones predeteminadas" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4565,7 +4585,6 @@ msgstr "" "compresión" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4799,7 +4818,6 @@ msgid "Customize text input fields" msgstr "Personalizar los campos de entrada de texto" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texto «Texy!»" @@ -6014,9 +6032,11 @@ msgstr "Requiere que el Validador SQL esté habilitado" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Contraseña" @@ -6202,7 +6222,6 @@ msgstr "CSV usando LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Hoja de cálculo Open Document" @@ -6224,19 +6243,16 @@ msgstr "Opciones de exportación de la base de datos" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV para datos de MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Texto Open Document" @@ -6299,7 +6315,7 @@ msgstr "No se encontró la extensión %s. Revisa la configuración PHP." msgid "possible deep recursion attack" msgstr "posible ataque de recursión extrema" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6307,19 +6323,19 @@ msgstr "" "El servidor no está respondiendo (o el zócalo local al servidor MySQL no " "está configurado correctamente)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "El servidor no está respondiendo." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Revisa los permisos del directorio que contiene la base de datos." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detalles..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6332,13 +6348,15 @@ msgid "Change password" msgstr "Cambio de contraseña" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Sin contraseña" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Debe volver a escribir" @@ -6359,8 +6377,9 @@ msgstr "Crear base de datos" msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Sin privilegios" @@ -6370,12 +6389,12 @@ msgid "Create table" msgstr "Crear tabla" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nombre" @@ -6513,7 +6532,7 @@ msgid "View output as text" msgstr "Ver salida como texto" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Formato:" @@ -7037,53 +7056,53 @@ msgstr "Blog de PrimeBase por Paul McCullagh" msgid "No data found for GIS visualization." msgstr "No se encontraron datos para la visualización GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Puede ver los contenidos de una estructura pulsando en su nombre" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" " "correspondiente" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Edite la estructura siguiendo el enlace \"Estructura\"" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Ir a la base de datos: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Editar configuración de %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Ir a la tabla: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Ir a la vista: %s" @@ -7154,11 +7173,11 @@ msgstr "" "Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse " "a cualquier parte" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" @@ -7405,7 +7424,7 @@ msgstr "Documentación de phpMyAdmin" msgid "Reload navigation frame" msgstr "Recargar el marco de navegación" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Este formato no tiene opciones" @@ -7524,94 +7543,94 @@ msgstr "No se ha conectado una clave de autenticación válida" msgid "Authenticating..." msgstr "Autenticando..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Columnas separadas por:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Columnas encerradas entre:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Caracter de escape de columnas:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Líneas terminadas en:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Reemplazar NULL con:" # "CR/LF" translation? -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Eliminar retornos de carro/saltos de línea en las columnas" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Edición Excel:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Opciones para volcado de datos" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Volcado de datos para la tabla" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Evento" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definición" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Estructura de tabla para la tabla" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Estructura para la vista" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Estructura Stand-in para la vista" @@ -7627,94 +7646,83 @@ msgstr "(continúa)" msgid "Structure of table @TABLE@" msgstr "Estructura de la tabla @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Opciones de creación de objetos" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Descripción de la tabla (continúa)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Mostrar relaciones de clave foránea" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Mostrar comentarios" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Tipos MIME disponibles" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Servidor" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Tiempo de generación" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versión del servidor" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Versión de PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Tabla MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Exportar nombres de tabla" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Exportar cabeceras de tablas" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Genera un reporte conteniendo los datos de una sola tabla)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Título del reporte:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "Array PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7722,13 +7730,13 @@ msgstr "" "Mostrar comentarios (incluye información como marca temporal de " "exportación, versión PHP y versión de servidor)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Comentario de cabecera personalizado adicional (\n" " divide líneas):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7736,25 +7744,25 @@ msgstr "" "Incluye una marca temporal de cuando la base de datos fue creada, modificada " "por última vez y revisada por última vez" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Sistema de base de datos o versión antigua de servidor MySQL con la que " "maximizar la compatibilidad de la salida:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Agregar sentencia %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Agregar sentencias:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7763,32 +7771,38 @@ msgstr "" "nombre de tablas y campos compuestos con caracteres especiales o palabras " "clave)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Opciones de creación de datos" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Truncar tablas antes de insertar" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "En lugar de sentencias INSERT, utilizar:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "Sentencias INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "Sentencias INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Función a utilizar al volcar datos:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Sintáxis a utilizar al insertar datos:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7798,7 +7812,7 @@ msgstr "" "      Ejemplo: INSERT INTO nombre_tabla (columna_A," "columna_B,columna_C) VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7808,7 +7822,7 @@ msgstr "" "    Ejemplo: INSERT INTO nombre_tabla VALUES (1,2,3), " "(4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7816,7 +7830,7 @@ msgstr "" "los dos anteriores
      Ejemplo: INSERT INTO " "nombre_tabla (columna_A,columna_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7824,7 +7838,7 @@ msgstr "" "ninguno de los anteriores
      Ejemplo: INSERT " "INTO nombre_tabla VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7832,7 +7846,7 @@ msgstr "" "Volcar columnas binarias en notación hexadecimal (por ejemplo \"abc\" " "sería 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7840,50 +7854,45 @@ msgstr "" "Volcar columnas TIMESTAMP en UTC (habilita que las columnas TIMESTAMP " "sean volcadas y cargadas por servidores en diferentes zonas horarias)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedimientos" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funciones" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Restricciones para tablas volcadas" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Filtros para la tabla" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA LA TABLA" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELACIONES PARA LA TABLA" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Error leyendo datos:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Opciones de creación de objetos (todas son recomendadas)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Vistas" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Exportar contenidos" @@ -7959,6 +7968,10 @@ msgstr "Nombre de las columnas" msgid "This plugin does not support compressed imports!" msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Tabla MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -8020,6 +8033,10 @@ msgstr "Modalidad SQL compatible:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No utilizar AUTO_INCREMENT con el valor 0" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8257,11 +8274,12 @@ msgstr "" "Inicie sesión en phpMyAdmin nuevamente para cargar el archivo de " "configuración actualizado." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "Sin descripción" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Desmarcar todos" @@ -8283,9 +8301,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Nombre de usuario" @@ -8322,34 +8341,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Agregar un usuario de replicación esclavo" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Cualquier usuario" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Use el campo de texto" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Cualquier servidor" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Este Host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Usar la tabla Anfitrión (Host)" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8365,7 +8393,7 @@ msgstr "Generar la contraseña" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8401,8 +8429,8 @@ msgid "Edit event" msgstr "Editar evento" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Error al procesar la petición" @@ -8478,7 +8506,8 @@ msgstr "Debe proveer un tipo válido para el evento." msgid "You must provide an event definition." msgstr "Debe proveer una definición de evento." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Nuevo" @@ -8612,25 +8641,25 @@ msgstr "Debe proveer un tipo de retorno válido para la rutina." msgid "You must provide a routine definition." msgstr "Debe proveer una definición de rutina." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Resultados de la ejecución de la rutina %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d fila afectada por la última sentencia del procedimiento" msgstr[1] "%d filas afectadas por la última sentencia del procedimiento" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Resultados de la ejecución de la rutina %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Ejecutar rutina" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Parámetros de rutina" @@ -8760,28 +8789,28 @@ msgstr "No se encontró evento con nombre %1$s en la base de datos %2$s" msgid "There are no events to display." msgstr "No existen eventos para mostrar." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "¡La tabla %s no existe!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure las coordenadas para la tabla %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Esquema de la base de datos %s - Página %s" @@ -8918,6 +8947,465 @@ msgstr "Idioma desconocido: %1$s." msgid "Current Server" msgstr "Servidor actual" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Sin privilegios." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Incluye todos los privilegios excepto GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Permite leer los datos." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Permite insertar y reemplazar datos." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Permite cambiar los datos." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Permite borrar datos." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Permite crear nuevas bases de datos y tablas." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Permite eliminar bases de datos y tablas." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Permite volver a cargar los parámetros del servidor y depurar los cachés del " +"servidor." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Permite desconectar el servidor." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Permite ver los procesos de todos los usuarios" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Permite importar y exportar datos de y hacia archivos." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "No tiene efecto en esta versión de MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Permite crear y eliminar índices." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Permite alterar la estructura de las tablas existentes." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Concede acceso a la lista completa de bases de datos." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Permite la conexión, incluso si el número máximo de conexiones ha sido " +"alcanzado; Necesario para la mayor parte de operaciones administrativas " +"tales como montar parámetros de variables globales o matar procesos de otros " +"usuarios." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Permite la creación de tablas temporales." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Permite poner candados a las tablas para el proceso actual." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Necesario para los esclavos de replicación." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Da el derecho al usuario para preguntar dónde están los esclavos / maestros." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Permite crear nuevas vistas." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Permite organizar los eventos para el gestor de eventos" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Permite crear y eliminar un disparador" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Permite llevar a cabo las consultas SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Permite crear el almacenamiento de rutinas." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Permite alterar y eliminar las rutinas almacenadas." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Permite ejecutar las rutinas almacenadas." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Ninguno" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Límites de recursos" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el " +"límite." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Limita el número de consultas que el usuario puede enviar al servidor por " +"hora." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Limita el número de comandos que cambian cualquier tabla o base de datos que " +"el usuario puede ejecutar por hora." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Limita el número de conexiones nuevas que el usuario puede abrir por hora." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Privilegios específicos para la tabla" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" +"Nota: Los nombres de los privilegios de MySQL están expresados en inglés" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administración" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Privilegios globales" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Privilegios específicos para la base de datos" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Permite la creación de tablas nuevas." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Permite eliminar tablas." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Permite añadir usuarios y privilegios sin conectarse nuevamente a la tabla " +"de privilegios." + +# It is talking about the user account not the act of logging in +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Información de la cuenta" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "No cambiar la contraseña" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "La contraseña para %s se cambió exitosamente." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Ha revocado los privilegios para %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Base de datos para el usuario" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" +"Crear base de datos con el mismo nombre y otorgar todos los privilegios" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" +"Otorgar todos los privilegios al nombre que contiene comodín (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Otorgar todos los privilegios para la base de datos "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Usuarios con acceso a "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Usuario" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Conceder" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Se agregó el usuario." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "cualquiera" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "específico para la base de datos" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "comodín" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Usuario(s) no encontrado(s)." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Editar los privilegios" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Revocar" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Exportar todo" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "...mantener el anterior." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "...borrar el viejo de las tablas de usuario." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ...revocar todos los privilegios activos del viejo y eliminarlo después." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ...borrar el viejo de las tablas de usuario y luego volver a cargar los " +"privilegios." + +# Login refers to the user account not the act of logging in +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Cambiar la información de la cuenta / Copiar el usuario" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Crear un nuevo usuario con los mismos privilegios y..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Privilegios específicos para la columna" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Añadir privilegios a esta base de datos" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Los comodines _ y % deben acompañarse del caracter de escape \\ para usarlos " +"de manera literal" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Añadir privilegios a esta tabla" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Eliminar a los usuarios seleccionados" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Revocar todos los privilegios activos de los usuarios y borrarlos después." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Eliminar las bases de datos que tienen los mismos nombres que los usuarios." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "¡No se han seleccionado usuarios para eliminar!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Cargando los privilegios nuevamente" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Los usuarios seleccionados fueron borrados exitosamente." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Ha actualizado los privilegios para %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Privilegios para todos los usuarios" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Privilegios para %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Vista global de usuarios" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de " +"las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " +"de los privilegios que usa el servidor si es que se han realizado cambios " +"manuales en él. En este caso, nuevamente deberá %scargar la página de " +"privilegios%s antes de continuar." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "El usuario que seleccionó no se encontró en la tabla de privilegios." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Ha agregado un nuevo usuario." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Base de datos de origen" @@ -8964,11 +9452,11 @@ msgstr "Limpiar" msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" @@ -9253,12 +9741,6 @@ msgstr "Versiones de programa" msgid "Protocol version" msgstr "Versión del protocolo" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Usuario" - #: main.php:217 msgid "Server charset" msgstr "Conjunto de caracteres del servidor" @@ -9790,455 +10272,20 @@ msgstr "Licencia" msgid "disabled" msgstr "desactivado" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Incluye todos los privilegios excepto GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Permite alterar la estructura de las tablas existentes." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Permite alterar y eliminar las rutinas almacenadas." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Permite crear nuevas bases de datos y tablas." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Permite crear el almacenamiento de rutinas." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Permite la creación de tablas nuevas." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Permite la creación de tablas temporales." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Permite crear nuevas vistas." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Permite borrar datos." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Permite eliminar bases de datos y tablas." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Permite eliminar tablas." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Permite organizar los eventos para el gestor de eventos" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Permite ejecutar las rutinas almacenadas." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Permite importar y exportar datos de y hacia archivos." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Permite añadir usuarios y privilegios sin conectarse nuevamente a la tabla " -"de privilegios." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Permite crear y eliminar índices." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Permite insertar y reemplazar datos." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Permite poner candados a las tablas para el proceso actual." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Limita el número de conexiones nuevas que el usuario puede abrir por hora." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Limita el número de consultas que el usuario puede enviar al servidor por " -"hora." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Limita el número de comandos que cambian cualquier tabla o base de datos que " -"el usuario puede ejecutar por hora." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Permite ver los procesos de todos los usuarios" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "No tiene efecto en esta versión de MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Permite volver a cargar los parámetros del servidor y depurar los cachés del " -"servidor." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Da el derecho al usuario para preguntar dónde están los esclavos / maestros." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Necesario para los esclavos de replicación." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Permite leer los datos." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Concede acceso a la lista completa de bases de datos." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Permite llevar a cabo las consultas SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Permite desconectar el servidor." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Permite la conexión, incluso si el número máximo de conexiones ha sido " -"alcanzado; Necesario para la mayor parte de operaciones administrativas " -"tales como montar parámetros de variables globales o matar procesos de otros " -"usuarios." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Permite crear y eliminar un disparador" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Permite cambiar los datos." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Sin privilegios." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Ninguno" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Privilegios específicos para la tabla" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" -"Nota: Los nombres de los privilegios de MySQL están expresados en inglés" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administración" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Privilegios globales" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Privilegios específicos para la base de datos" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Límites de recursos" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el " -"límite." - -# It is talking about the user account not the act of logging in -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Información de la cuenta" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "No cambiar la contraseña" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Usuario(s) no encontrado(s)." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "¡El usuario %s ya existe!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Ha agregado un nuevo usuario." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Ha actualizado los privilegios para %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Ha revocado los privilegios para %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "La contraseña para %s se cambió exitosamente." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Borrando %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "¡No se han seleccionado usuarios para eliminar!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Cargando los privilegios nuevamente" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Los usuarios seleccionados fueron borrados exitosamente." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Editar los privilegios" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Revocar" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Exportar todo" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "cualquiera" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Privilegios para todos los usuarios" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Privilegios para %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Vista global de usuarios" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Conceder" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Eliminar a los usuarios seleccionados" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Revocar todos los privilegios activos de los usuarios y borrarlos después." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Eliminar las bases de datos que tienen los mismos nombres que los usuarios." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de " -"las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " -"de los privilegios que usa el servidor si es que se han realizado cambios " -"manuales en él. En este caso, nuevamente deberá %scargar la página de " -"privilegios%s antes de continuar." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "El usuario que seleccionó no se encontró en la tabla de privilegios." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Privilegios específicos para la columna" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Añadir privilegios a esta base de datos" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Los comodines _ y % deben acompañarse del caracter de escape \\ para usarlos " -"de manera literal" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Añadir privilegios a esta tabla" - -# Login refers to the user account not the act of logging in -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Cambiar la información de la cuenta / Copiar el usuario" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Crear un nuevo usuario con los mismos privilegios y..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "...mantener el anterior." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "...borrar el viejo de las tablas de usuario." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ...revocar todos los privilegios activos del viejo y eliminarlo después." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ...borrar el viejo de las tablas de usuario y luego volver a cargar los " -"privilegios." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Base de datos para el usuario" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" -"Crear base de datos con el mismo nombre y otorgar todos los privilegios" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" -"Otorgar todos los privilegios al nombre que contiene comodín (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Otorgar todos los privilegios para la base de datos "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Usuarios con acceso a "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "específico para la base de datos" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "comodín" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Se agregó el usuario." - #: server_replication.php:82 msgid "Unknown error" msgstr "Error desconocido" @@ -12069,38 +12116,38 @@ msgstr "" msgid "Wrong data" msgstr "Datos incorrectos" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "Utilizando el favorito \"%s\" como consulta predeterminada para examinar." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "¿Realmente desea ejecutar la siguiente consulta?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Resultado SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Generado por" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etiqueta" @@ -14007,6 +14054,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "«concurrent_insert» está definido como 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "Array PHP" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/et.po b/po/et.po index 7d36746578..07c3faa18f 100644 --- a/po/et.po +++ b/po/et.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 23:33+0200\n" "Last-Translator: LiivaneLord \n" "Language-Team: estonian \n" @@ -17,7 +17,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Näita kõiki" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Otsi" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Otsi" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Mine" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s andmebaas on loodud." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Andmebaasi kommentaar: " @@ -121,17 +124,17 @@ msgstr "Andmebaasi kommentaar: " msgid "Table comments" msgstr "Tabeli kommentaarid" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Veerg" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tüüp" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Null" msgid "Default" msgstr "Vaikimisi" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Viitab aadressile" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Kommentaarid" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ei" @@ -243,19 +249,22 @@ msgstr "Ei" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Jah" @@ -263,8 +272,8 @@ msgstr "Jah" msgid "View dump (schema) of database" msgstr "Vaata andmebaasi tõmmist (skeemi)" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Andmebaasist tabeleid ei leitud." @@ -280,74 +289,74 @@ msgstr "Ära vali ühtegi" msgid "The database name is empty!" msgstr "Andmebaasi nimi on tühi!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s andmebaasi uueks nimeks on %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s andmebaas on kopeeritud kohta %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Anna andmebaasile nimeks" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Kustuta andmebaas" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s andmebaas on kustutatud." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Kustuta andmebaas (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopeeri andmebaas kohta" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Ainult struktuur" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktuur ja andmed" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Ainult andmed" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE enne kopeerimist" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Lisa %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Lisa piiranguid" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Mine kopeeritud andmebaasile" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "Mine kopeeritud andmebaasile" msgid "Collation" msgstr "Kodeering" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -366,7 +375,7 @@ msgstr "" "phpMyAdmini seadistuse salvestus on deaktiveeritud. Põhjuse kohta saad " "lugeda, kui vajutad %ssiia%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Muuda või ekspordi seoseskeemi" @@ -376,16 +385,18 @@ msgstr "Muuda või ekspordi seoseskeemi" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Ridu" @@ -395,13 +406,13 @@ msgid "Size" msgstr "Suurus" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "kasutusel" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -409,7 +420,7 @@ msgstr "Loodud" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -417,7 +428,7 @@ msgstr "Viimati uuendatud" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -430,92 +441,15 @@ msgid_plural "%s tables" msgstr[0] "%s tabel" msgstr[1] "%s tabelit" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Pead valima vähemalt ühe veeru, mida näidata" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Kasvav" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Kahanev" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sorteeri" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Näita" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriteerium" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Lisa/Kustuta kriteeriumiridu" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Lisa/Kustuta veergusid" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Uuenda päringut" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Kasuta tabeleid" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Või" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "And" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Muuda" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Mine %sgraafilisele loojale%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL päring %s andmebaasis:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Saada päring" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -556,7 +490,7 @@ msgstr "Jälgimine on aktiveeritud." msgid "Tracking is not active." msgstr "Jälgimist pole aktiveeritud." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s on selle MySQL serveri vaikimisi varundusmootor." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Valitutega:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Vali kõik" @@ -606,31 +541,32 @@ msgstr "Vali kõik" msgid "Check tables having overhead" msgstr "Kontrolli ballastiga tabeleid" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspordi" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Prindi vaade" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Tühjenda" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "Jälgitud tabelid" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Andmebaas" @@ -702,18 +639,26 @@ msgstr "Uuendatud" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Staatus" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Tegevus" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Näita" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Kustuta selle tabeli jälgimise andmed" @@ -754,20 +699,20 @@ msgstr "Andmebaasi logi" msgid "Bad type!" msgstr "Halb tüüp!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Valitud eksportimise tüüp tuleb salvestada faili!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Halvad parameetrid!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s faili salvestamiseks pole piisavalt ruumi." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -775,12 +720,12 @@ msgstr "" "%s fail on juba serveris olemas, muutke faili nime või kontrollige " "ülekirjutamise valikuid." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veebiserveril pole %s faili salvestamiseks õigusi." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Tõmmis salvestati %s faili." @@ -803,7 +748,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geomeetria" @@ -876,7 +821,7 @@ msgstr "" "Vali \"Function\" veerust \"GeomFromText\" ja kleebi allolev sõne \"Value\" " "väljale" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -885,20 +830,20 @@ msgstr "" "Tõenäoliselt üritasid üles laadida liiga suurt faili. Selle piirangu kohta " "loe %sdokumentatsioonist%s." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Järjehoidja on kustutatud." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Faili ei saanud lugeda" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -908,7 +853,7 @@ msgstr "" "Üritasid laadida mittetoetatava tihendamisega faili (%s). Selle tugi on pole " "loodud või on seadistuses keelatud." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,27 +863,27 @@ msgstr "" "maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata [a@./" "Documentation.html#faq1_16@Documentation]KKK 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Faili märgitabelit ei saa teisendada ilma märgitabeli teisendusteegita" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "%s järjehoidja on loodud" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importimine lõpetati edukalt, teostati %d päringut." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -946,7 +891,7 @@ msgstr "" "Ületati skripti ooteaeg. Kui tahad importimise lõpetada, siis saada see fail " "uuesti ja importimine jätkub poolelijäänud kohast." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -955,8 +900,8 @@ msgstr "" "phpMyAdmin ei suuda importimist lõpetada, kuni sa ei suurenda php aja " "piiranguid." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -972,7 +917,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin on parema välimusega raamimisvõimelises veebilehitsejas." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud on keelatud." @@ -981,7 +926,7 @@ msgstr "\"DROP DATABASE\" käsud on keelatud." msgid "Do you really want to execute \"%s\"?" msgstr "Kas tõesti tahad käivitada \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Oled KUSTUTAMAS kogu andmebaasi!" @@ -1039,16 +984,20 @@ msgstr "Hostinimi on tühi!" msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Paroolid ei kattu!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Lisa kasutaja" @@ -1068,9 +1017,9 @@ msgstr "Sulge" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1316,12 +1265,13 @@ msgstr "Lisa diagramm ruudustikku" msgid "Please add at least one variable to the series" msgstr "Palun lisa seeriasse vähemalt üks muutuja" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Puudub" @@ -1504,10 +1454,10 @@ msgid "Explain output" msgstr "Selgita väljundit" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Aeg" @@ -1798,7 +1748,7 @@ msgstr "Näita päringu kasti" msgid "No rows selected" msgstr "Ridu pole valitud" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Muuda" @@ -1807,8 +1757,8 @@ msgstr "Muuda" msgid "Query execution time" msgstr "Päringu sooritamise aeg" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d ei ole õige reanumber." @@ -1883,7 +1833,7 @@ msgstr "Andmepunkti sisu" msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopeeri" @@ -2366,14 +2316,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Viga" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL päring" @@ -2384,7 +2334,7 @@ msgstr "SQL päring" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2413,6 +2363,10 @@ msgstr "Ilma PHP koodita" msgid "Create PHP Code" msgstr "Loo PHP kood" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Saada päring" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2437,7 +2391,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Kiirmuutmine" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profileerimine" @@ -2464,14 +2418,14 @@ msgstr "Puudulik parameeter:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Algus" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2479,7 +2433,7 @@ msgstr "Eelmine" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2487,7 +2441,7 @@ msgstr "Järgmine" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Lõpp" @@ -2508,16 +2462,17 @@ msgstr "Muuda" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktuur" @@ -2525,21 +2480,20 @@ msgstr "Struktuur" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Lisa" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Vaata" @@ -2560,21 +2514,21 @@ msgstr "Sirvi oma arvutist:" msgid "Select from the web server upload directory %s:" msgstr "Vali veebiserveri üleslaadimise kataloogist %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Valitud üleslaadimise kataloogile ei pääse ligi" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Seal pole faile, mida üles laadida" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Teosta" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Prindi" @@ -2593,6 +2547,74 @@ msgstr "" msgid "Font size" msgstr "Fondi kõrgus" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Kasvav" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Kahanev" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sorteeri" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriteerium" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Lisa/Kustuta kriteeriumiridu" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Lisa/Kustuta veergusid" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Uuenda päringut" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Kasuta tabeleid" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Või" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "And" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Muuda" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL päring %s andmebaasis:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "vähemalt üks sõna" @@ -2635,8 +2657,8 @@ msgstr[1] "%1$s vastet %2$s tabelis" msgid "Delete the matches for the %s table?" msgstr "Kustutada %s tabeli vasted?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2671,65 +2693,65 @@ msgstr "Tabelitest:" msgid "Inside column:" msgstr "Veerust:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Salvesta muudetud andmed" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Taasta veeru järjekord" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Alusta reaga" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Ridade hulk" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Meetod" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horisontaalselt" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horisontaalne (pööratud päised)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikaalselt" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Päised iga %s rea tagant" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sorteeri võtme alusel" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2742,60 +2764,60 @@ msgstr "Sorteeri võtme alusel" msgid "Options" msgstr "Valikud" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Osalised tekstid" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Täistekstid" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Seose võti" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Seose näitamise veerg" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Näita binaarsisu" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Näita BLOB sisu" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Näita binaarset sisu HEX-ina" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Peida veebilehitseja transformatsioon" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Rida on kustutatud" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Sulge" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2803,44 +2825,44 @@ msgstr "" "Võib olla umbkaudne. Vaata [a@./Documentation.html#faq3_11@Documentation]KKK " "3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "päringus" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Näitan ridu" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "kokku" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "päring kestis %01.4f sekundit" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Prindi vaade (täispikkade tekstidega)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Näita diagrammi" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Visualiseeri GIS andmed" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Loo vaade" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Linki ei leitud" @@ -2963,8 +2985,8 @@ msgstr "" "kustutatakse." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Andmebaasid" @@ -2980,11 +3002,11 @@ msgid "Tracking" msgstr "Jälgimine" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Päästikud" @@ -3002,9 +3024,9 @@ msgstr "Andmebaas tundub olevat tühi!" msgid "Query" msgstr "Päring" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Õigused" @@ -3013,7 +3035,7 @@ msgid "Routines" msgstr "Funktsioonid" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Sündmused" @@ -3109,43 +3131,43 @@ msgstr "%s on keelatud selle MySQL serveri jaoks." msgid "This MySQL server does not support the %s storage engine." msgstr "See MySQL server ei toeta %s varundusmootorit." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "tundmatu tabeli staatus: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Lähteandmebaasi `%s` ei leitud!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Sihtandmebaasi `%s` ei leitud!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Vigane andmebaas" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Vigane tabeli nimi" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Esines viga %1$s tabeli ümbernimetamisel nimeks %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s tabeli uueks nimeks sai %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Tabeli UI eelistusi ei saanud salvestada" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3154,7 +3176,7 @@ msgstr "" "Tabeli UI eelistuste puhastamine ebaõnnestus (vaata $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3165,7 +3187,7 @@ msgstr "" "värskendad seda lehte. Palun kontrolli, kas tabeli struktuuri on muudetud." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funktsioon" @@ -3177,7 +3199,7 @@ msgstr "Operaator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3216,7 +3238,7 @@ msgid "Maximum rows to plot" msgstr "Suurim ridade hulk diagrammis" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Sirvi võõrvõtme väärtusi" @@ -3627,7 +3649,7 @@ msgstr "jagatud" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabelid" @@ -3638,9 +3660,10 @@ msgstr "Tabelid" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Andmed" @@ -3758,32 +3781,32 @@ msgid "Disabled" msgstr "Keelatud" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "struktuur" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "andmed" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "struktuur ja andmed" @@ -4205,13 +4228,13 @@ msgstr "Tihendamine" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Aseta veergude nimed esimesse ritta" @@ -4234,7 +4257,6 @@ msgstr "Veerud katkestab" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL asendaja" @@ -4274,23 +4296,22 @@ msgstr "Tabeli nime mall" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Loo tabeli tõmmis" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Lisa tabeli pealkiri" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Tabeli pealkiri" @@ -4299,14 +4320,14 @@ msgid "Continued table caption" msgstr "Jätkatud tabeli pealkiri" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Nime võti" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-tüüp" @@ -4343,7 +4364,7 @@ msgid "SQL compatibility mode" msgstr "SQL ühilduvuse meetod" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE valikud:" @@ -4356,7 +4377,7 @@ msgid "Use delayed inserts" msgstr "Kasuta viivitatud lisamisi" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Keela võõrvõtme kontrollid" @@ -4373,7 +4394,7 @@ msgid "Syntax to use when inserting data" msgstr "Andmete lisamisel kasutatav süntaks" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Loodud päringu maksimaalne pikkus" @@ -4382,7 +4403,7 @@ msgid "Export type" msgstr "Ekspordi tüüp" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Lisa eksport ülekandesse" @@ -4437,7 +4458,6 @@ msgstr "Kohanda vaikimisi valikuid" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4496,7 +4516,6 @@ msgid "Set import and export directories and compression options" msgstr "Määra impordi ja ekspordi kataloogid ja tihendamise valikud" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4727,7 +4746,6 @@ msgid "Customize text input fields" msgstr "Muuda teksti lisamise väljasid" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! tekst" @@ -5908,9 +5926,11 @@ msgstr "Nõuab, et SQL valideerija oleks lubatud" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Parool" @@ -6088,7 +6108,6 @@ msgstr "CSV kasutades LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" @@ -6110,19 +6129,16 @@ msgstr "Andmebaasi eksportimise valikud" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV MS Exceli jaoks" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Text" @@ -6178,26 +6194,26 @@ msgstr "%s laiend on puudu. Palun kontrolli oma PHP seadistust." msgid "possible deep recursion attack" msgstr "võimalik tõsine rünnak" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Server ei vasta (või kohaliku serveri sokkel ei ole õigesti seadistatud)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Server ei vasta." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detailid..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Sinu seadistuses määratud kontrollkasutajaga ühendamine ebaõnnestus." @@ -6208,13 +6224,15 @@ msgid "Change password" msgstr "Muuda parooli" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Ilma paroolita" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Tipi uuesti" @@ -6235,8 +6253,9 @@ msgstr "Loo andmebaas" msgid "Create" msgstr "Loo" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Ei oma õigusi" @@ -6246,12 +6265,12 @@ msgid "Create table" msgstr "Loo tabel" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nimi" @@ -6389,7 +6408,7 @@ msgid "View output as text" msgstr "Vaata väljundit tekstina" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Formaat:" @@ -6893,50 +6912,50 @@ msgstr "The PrimeBase XT blogi, kirjutajaks Paul McCullagh" msgid "No data found for GIS visualization." msgstr "GIS visualiseerimiseks andmeid ei leitud." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Järgnevaid struktuure on kas loodud või muudetud. Siin saad:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Vaata struktuuri sisu, klikkides selle nimele" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Muuda mistahes selle sätet, klikkides vastavat \"Valikud\" linki" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Muuda struktuuri, klikkides \"Struktuur\" lingile" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Mine andmebaasi: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Muuda %s sätteid" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Mine tabelisse: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "%s struktuur" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Mine vaatesse: %s" @@ -7007,11 +7026,11 @@ msgstr "" "Ühelt väärtuselt teisele liikumiseks kasuta TAB-klahvi või mujale " "liikumiseks kasuta CTRL + nooled" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisatud rea id: %1$d" @@ -7257,7 +7276,7 @@ msgstr "phpMyAdmini dokumentatsioon" msgid "Reload navigation frame" msgstr "Lae navigeerimise raam uuesti" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Sellel formaadil pole valikuid" @@ -7371,93 +7390,93 @@ msgstr "Ühtegi kehtivat autentimise võtit pole sisestatud" msgid "Authenticating..." msgstr "Autentimine..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Veergusid eraldab:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Veergusid ümbritseb:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Veergusid lõpetab:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Ridasid katkestab:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "NULL asendaja:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Eemalda veergudest tagasijooksu/reavahetuse sümbolid" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Exceli väljaanne:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Andmete tõmmise valikud" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Andmete tõmmistamine tabelile" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Sündmus" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definitsioon" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tabeli struktuur tabelile" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Vaate struktuur" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Sise-vaate struktuur" @@ -7473,94 +7492,83 @@ msgstr "(jätkub)" msgid "Structure of table @TABLE@" msgstr "@TABLE@ tabeli struktuur" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Objekti loomise valikud" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Tabeli pealkiri (jätkub)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Näita võõrvõtme seoseid" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Näita kommentaare" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Näita MIME-tüüpe" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Host" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Loomise aeg" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Serveri versioon" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP versioon" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki tabel" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Ekspordi tabeli nimed" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Ekspordi tabeli päised" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Koostab üksiku tabeli andmeid sisaldava raporti)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Raporti pealkiri:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP massiiv" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7568,11 +7576,11 @@ msgstr "" "Näita kommentaare (sisaldab teavet eksportimise ajatempli, PHP versiooni " "ja serveri versiooni kohta)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Päise täiendav kommentaar (\\n poolitab ridu):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7580,25 +7588,25 @@ msgstr "" "Lisa ajatempel andmebaasi loomise, viimase uuendamise ja viimase " "kontrollimise kohta" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Andmebaasi süsteem või vanem MySQL server, et saavutada väljundi maksimaalne " "ühilduvus:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Lisa %s käsk" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Lisa käske:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7607,32 +7615,39 @@ msgstr "" "veeru ja tabeli nimesid eriliste sümbolitega või võtmesõnadega vormimise " "eest)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Objekti loomise valikud" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Kärbi tabelit enne lisamist" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "INSERT käskude asemel kasuta:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED käske" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE käske" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Andmete tõmmistamiseks kasutatav funktsioon:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Andmete lisamiseks kasutatav süntaks:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7642,7 +7657,7 @@ msgstr "" "  Näide: INSERT INTO tabeli_nimi (veerg_A,veerg_B,veerg_C) VALUES " "(1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7651,7 +7666,7 @@ msgstr "" "lisa mitu rida igas INSERT käsus
      " "Näide: INSERT INTO tabeli_nimi VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7659,7 +7674,7 @@ msgstr "" "mõlemad ülal nimetatuist
      Näide: INSERT INTO " "tabeli_nimi (veerg_A,veerg_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7667,7 +7682,7 @@ msgstr "" "mitte ükski ülal nimetatuist
      Näide: INSERT " "INTO tabeli_nimi VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7675,7 +7690,7 @@ msgstr "" "Tõmmista binaarsed veerud heksadetsimaalsena (nt \"abc\" salvestatakse " "kui 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7683,50 +7698,45 @@ msgstr "" "Tõmmista TIMESTAMP veerud UTC ajana (lubab tõmmistada TIMESTAMP veergusid " "ja kasutada neid erinevates ajavööndites asuvates serverites)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Toimingud" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funktsioonid" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Tõmmistatud tabelite piirangud" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Piirangud tabelile" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Andmete lugemisel esines viga:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Objekti loomise valikud (soovitatav on valida kõik)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Vaated" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Ekspordi sisu" @@ -7800,6 +7810,10 @@ msgstr "Veeru nimed" msgid "This plugin does not support compressed imports!" msgstr "See plugin ei toeta tihendatud importe!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki tabel" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7856,6 +7870,10 @@ msgstr "SQL ühilduvuse meetod:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ära kasuta nulliliste väärtuste puhul AUTO_INCREMENT" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8094,11 +8112,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Uuendatud seadistuse faili laadimiseks logi phpMyAdmini uuesti sisse." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "kirjeldus puudub" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Ära vali ühtegi" @@ -8120,9 +8139,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Kasutajanimi" @@ -8159,34 +8179,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Lisa alluva paljundamise kasutaja" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Kõik kasutajad" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Kasuta tekstivälja" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Kõik hostid" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Kohalik" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "See host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Kasuta hosti tabelit" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8202,7 +8231,7 @@ msgstr "Genereeri parool" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8238,8 +8267,8 @@ msgid "Edit event" msgstr "Muuda sündmust" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Taotluse töötlemisel esines viga" @@ -8315,7 +8344,8 @@ msgstr "Sa pead andma sündmusele õige tüübi." msgid "You must provide an event definition." msgstr "Sa pead andma sündmuse definitsiooni." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Uus" @@ -8449,25 +8479,25 @@ msgstr "Sa pead andma funktsioonile õige pöördumise tüübi." msgid "You must provide a routine definition." msgstr "Sa pead andma funktsiooni definitsiooni." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "%s funktsiooni käivitamise tulemused" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "Toimingu viimane käsk mõjutas %d rida" msgstr[1] "Toimingu viimane käsk mõjutas %d rida" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "%s funktsiooni käivitamise tulemused" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Käivita funktsioon" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Funktsiooni parameetrid" @@ -8596,28 +8626,28 @@ msgstr "%2$s andmebaasist ei leitud sündmust nimega %1$s" msgid "There are no events to display." msgstr "Pole sündmusi, mida näidata." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "%s tabelit pole olemas!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Palun seadista koordinaadid %s tabelile" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "%s andmebaasi skeem - Leht %s" @@ -8754,6 +8784,448 @@ msgstr "Tundmatu keel: %1$s." msgid "Current Server" msgstr "Praegune server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Õigused puuduvad." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Sisaldab kõiki õigusi, v.a GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Lubab lugeda andmeid." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Lubab lisada ja asendada andmeid." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Lubab muuta andmeid." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Lubab kustutada andmeid." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Lubab luua uusi andmebaase ja tabeleid." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Lubab kustutada andmebaase ja tabeleid." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "Lubab uuesti laadida serveri sätteid ja puhastada serveri puhvreid." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Lubab serveri välja lülitada." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Lubab vaadata kõikide kasutajate protsesse" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Lubab andmeid failidest importida ja failideks eksportida." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Muudatusi selles MySQL versioonis ei toimunud." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Lubab luua ja kustutada indekseid." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Lubab muuta olemasolevate tabelite struktuuri." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Annab ligipääsu kogu andmebaaside nimekirjale." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Lubab ühendada isegi siis, kui saavutatud on maksimaalne ühenduste hulk. See " +"on vajalik enamike administratiivsete tegevuste jaoks, nagu näiteks " +"globaalsete muutujate seadmiseks või teiste kasutajate lõimude sulgemiseks." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Lubab luua ajutisi tabeleid." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Lubab käesoleva lõimu jaoks tabeleid lukustada." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Vajalik alluvate paljundamiseks." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Lubab kasutajal küsida, kus alluvad / ülemad asuvad." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Lubab luua uusi vaateid." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Lubab luua sündmusi sündmuse ajastaja jaoks" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Lubab luua ja kustutada päästikuid" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Lubab teostada SHOW CREATE VIEW päringuid." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Lubab luua salvestatud funktsioone." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Lubab muuta ja kustutada salvestatud funktsioone." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Lubab luua, kustutada ja ümber nimetada kasutajakontosid." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Lubab käivitada salvestatud funktsioone." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Puudub" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ressursi piirangud" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Märkus: Nende valikute muutmisel väärtuseks 0 (null) eemaldab piirangu." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Piirab päringute hulka, mida kasutaja võib tunni aja jooksul serverile saata." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Piirab tabelit või andmebaasi muutvate käskude hulka, mida kasutaja võib " +"tunni aja jooksul käivitada." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Piirab uute ühenduste hulka, mida kasutaja võib tunni aja jooksul avada." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Piirab samaaegsete ühenduste hulka, mida kasutajal võib olla." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Tabelipõhised õigused" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Märkus: MySQL õigused on inglisekeelsed" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administreerimine" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globaalsed õigused" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Andmebaasipõhised õigused" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Lubab luua uusi tabeleid." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Lubab kustutada tabeleid." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "Lubab õiguste tabelit laadimata lisada kasutajaid ja õigusi." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Sisselogimise teave" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Ära muuda parooli" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s parool on edukalt vahetatud." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Tühistasid %s õigused" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Andmebaas kasutajale" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Loo samanimeline andmebaas ja anna kõik õigused" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Anna kõik õigused metamärgiga nimele (kasutajanimi\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Anna kõik õigused "%s" andmebaasis" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Kasutajad, kellel on ligipääs "%s" andmebaasile" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Kasutaja" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Grant" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Kasutaja on lisatud." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Kõik" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globaalne" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "andmebaasipõhine" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "metamärk" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Kasutajat ei leitud." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Muuda õigusi" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Tühista" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Ekspordi kõik" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... hoia eelmine alles." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... kustuta eelmine kasutajate tabelist." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... tühista eelmise kõik aktiivsed õigused ja seejärel kustuta see." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... kustuta eelmine kasutajate tabelist ja seejärel lae õigused uuesti." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Muuda sisselogimise teavet / Kopeeri kasutajat" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Loo uus kasutaja samade õigustega ja ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Veerupõhised õigused" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Lisa õigusi järgnevas andmebaasis" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Metamärkide % ja _ täheliseks kasutamiseks peaksid nende ette asetama " +"kurakaldkriipsu ehk \\" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Lisa õigusi järgnevas tabelis" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Kustuta valitud kasutajad" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Tühista kasutajatelt kõik aktiivsed õigused ning seejärel kustuta need " +"kasutajad." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Kustuta kasutajatega samanimelised andmebaasid." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Kustutavaid kasutajaid pole valitud!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Õiguste uuesti laadimine" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Valitud kasutajad on edukalt kustutatud." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Uuendasid %s õigusi." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Kõikide kasutajate õigused" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "%s õigused" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Kasutajate ülevaade" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Märkus: phpMyAdmin võtab kasutajate õigused otse MySQL'i õiguste tabelist. " +"Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi " +"muudetud. Sellisel juhul peaksid enne jätkamist %sõigused uuesti laadima%s." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Valitud kasutajat õiguste tabelist ei leitud." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Lisasid uue kasutaja." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Lähteandmebaas" @@ -8800,11 +9272,11 @@ msgstr "Puhasta" msgid "Columns" msgstr "Veerud" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale" @@ -9083,12 +9555,6 @@ msgstr "Tarkvara versioon" msgid "Protocol version" msgstr "Protokolli versioon" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Kasutaja" - #: main.php:217 msgid "Server charset" msgstr "Serveri märgitabel" @@ -9606,438 +10072,20 @@ msgstr "Litsents" msgid "disabled" msgstr "keelatud" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Sisaldab kõiki õigusi, v.a GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Lubab muuta olemasolevate tabelite struktuuri." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Lubab muuta ja kustutada salvestatud funktsioone." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Lubab luua uusi andmebaase ja tabeleid." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Lubab luua salvestatud funktsioone." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Lubab luua uusi tabeleid." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Lubab luua ajutisi tabeleid." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Lubab luua, kustutada ja ümber nimetada kasutajakontosid." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Lubab luua uusi vaateid." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Lubab kustutada andmeid." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Lubab kustutada andmebaase ja tabeleid." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Lubab kustutada tabeleid." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Lubab luua sündmusi sündmuse ajastaja jaoks" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Lubab käivitada salvestatud funktsioone." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Lubab andmeid failidest importida ja failideks eksportida." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "Lubab õiguste tabelit laadimata lisada kasutajaid ja õigusi." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Lubab luua ja kustutada indekseid." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Lubab lisada ja asendada andmeid." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Lubab käesoleva lõimu jaoks tabeleid lukustada." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Piirab uute ühenduste hulka, mida kasutaja võib tunni aja jooksul avada." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Piirab päringute hulka, mida kasutaja võib tunni aja jooksul serverile saata." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Piirab tabelit või andmebaasi muutvate käskude hulka, mida kasutaja võib " -"tunni aja jooksul käivitada." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Piirab samaaegsete ühenduste hulka, mida kasutajal võib olla." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Lubab vaadata kõikide kasutajate protsesse" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Muudatusi selles MySQL versioonis ei toimunud." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "Lubab uuesti laadida serveri sätteid ja puhastada serveri puhvreid." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Lubab kasutajal küsida, kus alluvad / ülemad asuvad." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Vajalik alluvate paljundamiseks." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Lubab lugeda andmeid." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Annab ligipääsu kogu andmebaaside nimekirjale." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Lubab teostada SHOW CREATE VIEW päringuid." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Lubab serveri välja lülitada." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Lubab ühendada isegi siis, kui saavutatud on maksimaalne ühenduste hulk. See " -"on vajalik enamike administratiivsete tegevuste jaoks, nagu näiteks " -"globaalsete muutujate seadmiseks või teiste kasutajate lõimude sulgemiseks." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Lubab luua ja kustutada päästikuid" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Lubab muuta andmeid." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Õigused puuduvad." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Puudub" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Tabelipõhised õigused" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Märkus: MySQL õigused on inglisekeelsed" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administreerimine" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globaalsed õigused" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Andmebaasipõhised õigused" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ressursi piirangud" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Märkus: Nende valikute muutmisel väärtuseks 0 (null) eemaldab piirangu." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Sisselogimise teave" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Ära muuda parooli" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Kasutajat ei leitud." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Kasutaja %s on juba olemas!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Lisasid uue kasutaja." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Uuendasid %s õigusi." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Tühistasid %s õigused" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s parool on edukalt vahetatud." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s kustutamine" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Kustutavaid kasutajaid pole valitud!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Õiguste uuesti laadimine" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Valitud kasutajad on edukalt kustutatud." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Õigused on edukalt uuesti laetud." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Muuda õigusi" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Tühista" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Ekspordi kõik" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Kõik" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Kõikide kasutajate õigused" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "%s õigused" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Kasutajate ülevaade" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Kustuta valitud kasutajad" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Tühista kasutajatelt kõik aktiivsed õigused ning seejärel kustuta need " -"kasutajad." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Kustuta kasutajatega samanimelised andmebaasid." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Märkus: phpMyAdmin võtab kasutajate õigused otse MySQL'i õiguste tabelist. " -"Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi " -"muudetud. Sellisel juhul peaksid enne jätkamist %sõigused uuesti laadima%s." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Valitud kasutajat õiguste tabelist ei leitud." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Veerupõhised õigused" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Lisa õigusi järgnevas andmebaasis" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Metamärkide % ja _ täheliseks kasutamiseks peaksid nende ette asetama " -"kurakaldkriipsu ehk \\" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Lisa õigusi järgnevas tabelis" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Muuda sisselogimise teavet / Kopeeri kasutajat" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Loo uus kasutaja samade õigustega ja ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... hoia eelmine alles." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... kustuta eelmine kasutajate tabelist." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... tühista eelmise kõik aktiivsed õigused ja seejärel kustuta see." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... kustuta eelmine kasutajate tabelist ja seejärel lae õigused uuesti." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Andmebaas kasutajale" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Loo samanimeline andmebaas ja anna kõik õigused" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Anna kõik õigused metamärgiga nimele (kasutajanimi\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Anna kõik õigused "%s" andmebaasis" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Kasutajad, kellel on ligipääs "%s" andmebaasile" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globaalne" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "andmebaasipõhine" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "metamärk" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Kasutaja on lisatud." - #: server_replication.php:82 msgid "Unknown error" msgstr "Tundmatu viga" @@ -11797,37 +11845,37 @@ msgstr "Võti peaks sisaldama tähti, numbreid [em]ja[/em] erilisi sümboleid." msgid "Wrong data" msgstr "Valed andmed" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" järjehoidjat kasutatakse vaikimisi sirvimise päringuna." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Kas tõesti tahad käivitada selle päringu?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Näitan PHP koodina" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Valideeritud SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL tulemus" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Koostanud" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid `%s` tabeli indeksitega" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Nimi" @@ -13683,6 +13731,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert väärtuseks on määratud 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP massiiv" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/eu.po b/po/eu.po index e61b564d78..2c1d6ea63f 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-02 11:20+0200\n" "Last-Translator: aitzol berasategi \n" "Language-Team: basque \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Dena erakutsi" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Bilatu" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Bilatu" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Joan" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s datu-basea sortua izan da." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Datu-basearen iruzkina: " @@ -120,17 +123,17 @@ msgstr "Datu-basearen iruzkina: " msgid "Table comments" msgstr "Taularen iruzkinak" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Zutabea" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Mota" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Nulua" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Nulua" msgid "Default" msgstr "Lehenetsia" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Esteka:" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Iruzkinak" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ez" @@ -242,19 +248,22 @@ msgstr "Ez" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Bai" @@ -262,8 +271,8 @@ msgstr "Bai" msgid "View dump (schema) of database" msgstr "Ikusi datu-basearen iraulketa (eskema)" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Ez da taularik aurkitu datu-basean." @@ -280,75 +289,75 @@ msgstr "Desautatu dena" msgid "The database name is empty!" msgstr "Datu-basearen izena hutsik dago!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s datu-basea %s-(e)ra berrizendatua izan da" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s datu-basea %2$s(e)ra kopiatua izan da." -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Datu-basea berrizendatu izen honetara" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Datu-basea kendu" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s datu-basea ezabatua izan da." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Datu-basea ezabatu (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Datu-basea kopiatu" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Egitura soilik" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Egitura eta datuak" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Datuak soilik" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "DATU-BASEA SORTU kopiatu aurretik" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s gehitu" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Murrizketak gehitu" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Kopiatutako datu-basea hautatu" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -358,7 +367,7 @@ msgstr "Kopiatutako datu-basea hautatu" msgid "Collation" msgstr "Ordenamendua" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -367,7 +376,7 @@ msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Aldatu edo esportatu erlazio-eskema" @@ -377,16 +386,18 @@ msgstr "Aldatu edo esportatu erlazio-eskema" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Taula" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Errenkadak" @@ -396,13 +407,13 @@ msgid "Size" msgstr "Tamaina" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "lanean" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -410,7 +421,7 @@ msgstr "Sortzea" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -418,7 +429,7 @@ msgstr "Azken eguneraketa" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,92 +442,15 @@ msgid_plural "%s tables" msgstr[0] "%s taula" msgstr[1] "%s taulak" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Goranzko" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Beherantz" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Ordenatu" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Erakutsi" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Irizpidea" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Gehitu/ezabatu irizpide-errenkada" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Gehitu/ezabatu errenkadak" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Kontsulta eguneratu" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Taulak erabili" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Edo" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Eta" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Txertatu" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Ezabatu" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Aldatu" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Aldatu %serakitzaile bisualrera%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-kontsulta %s datu-basean:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Kontsulta bidali" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "Jarraipena aktibatuta dago." msgid "Tracking is not active." msgstr "Jarraipena ez dago aktibatuta." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -587,20 +521,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s da MySQL zerbitzarian lehenetsitako biltegiratzeko mota." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Ikurdunak:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Guztiak egiaztatu" @@ -608,31 +543,32 @@ msgstr "Guztiak egiaztatu" msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esportatu" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Hutsik" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -676,17 +612,18 @@ msgstr "Taulak jarraipenarekin" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Datu-basea" @@ -704,18 +641,26 @@ msgstr "Eguneratua" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Egoera" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Ekintza" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Erakutsi" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ezabatu taula honetako jarraipen datuak" @@ -756,20 +701,20 @@ msgstr "Datu-base egunkaria" msgid "Bad type!" msgstr "Mota okerra!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Aukeratutako esportatze formatuak fitxategian gorde behar da!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Parametro okerrak!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ez dago leku-disko nahikoa %s fitxategia gordetzeko." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -777,12 +722,12 @@ msgstr "" "%s fitxategia aurretik bazegoen zerbitzarian, izena aldatu edo aukeratu " "gainean idazteko hobespena." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web-zerbitzariak dio %s fitxategia gordetzeko baimenik ez duzula." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Iraulketa %s fitxategian gorde da." @@ -805,7 +750,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometria" @@ -876,7 +821,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -885,20 +830,20 @@ msgstr "" "Agian fitxategi haundiegia igotzen saiatu zara. Mesedez begiratu " "%sdocumentation%s tamaina mugak aldatzeko." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Erakutsi laster-marka" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Gordetako kontsulta ezabatu da." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Ezinezkoa fitxategia irakurtzea" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -906,46 +851,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "%s laster-marka sortu da" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Inportatzea zuzen burutu da, %d kontsulta exekutatuta_." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -962,7 +907,7 @@ msgstr "" "phpMyAdmin askoz erabilerraza da frame-ak onartzen duen nabigatzaile " "batekin." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." @@ -971,7 +916,7 @@ msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." msgid "Do you really want to execute \"%s\"?" msgstr "Benetan nahi al duzu \"%s\" exekutatzea?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Datu-base osoa SUNTSITZERA zoaz!" @@ -1034,16 +979,20 @@ msgstr "Zerbitzariaren izena hutsik dago!" msgid "The user name is empty!" msgstr "Erabiltzailearen izena hutsik dago!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Pasahitza hutsik dago!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Gehitu erabiltzailea" @@ -1063,9 +1012,9 @@ msgstr "Itxi" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1328,12 +1277,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Batez" @@ -1520,10 +1470,10 @@ msgid "Explain output" msgstr "SQL-a azaldu" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Denbora" @@ -1867,7 +1817,7 @@ msgstr "SQL kontsulta" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Aldatu" @@ -1876,8 +1826,8 @@ msgstr "Aldatu" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1958,7 +1908,7 @@ msgstr "Edukinen taula" msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2502,14 +2452,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Errorea" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL kontsulta" @@ -2520,7 +2470,7 @@ msgstr "SQL kontsulta" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2549,6 +2499,10 @@ msgstr "PHP Koderik gabe" msgid "Create PHP Code" msgstr "PHP kodea sortu" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Kontsulta bidali" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2573,7 +2527,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2600,7 +2554,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2609,7 +2563,7 @@ msgstr "Hasi" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2619,7 +2573,7 @@ msgstr "Aurrekoa" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2629,7 +2583,7 @@ msgstr "Hurrengoa" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2652,16 +2606,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Egitura" @@ -2669,21 +2624,20 @@ msgstr "Egitura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Txertatu" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Arakatu" @@ -2705,21 +2659,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Inprimatu" @@ -2736,6 +2690,74 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Goranzko" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Beherantz" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Ordenatu" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Irizpidea" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Gehitu/ezabatu irizpide-errenkada" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Gehitu/ezabatu errenkadak" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Kontsulta eguneratu" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Taulak erabili" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Edo" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Eta" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Txertatu" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Ezabatu" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Aldatu" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-kontsulta %s datu-basean:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "hitz hauetariko bat gutxienez" @@ -2778,8 +2800,8 @@ msgstr[1] "%s emaitzak %s taulan" msgid "Delete the matches for the %s table?" msgstr "%s taulako aukeratuak ezabatu" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2814,73 +2836,73 @@ msgstr "Taulen barnean:" msgid "Inside column:" msgstr "Zutabearen barnean:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Lar" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "Errenkada kopurua orriko" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Astel" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontal (goiburukoak biratuta)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "bertikal" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Exekutatu aurretik aukeratutako kontsulta" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Gakoaren arabera ordenatu" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2894,115 +2916,115 @@ msgstr "Gakoaren arabera ordenatu" msgid "Options" msgstr "Eragiketak" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Testu partzialak" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Testu osoak" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Erlazio-eskema" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Erlazio-eskema" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Nabigatzailearen eraldaketa" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Hil" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "kontsultan" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Errenkadak erakusten" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "guztira" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Inprimatzeko ikuspena (testu osoak)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF eskema erakutsi" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Esteka aurkitugabea" @@ -3123,8 +3145,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Datu-baseak" @@ -3140,11 +3162,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3162,9 +3184,9 @@ msgstr "" msgid "Query" msgstr "Kontsulta" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Pribilegioak" @@ -3173,7 +3195,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3275,51 +3297,51 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Datu-basean bilatu" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Datu-basean bilatu" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "%s taula %s-(e)ra berrizendatua izan da" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3328,7 +3350,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funtzioak" @@ -3341,7 +3363,7 @@ msgstr "Eragiketak" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3386,7 +3408,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3746,7 +3768,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Taulak" @@ -3757,9 +3779,10 @@ msgstr "Taulak" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Datuak" @@ -3883,33 +3906,33 @@ msgid "Disabled" msgstr "Ezgaituta" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Egitura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4331,13 +4354,13 @@ msgstr "Trinkotzea" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4366,7 +4389,6 @@ msgstr "Eremuak escaped by:" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL ordezkatu honen ordez:" @@ -4413,25 +4435,24 @@ msgstr "Txantiloi-fitxategiaren izena" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s taula(k)" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Taularen epigrafea gehitu" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Taularen epigrafea" @@ -4441,14 +4462,14 @@ msgid "Continued table caption" msgstr "Taularen epigrafea gehitu" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-mota" @@ -4490,7 +4511,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4503,7 +4524,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4521,7 +4542,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4531,7 +4552,7 @@ msgid "Export type" msgstr "Esportazio mota" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4586,7 +4607,6 @@ msgstr "Datu-basea esportatzeko aukerak" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV datuak" @@ -4647,7 +4667,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4883,7 +4902,6 @@ msgid "Customize text input fields" msgstr "Datu-basea esportatzeko aukerak" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5993,9 +6011,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Pasahitza" @@ -6162,7 +6182,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6184,19 +6203,16 @@ msgstr "Datu-basea esportatzeko aukerak" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excel datuentzako CSV" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6252,25 +6268,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6281,13 +6297,15 @@ msgid "Change password" msgstr "Pasahitza aldatu" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Pasahitzik ez" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Berridatzi" @@ -6310,8 +6328,9 @@ msgstr "Datu-base berri bat sortu" msgid "Create" msgstr "Sortu" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Pribilegiorik gabe" @@ -6322,12 +6341,12 @@ msgid "Create table" msgstr "Orri berri bat sortu" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Izena" @@ -6492,7 +6511,7 @@ msgid "View output as text" msgstr "Bidali" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6955,51 +6974,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Egitura soilik" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7070,11 +7089,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7330,7 +7349,7 @@ msgstr "phpMyAdmin dokumentazioa" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7443,84 +7462,84 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Honetan bukatutako lerroak: " -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Eremuak honekin mugatuta:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Eremuak escaped by:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Honetan bukatutako lerroak: " -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "NULL ordezkatu honen ordez:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel edizioa" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Taula honen datuak irauli" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Bidalita" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7528,25 +7547,25 @@ msgstr "Bidalita" msgid "Definition" msgstr "Deskribapena" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Taularen egitura taula honentzat" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Egitura soilik" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7562,259 +7581,250 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "@TABLE@ taularen egitura" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Eraldaketen hobespenak" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Taularen epigrafea" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "MIME-mota erabilgarriak" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Zerbitzaria" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Sortzeko denbora" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Zerbitzariaren bertsioa" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP Bertsioa" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "Esportatu" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horizontal (goiburukoak biratuta)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "Fitxategiak inportatu" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Sententziak" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Sententziak" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Eraldaketen hobespenak" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "Prozesuak" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "Funtzioak" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Taularentzako murrizketak" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Datuak irakurtzea baimentzen du." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7883,6 +7893,10 @@ msgstr "Zutabe izenak" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7936,6 +7950,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8174,11 +8192,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "Deskribapenik ez" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Desautatu dena" @@ -8198,9 +8217,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Erabiltzaile-izena" @@ -8237,34 +8257,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Edozein erabiltzaile" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Testu-eremua erabili" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Edozein ostalari" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Host hau" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Host taula erabili" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8278,7 +8307,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8316,8 +8345,8 @@ msgid "Edit event" msgstr "Bidalita" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8405,7 +8434,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8547,25 +8577,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8717,29 +8747,29 @@ msgstr "Ez da taularik aurkitu datu-basean." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" taula ez da existitzen!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Mesedez, %s taularentzako koordinatuak konfiguratu" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8889,6 +8919,473 @@ msgstr "" msgid "Current Server" msgstr "Zerbitzaria" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Pribilegiorik ez." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Datuak irakurtzea baimentzen du." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Datuak txertatu eta ordezkatzea baimentzen du." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Datuak aldatzea baimentzen du." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Datuak ezabatzea baimentzen du." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Datu-base eta taula berriak sortzea baimentzen du." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Datu-base eta taulak ezabatzea baimentzen du." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen " +"du." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Zerbitzaria amatatzea baimentzen du." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" +"Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen " +"du." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Ez du eraginik MySQL bertsio honetan." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Indizeak sortu eta ezabatzea baimentzen du." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Uneko taulen egiturak aldatzea baimentzen du." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Konektatzea baimentzen du, baita konexio kopuru maximora ailegatuta ere; " +"Aldagai orokorrak zehaztu edota beste erabiltzaileen hariak hiltzeko " +"bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Aldi baterako taulak sortzea baimentzen du." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Momentuko harian taulak blokeatzea baimentzen du." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Erreplikazio morroientzat beharrezkoa." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +#, fuzzy +msgid "Allows creating new views." +msgstr "Taula berriak sortzea baimentzen du." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Indizeak sortu eta ezabatzea baimentzen du." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +#, fuzzy +msgid "Allows creating stored routines." +msgstr "Taula berriak sortzea baimentzen du." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +#, fuzzy +msgid "Allows altering and dropping stored routines." +msgstr "Indizeak sortu eta ezabatzea baimentzen du." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Batez" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Baliabideen mugak" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Erabiltzaileak orduko zerbitzarira bidali dezakeen kontsulta kopurua " +"mugatzen du." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Erabiltzaileak orduko exekuta dezakeen taula edo datu-baserik alda dezaketen " +"komando kopurua mugatzen du." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Taularen pribilegio espezifikoak" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Kudeaketa" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Pribilegio orokorrak" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Datu-basearen pribilegio espezifikoak" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Taula berriak sortzea baimentzen du." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Taulak ezabatzea baimentzen du." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula " +"berkargatu gabe." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Saioa hasteko informazioa" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Pasahitza ez aldatu" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr ""%s" datu-basearen pribilegioak egiaztatu." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Erabiltzailea" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Baimendu" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +msgid "User has been added." +msgstr "%s eremua ezabatu da" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Edozein" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "orokorra" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Datubasearentzat espezifikoa" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "komodina" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Ez da erabiltzailerik aurkitu." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Editatu Pribilegioak" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Ezeztatu" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Esportatu" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... mantendu aurrekoa." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... zaharra ezabatu erabiltzaileen tauletatik." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " +"pribilegioak." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Zutabearen pribilegio espezifikoak" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Pribilegioak gehitu datu-base honetan" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Pribilegioak gehitu taula honetan" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Hautatutako erabiltzaileak baztertu" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Pribilegioak berkargatzen" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "%s-aren pribilegioak eguneratu dituzu." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Pribilegioak" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Pribilegioak" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Erabiltzailearen info orokorra" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren " +"pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz " +"aldaketarik egon bada, zerbitzariak erabiltzen dituenak ez bezelakoak izan " +"daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " +"beharko zenituzke." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Erabiltzaile berria gehitu duzu." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -8939,11 +9436,11 @@ msgstr "" msgid "Columns" msgstr "Zutabe izenak" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri" @@ -9248,12 +9745,6 @@ msgstr "Zerbitzariaren bertsioa" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Erabiltzailea" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9805,463 +10296,20 @@ msgstr "" msgid "disabled" msgstr "Ezgaituta" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Uneko taulen egiturak aldatzea baimentzen du." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -#, fuzzy -msgid "Allows altering and dropping stored routines." -msgstr "Indizeak sortu eta ezabatzea baimentzen du." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Datu-base eta taula berriak sortzea baimentzen du." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -#, fuzzy -msgid "Allows creating stored routines." -msgstr "Taula berriak sortzea baimentzen du." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Taula berriak sortzea baimentzen du." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Aldi baterako taulak sortzea baimentzen du." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -#, fuzzy -msgid "Allows creating new views." -msgstr "Taula berriak sortzea baimentzen du." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Datuak ezabatzea baimentzen du." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Datu-base eta taulak ezabatzea baimentzen du." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Taulak ezabatzea baimentzen du." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" -"Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen " -"du." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula " -"berkargatu gabe." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Indizeak sortu eta ezabatzea baimentzen du." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Datuak txertatu eta ordezkatzea baimentzen du." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Momentuko harian taulak blokeatzea baimentzen du." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Erabiltzaileak orduko zerbitzarira bidali dezakeen kontsulta kopurua " -"mugatzen du." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Erabiltzaileak orduko exekuta dezakeen taula edo datu-baserik alda dezaketen " -"komando kopurua mugatzen du." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Ez du eraginik MySQL bertsio honetan." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen " -"du." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Erreplikazio morroientzat beharrezkoa." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Datuak irakurtzea baimentzen du." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Zerbitzaria amatatzea baimentzen du." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Konektatzea baimentzen du, baita konexio kopuru maximora ailegatuta ere; " -"Aldagai orokorrak zehaztu edota beste erabiltzaileen hariak hiltzeko " -"bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Indizeak sortu eta ezabatzea baimentzen du." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Datuak aldatzea baimentzen du." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Pribilegiorik ez." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Batez" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Taularen pribilegio espezifikoak" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Kudeaketa" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Pribilegio orokorrak" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Datu-basearen pribilegio espezifikoak" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Baliabideen mugak" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Saioa hasteko informazioa" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Pasahitza ez aldatu" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Ez da erabiltzailerik aurkitu." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Erabiltzaile berria gehitu duzu." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "%s-aren pribilegioak eguneratu dituzu." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s ezabatzen" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Pribilegioak berkargatzen" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Editatu Pribilegioak" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Ezeztatu" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Esportatu" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Edozein" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Pribilegioak" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Pribilegioak" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Erabiltzailearen info orokorra" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Baimendu" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Hautatutako erabiltzaileak baztertu" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren " -"pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz " -"aldaketarik egon bada, zerbitzariak erabiltzen dituenak ez bezelakoak izan " -"daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " -"beharko zenituzke." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Zutabearen pribilegio espezifikoak" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Pribilegioak gehitu datu-base honetan" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Pribilegioak gehitu taula honetan" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... mantendu aurrekoa." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... zaharra ezabatu erabiltzaileen tauletatik." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " -"pribilegioak." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr ""%s" datu-basearen pribilegioak egiaztatu." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak" - -#: server_privileges.php:2544 -msgid "global" -msgstr "orokorra" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Datubasearentzat espezifikoa" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "komodina" - -#: server_privileges.php:2590 -#, fuzzy -msgid "User has been added." -msgstr "%s eremua ezabatu da" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11863,41 +11911,41 @@ msgstr "" msgid "Wrong data" msgstr "Datu-baserik ez" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Benetan nahi al duzu " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL balidatu" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL emaitza" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Egilea:" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etiketa" diff --git a/po/fa.po b/po/fa.po index 1834d17335..0b787b01a7 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-22 18:51+0200\n" "Last-Translator: Ashiyane Digital Security Team \n" "Language-Team: persian \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "نمايش همه" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "جستجو" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "جستجو" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "تاييد" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "پایگاه داده %1$s ایجاد شد." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "توضيحات پایگاه داده: " @@ -120,17 +123,17 @@ msgstr "توضيحات پایگاه داده: " msgid "Table comments" msgstr "توضيحات جدول" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "ستون" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "نوع" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "خالي" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "خالي" msgid "Default" msgstr "پيش‌فرض" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "پيوند به" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "توضيحات" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "خير" @@ -242,19 +248,22 @@ msgstr "خير" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "بلي" @@ -262,8 +271,8 @@ msgstr "بلي" msgid "View dump (schema) of database" msgstr "نمايش الگوي پايگاه داده" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "در اين پايگاه داده هيچ جدولي وجود ندارد ." @@ -279,74 +288,74 @@ msgstr "عدم انتخاب همه" msgid "The database name is empty!" msgstr "نام پایگاه داده وارد نشده‌ است!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "پایگاه داده %1$s به %2$s تغییر نام داده شد" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "پایگاه داده %1$s در %2$s کپی شد" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "تغییر نام پایگاه داده به" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "حذف پایگاه داده" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "پايگاه داده %s حذف گرديد." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "حذف پایگاه داده" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "کپی کردن پابگاه داده به" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "فقط ساختار" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "ساختار و داده‌ها" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "فقط داده‌ها" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "پیش از کپی پایگاه داده ایجاد شود" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "افزودن %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "مقدار افزایشی خودکار اضافه شود" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "اعمال محدودیت ها" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "تعویض به پایگاه داده ی کپی شده" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "تعویض به پایگاه داده ی کپی شده" msgid "Collation" msgstr "مقایسه" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %shere%s را بزنيد." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "ویرایش یا صدور نمای رابطه ای" @@ -375,16 +384,18 @@ msgstr "ویرایش یا صدور نمای رابطه ای" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "جدول" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "سطرها" @@ -394,13 +405,13 @@ msgid "Size" msgstr "اندازه" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "در حال استفاده" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "ایجاد" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "آخرین به روز رسانی" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -429,92 +440,15 @@ msgid_plural "%s tables" msgstr[0] "%s جدول" msgstr[1] "%s جدولها" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "صعودي" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "نزولي" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "ترتيب" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "نمايش" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "معيارها" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "اضافه/حذف معيارها" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "اضافه/حذف ستون ها" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "به‌هنگام سازي پرس و جو" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "بكارگيري جدولها" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "يا" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "و" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "اینسرت" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "حذف" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "اصلاح" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "به %svisual builder%s بروید" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "پرس و جوي SQL از پايگاه داده %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "ثبت کوئری" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -555,7 +489,7 @@ msgstr "پیگیری فعال می باشد." msgid "Tracking is not active." msgstr "پیگیری فعال نمی باشد." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "در این پایگاه داده(mysql) موتور پیش فرض ذخیره سازی %s میباشد ." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "موارد انتخاب‌ شده :" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "انتخاب همه" @@ -606,31 +541,32 @@ msgstr "انتخاب همه" msgid "Check tables having overhead" msgstr "جدول هایی که سربار دارند را چک کنید" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "صدور" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "خالي" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "جدول های پیگیری شده" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "پايگاه داده" @@ -702,18 +639,26 @@ msgstr "به روز شده" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "وضعیت" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "عمل" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "نمايش" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "اطلاعات پیگیری شده برای این جدول را پاک کنید" @@ -754,20 +699,20 @@ msgstr "سابقه عملکرد پایگاه داده" msgid "Bad type!" msgstr "نوع اشتباه!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "نوع صدور را انتخاب کنید تا در فایل ذخیره گردد!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "ورودی های اشتباه!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "فضای کافی برای ذخیره فایل %s ." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -775,12 +720,12 @@ msgstr "" "فایل %s در حال حاضر وجود دارد , نام فایل را تغییر دهید و یا تنظیمات بازنویسی " "را چککنید ." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "وب سرور مجوز ذخیره فایل %s را ندارد ." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "اطلاعات دریافت شده در فایل %s ذخیره شد‬." @@ -803,7 +748,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "هندسه" @@ -876,7 +821,7 @@ msgstr "" "گزینه \"GeomFromText\" را از ستون \"Function\" انتخاب کنید و رشته زیر را در " "فیلد \"مقدار(value)\" وارد کنید" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -885,20 +830,20 @@ msgstr "" "احتمالاً شما سعی کردید یک فایل حجیم را اپلور کنید.لطفاً برای راهکار در مورد " "این محدودیت به%sنوشتار%s مراجعه کنید." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "نمایش بوک مارک" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "بوک مارک حذف شد ." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "امکان خواندن فایل وجود ندارد" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -908,7 +853,7 @@ msgstr "" "شما فایلی را با فشرده سازی پشتیبانی نشده بار گذاری میکنید (%s).ممکن است در " "تنظیمات غیر فعال باشد و یا پشتیبانی میسر نباشد ." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,26 +863,26 @@ msgstr "" "بیشتر بوده. به [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a] " "مراجعه نمایید." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "نمی توان کاراکترها را بدون داشتن کتابخانه تبدیل آنها، تبدیل کرد" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "خطا در بارگزار پلاگین ها, لطفا مراحل نصب را چک کنید" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "بوک مارک %s ایجاد شده" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "وارد کردن اطلاعات با موفقیت به پایان رسید , %d کوئری اجرا شد ." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -945,7 +890,7 @@ msgstr "" "زمان انتظار اسکریپت به پایان رسیده, اگر مایلید عملیات را به پایان برسانید , " "فایل مورد نظر را دوباره ثبت کنید تا وارد کردن اطلاعات ادامه پیدا کنید." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -954,8 +899,8 @@ msgstr "" "تواند ورود داده را تمام کند مگر اینکه شما حداکثر زمان اجرای php را افزایش " "دهید." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -971,7 +916,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin با مرورگر هایی که از فریم ها پشتیبانی میکنند کاربر پسندانه تر است" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "عبارت \"DROP DATABASE\" غیر فعال است" @@ -981,7 +926,7 @@ msgstr "عبارت \"DROP DATABASE\" غیر فعال است" msgid "Do you really want to execute \"%s\"?" msgstr "آيا مطمئن هستيد " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "شما برای حذف کامل پایگاه داده اقدام کرده اید!" @@ -1039,16 +984,20 @@ msgstr "نام ميزبان خالي است!" msgid "The user name is empty!" msgstr "نام كاربر خالي است!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "اسم رمز خالي است!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "افزودن کاربر" @@ -1068,9 +1017,9 @@ msgstr "بستن" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1315,12 +1264,13 @@ msgstr "اضافه کردن نمودار به جدول" msgid "Please add at least one variable to the series" msgstr "لطفا حداقل یک مقدار به این سری اضافه نمایید" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "هیچ یک" @@ -1500,10 +1450,10 @@ msgid "Explain output" msgstr "شرح دادن خروجی" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "زمان" @@ -1801,7 +1751,7 @@ msgstr "نمایش جعبه پرس و جو" msgid "No rows selected" msgstr "هیچ سطری انتخاب نشده است" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "تغيير" @@ -1810,8 +1760,8 @@ msgstr "تغيير" msgid "Query execution time" msgstr "زمان اجرای پرس و جو" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d شماره ردیف معتبر نمی باشد." @@ -1885,7 +1835,7 @@ msgstr "محتوای داده ها" msgid "Ignore" msgstr "در نظر نگرفتن" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "کپی" @@ -2373,14 +2323,14 @@ msgid "en" msgstr "انگلیسی" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "خطا" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "پرس و جوي SQL" @@ -2391,7 +2341,7 @@ msgstr "پرس و جوي SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2420,6 +2370,10 @@ msgstr "بدون كد PHP" msgid "Create PHP Code" msgstr "ساخت كد PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "ثبت کوئری" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2444,7 +2398,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "در خط" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "استفاده از پروفایل" @@ -2471,14 +2425,14 @@ msgstr "پارامتر یافت نشد:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "شروع" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2488,7 +2442,7 @@ msgstr "قبل" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2496,7 +2450,7 @@ msgstr "بعدی" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "انتها" @@ -2519,16 +2473,17 @@ msgstr "برای انتخاب کلیک کنبد" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "ساختار" @@ -2536,21 +2491,20 @@ msgstr "ساختار" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "درج" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "فهرست" @@ -2571,21 +2525,21 @@ msgstr "رایانه خود را مشاهده نمایید:" msgid "Select from the web server upload directory %s:" msgstr "انتخاب از مسیر آپلود در سرور %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "فایلی برای آپلود موجود نیست" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "اجرا" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "چاپ" @@ -2602,6 +2556,74 @@ msgstr "تنظمیات دسترسی اشتباه در فایل تنظیمات ، msgid "Font size" msgstr "اندازه فونت" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "صعودي" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "نزولي" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "ترتيب" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "معيارها" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "اضافه/حذف معيارها" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "اضافه/حذف ستون ها" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "به‌هنگام سازي پرس و جو" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "بكارگيري جدولها" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "يا" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "و" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "اینسرت" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "حذف" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "اصلاح" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "پرس و جوي SQL از پايگاه داده %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "حداقل يكي از كلمات" @@ -2642,8 +2664,8 @@ msgstr[1] "%1$s همتا در %2$s" msgid "Delete the matches for the %s table?" msgstr "داده های همتا در جدول %s حذف شوند؟" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2678,72 +2700,72 @@ msgstr "درجدول های:" msgid "Inside column:" msgstr "در ستونها:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "اضافه يا حذف ستونها" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "شنبه" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "تعداد سطرها در هر صفحه" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "دوشنبه" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "افقي" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "عمودي" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2757,110 +2779,110 @@ msgstr "" msgid "Options" msgstr "عمليات" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy msgid "Partial texts" msgstr "متغییر" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "كاملا متن" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy msgid "Hide browser transformation" msgstr "اطلاعات ورود" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "سطر حذف گرديد" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "از کار انداختن" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "داخل کوئری" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "جمع كل" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "نمايش توضيحات ستون" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "پيوند پيدا نشد" @@ -2978,8 +3000,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "پايگاههاي داده" @@ -2995,11 +3017,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3017,9 +3039,9 @@ msgstr "" msgid "Query" msgstr "پرس و جو" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "امتيازات" @@ -3028,7 +3050,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "رویدادها" @@ -3128,44 +3150,44 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "جستجو در پايگاه‌داده" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "جستجو در پايگاه‌داده" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "جدول %s به %s تغيير نام داده‌شد" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "تنظیمات UI جدول قابل ذخیره سازی نیست" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3174,7 +3196,7 @@ msgstr "" "پاک سازی تنظیمات UI جداول موفقیت آمیز نبود(به $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s مراجعه کنید)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3185,7 +3207,7 @@ msgstr "" "بین می روند.لطفا ساختار جدول خود را برای تغییرات چک کنید." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "تابع" @@ -3198,7 +3220,7 @@ msgstr "عمليات" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3243,7 +3265,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3602,7 +3624,7 @@ msgstr "به اشتراک گذاشته شده" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "جدولها" @@ -3613,9 +3635,10 @@ msgstr "جدولها" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "داده" @@ -3731,32 +3754,32 @@ msgid "Disabled" msgstr "غيرفعال" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "ساختار" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "اطلاعات" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "ساختار و داده‌ها" @@ -4156,13 +4179,13 @@ msgstr "فشرده‌سازي" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "قراردادن نام ستونها در اولين سطر" @@ -4185,7 +4208,6 @@ msgstr "ستونهاي جداشده با" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4225,23 +4247,22 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "بیرون کشیدن جدول" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4250,14 +4271,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "" @@ -4294,7 +4315,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4307,7 +4328,7 @@ msgid "Use delayed inserts" msgstr "از ورودی با تاخیر استفاده نمایید" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4324,7 +4345,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4333,7 +4354,7 @@ msgid "Export type" msgstr "نوع صدور" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4386,7 +4407,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "داده‌هاي CSV" @@ -4445,7 +4465,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "" @@ -4662,7 +4681,6 @@ msgid "Customize text input fields" msgstr "سفارشی کردن فیلدهای ورودی متن" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5738,9 +5756,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "اسم رمز" @@ -5902,7 +5922,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -5924,19 +5943,16 @@ msgstr "آمار پايگاههاي داده" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV براي داده‌هاي MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -5992,25 +6008,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6021,13 +6037,15 @@ msgid "Change password" msgstr "تغيير کلمه ی عبور" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "بدون کلمه ی عبور" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "دوباره نوشتن" @@ -6048,8 +6066,9 @@ msgstr "ساخت پايگاه داده جديد" msgid "Create" msgstr "ساختن" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "امتيازات" @@ -6059,12 +6078,12 @@ msgid "Create table" msgstr "ساختن جدول" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "اسم" @@ -6216,7 +6235,7 @@ msgid "View output as text" msgstr "ذخيره به صورت پرونده" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6673,51 +6692,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "No databases" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "No databases" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "فقط ساختار" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6786,11 +6805,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7045,7 +7064,7 @@ msgstr "مستندات phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7160,79 +7179,79 @@ msgstr "کلید ورود معتبری داده نشده است" msgid "Authenticating..." msgstr "در حال ورود..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "خطوط منتهي به" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "ستونهاي درميان‌گرفته با" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "ستونهاي جداشده با" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "خطوط منتهي به" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "آمار پايگاههاي داده" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "حذف داده‌هاي جدول" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "رویداد" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7240,25 +7259,25 @@ msgstr "رویداد" msgid "Definition" msgstr "توضیحات" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "فقط ساختار" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7276,254 +7295,244 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "فقط ساختار" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy msgid "Table caption (continued)" msgstr "توضيحات جدول" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "نمايش توضيحات ستون" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Display Features" msgid "Display MIME types" msgstr "نمايش خصوصيات" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "ميزبان" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "زمان توليد" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "نسخه سرور" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "نسخه PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "صدور" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "Export" msgid "Export table headers" msgstr "صدور" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy msgid "Report title:" msgstr "No tables" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "شرج" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "شرج" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +msgid "Data creation options" +msgstr "آمار پايگاههاي داده" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "تابع" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "نمایش" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7592,6 +7601,10 @@ msgstr "نام ستونها" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7645,6 +7658,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7830,11 +7847,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "no Description" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "عدم انتخاب همه" @@ -7854,9 +7872,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "نام كاربر" @@ -7893,34 +7912,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "همه كاربران" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "همه ميزبانها" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "محلی" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7934,7 +7962,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7972,8 +8000,8 @@ msgid "Edit event" msgstr "افزودن يك كاربر جديد" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -8058,7 +8086,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "جدید" @@ -8195,24 +8224,24 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8353,29 +8382,29 @@ msgstr "در پايگاه داده هيچ جدولي یافت نشد." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "جدول \"%s\" وجود ندارد!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "لطفا مختصات جدول %s را تنظيم كنيد" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8521,6 +8550,446 @@ msgstr "زبانِ ناشناس : %1$s." msgid "Current Server" msgstr "سرور" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +#, fuzzy +msgid "No privileges." +msgstr "امتيازات" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "وارد کردن تمام دسترسی ها به غیر از GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "دادن مجوز برای حذف اطلاعات." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "دادن مجوز برای ساخت پایگاه داده و جدول جدید." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "دادن مجوز برای حذف پایگاه داده و جدول ها." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "دادن اجازه برای وارد و خارج کردن اطلاعات از فایل ها." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "دادن مجوز برای تغییر ساختار جدول های ایجاد شده ." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "دادن مجوز برای ایجاد جدول موقت." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "دادن مجوز برای ایجاد نمایه جدید." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "دادن مجوز برای قرار دهی رویداد برای لیست رویدادهای زمانی" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "دادن مجوز برای ایجاد روال ." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "دادن مجوز برای تغییر یا حذف روال های ذخیره شده." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "دادن مجوز برای ایجاد , حذف و تغییر نام کاربران." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "خير" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "نكته : نام امتيازات MySQL به زبان انگليسي بيان مي‌شود" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "مدیریت" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "دادن مجوز برای ایجاد جدول جدید." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"دادن اجازه برای ایجاد کاربران و اعطای امتیازات بدون بارگذاری اطلاعات جداول." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "اطلاعات ورود" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "عدم تغيير اسم رمز" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "شما امتيازات %s را ابطال كرديد" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "كاربر" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +#, fuzzy +msgid "Grant" +msgstr "چاپ" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "نمای %s حذف گرديد." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "همه" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "هيچ كاربري وچود ندارد." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "ويرايش امتيازات" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "ابطال" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "صدور" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "امتيازات %s به هنگام گرديد." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "امتيازات" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "امتيازات" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "شما يك كاربر جديد اضافه كرديد." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -8572,11 +9041,11 @@ msgstr "تقویم" msgid "Columns" msgstr "نام ستونها" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8857,12 +9326,6 @@ msgstr "نسخه سرور" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "كاربر" - #: main.php:217 #, fuzzy #| msgid "Remove database" @@ -9376,436 +9839,20 @@ msgstr "اعتبار" msgid "disabled" msgstr "غيرفعال" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "وارد کردن تمام دسترسی ها به غیر از GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "دادن مجوز برای تغییر ساختار جدول های ایجاد شده ." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "دادن مجوز برای تغییر یا حذف روال های ذخیره شده." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "دادن مجوز برای ساخت پایگاه داده و جدول جدید." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "دادن مجوز برای ایجاد روال ." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "دادن مجوز برای ایجاد جدول جدید." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "دادن مجوز برای ایجاد جدول موقت." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "دادن مجوز برای ایجاد , حذف و تغییر نام کاربران." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "دادن مجوز برای ایجاد نمایه جدید." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "دادن مجوز برای حذف اطلاعات." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "دادن مجوز برای حذف پایگاه داده و جدول ها." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "دادن مجوز برای قرار دهی رویداد برای لیست رویدادهای زمانی" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "دادن اجازه برای وارد و خارج کردن اطلاعات از فایل ها." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"دادن اجازه برای ایجاد کاربران و اعطای امتیازات بدون بارگذاری اطلاعات جداول." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -#, fuzzy -msgid "No privileges." -msgstr "امتيازات" - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "خير" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "نكته : نام امتيازات MySQL به زبان انگليسي بيان مي‌شود" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "مدیریت" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "اطلاعات ورود" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "عدم تغيير اسم رمز" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "هيچ كاربري وچود ندارد." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "شما يك كاربر جديد اضافه كرديد." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "امتيازات %s به هنگام گرديد." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "شما امتيازات %s را ابطال كرديد" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "در حال پاک کردن %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "ويرايش امتيازات" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "ابطال" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "صدور" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "همه" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "امتيازات" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "امتيازات" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -#, fuzzy -msgid "Grant" -msgstr "چاپ" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "نمای %s حذف گرديد." - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11396,41 +11443,41 @@ msgstr "" msgid "Wrong data" msgstr "No databases" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "آيا مطمئن هستيد " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "معتبرسازي SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "نتيجه SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "توليد‌شده توسط" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" @@ -12475,7 +12522,6 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:188 -#| msgid "Space usage" msgid "Query cache max size" msgstr " حداکثر اندازه حافظه پنهان جست جو" diff --git a/po/fi.po b/po/fi.po index 8a3abb7495..2b52f3f6f3 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-06-24 00:18+0200\n" "Last-Translator: Jukka Penttinen \n" "Language-Team: finnish \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Näytä kaikki" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Etsi" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Etsi" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Suorita" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Tietokanta %1$s on luotu." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Tietokannan kommentti: " @@ -120,17 +123,17 @@ msgstr "Tietokannan kommentti: " msgid "Table comments" msgstr "Taulun kommentit" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Sarake" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tyyppi" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Tyhjä" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Tyhjä" msgid "Default" msgstr "Oletusarvo" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Viittaa sarakkeeseen" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Kommentit" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ei" @@ -242,19 +248,22 @@ msgstr "Ei" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Kyllä" @@ -262,8 +271,8 @@ msgstr "Kyllä" msgid "View dump (schema) of database" msgstr "Tee vedos tietokannasta" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Tietokannassa ei ole tauluja." @@ -279,74 +288,74 @@ msgstr "Poista valinta kaikista" msgid "The database name is empty!" msgstr "Tietokannan nimi on tyhjä!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Tietokannan %1$s nimi on nyt %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Tietokanta %1$s on kopioitu tietokantaan %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Muuta tietokannan nimeksi" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Tuhoa tietokanta" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Tietokanta %s on poistettu." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Tuhoa tietokanta (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Luo tietokannasta toinen tietokanta nimellä" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Vain rakenne" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Rakenne ja tiedot" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Vain tiedot" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Suorita CREATE DATABASE ennen kopiointia" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Lisää %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Lisää rajoitteet" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Siirry kopioituun tietokantaan" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Siirry kopioituun tietokantaan" msgid "Collation" msgstr "Aakkosjärjestys" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "phpMyAdminin asetusmuisti on poistettu käytöstä. Katso %slisätietoja%s, " "mistä tämä johtuu." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Relaatioskeeman muokkaus tai vienti" @@ -375,16 +384,18 @@ msgstr "Relaatioskeeman muokkaus tai vienti" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Taulu" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Kpl rivejä" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Koko" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "käytössä" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Luotu" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Viimeksi päivitetty" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -429,92 +440,15 @@ msgid_plural "%s tables" msgstr[0] "%s taulu" msgstr[1] "%s taulua" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Valitse vähintään yksi sarake" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Nouseva" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Laskeva" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Järjestä" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Näytä" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Hakuehdot" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Lisää tai poista hakuehtoja" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Lisää tai poista sarakkeita" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Päivitä kysely" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Käytä tauluja" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Tai" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Ja" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Lisää" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Poista" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Muokkaa" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Vaihda %svisuaaliseen muokkaimeen%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Suorita SQL-kysely tietokannassa %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Suorita kysely" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -555,7 +489,7 @@ msgstr "Seuranta on käytössä." msgid "Tracking is not active." msgstr "Seuranta ei ole käytössä." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Valitut:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Valitse kaikki" @@ -606,31 +541,32 @@ msgstr "Valitse kaikki" msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Vienti" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Tyhjennä" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "Seurattavat taulut" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Tietokanta" @@ -702,18 +639,26 @@ msgstr "Päivitetty" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Tila" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Toiminnot" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Näytä" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Poista tämän taulun seurantatiedot" @@ -754,20 +699,20 @@ msgstr "Tietokantaloki" msgid "Bad type!" msgstr "Virheellinen tyyppi!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Valittu vientityyppi on tallennettava tiedostoon!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Virheelliset parametrit!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Liian vähän tilaa tiedoston %s tallentamiseen." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -775,12 +720,12 @@ msgstr "" "Tiedosto %s on jo olemassa palvelimella, vaihda tiedostonimeä tai tarkista " "korvausasetuksen tila." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Palvelimella ei ole lupaa tallentaa tiedostoa %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Vedos tallennettiin tiedostoon %s." @@ -803,7 +748,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometria" @@ -876,7 +821,7 @@ msgstr "" "Valitse \"Toiminto\"-sarakkeesta \"GeomFromText\" ja liitä alla oleva " "merkkijono \"Arvo\"-kenttään" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -885,20 +830,20 @@ msgstr "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Kirjanmerkki on poistettu." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Tiedostoa ei voi lukea" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -909,7 +854,7 @@ msgstr "" "kyseiselle muodolle ei joko ole toteutettu, tai se on asetuksin poistettu " "käytöstä." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,26 +863,26 @@ msgstr "" "Tuotavia tietoja ei ole. Tiedostonimeä ei joko annettu tai tiedoston koko " "ylitti PHP:n asetusten salliman enimmäiskoon. Katso FAQ 1.16." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Tiedoston merkistöä ei voida muuttaa ilman merkistökirjastoa" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Kirjanmerkki %s luotu" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Tuonti onnistui, %d kyselyä suoritettu." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -945,7 +890,7 @@ msgstr "" "Skriptin suoritus aikakatkaistiin. Jos haluat suorittaa tuonnin loppuun, " "lähetä sama tiedosto uudestaan, ja tuonti jatkuu." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -954,8 +899,8 @@ msgstr "" "tarkoittaa yleensä sitä, että phpMyAdmin ei voi ajaa tätä tuontia loppuun " "asti ellei PHP:n suoritusaikarajaa nosteta." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -970,7 +915,7 @@ msgstr "Takaisin" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "PhpMyAdmin toimii parhaiten kehyksiä tukevalla selaimella." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." @@ -979,7 +924,7 @@ msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." msgid "Do you really want to execute \"%s\"?" msgstr "Haluatko varmasti suorittaa \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" @@ -1037,16 +982,20 @@ msgstr "Palvelimen nimi puuttuu!" msgid "The user name is empty!" msgstr "Käyttäjän nimi puuttuu!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Salasana puuttuu!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Lisää käyttäjä" @@ -1066,9 +1015,9 @@ msgstr "Sulje" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1314,12 +1263,13 @@ msgstr "Lisää taulukko ruudukkoon" msgid "Please add at least one variable to the series" msgstr "Lisää sarjaan vähintään yksi muuttuja" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Ei mitään" @@ -1501,10 +1451,10 @@ msgid "Explain output" msgstr "Selitä SQL-kysely" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Aika" @@ -1798,7 +1748,7 @@ msgstr "Näytä kyselykenttä" msgid "No rows selected" msgstr "Ei yhtään riviä valittu" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Muokkaa" @@ -1807,8 +1757,8 @@ msgstr "Muokkaa" msgid "Query execution time" msgstr "Kyselyn suoritusaika" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d on virheellinen rivinumero." @@ -1879,7 +1829,7 @@ msgstr "Tietopisteen sisältö" msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopioi" @@ -2366,14 +2316,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Virhe" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-kysely" @@ -2384,7 +2334,7 @@ msgstr "SQL-kysely" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2413,6 +2363,10 @@ msgstr "Ilman PHP-koodia" msgid "Create PHP Code" msgstr "Luo PHP-koodi" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Suorita kysely" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2437,7 +2391,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Muokkaus" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profilointi" @@ -2464,14 +2418,14 @@ msgstr "Puuttuva parametri:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Aloitus" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2479,7 +2433,7 @@ msgstr "Edellinen sivu" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2487,7 +2441,7 @@ msgstr "Seuraava sivu" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Viimeinen sivu" @@ -2508,16 +2462,17 @@ msgstr "Vaihda painamalla" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Rakenne" @@ -2525,21 +2480,20 @@ msgstr "Rakenne" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Lisää rivi" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Selaa" @@ -2560,21 +2514,21 @@ msgstr "Selaa tietokonettasi:" msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Lähetettäviä tiedostoja ei ole" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Suorita" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Tulosta" @@ -2593,6 +2547,74 @@ msgstr "" msgid "Font size" msgstr "Fonttikoko" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Nouseva" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Laskeva" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Järjestä" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Hakuehdot" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Lisää tai poista hakuehtoja" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Lisää tai poista sarakkeita" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Päivitä kysely" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Käytä tauluja" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Tai" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Ja" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Lisää" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Poista" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Muokkaa" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Suorita SQL-kysely tietokannassa %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "vähintään yksi sanoista" @@ -2635,8 +2657,8 @@ msgstr[1] "%1$s hakutulosta taulussa %2$s" msgid "Delete the matches for the %s table?" msgstr "Poista taulusta %s löytyneet tulokset?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2671,64 +2693,64 @@ msgstr "Tauluissa:" msgid "Inside column:" msgstr "Sarakkeen sisällä:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Tallenna muokatut tiedot" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Palauta sarakkeiden järjestys" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Aloitusrivi" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Rivien määrä" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Tila" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "vaakatasossa" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "vaakatasossa (kierretyt otsikot)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "pystysuorassa" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Otsikot joka %s rivi" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Lajittele avaimen mukaan" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2741,105 +2763,105 @@ msgstr "Lajittele avaimen mukaan" msgid "Options" msgstr "Valinnat" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Osittaiset tekstit" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Koko tekstit" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relaatioavain" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relaationäyttökenttä" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Näytä binäärisisältö" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Näytä BLOB-sisältö" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Näytä binaarisisältö heksamuodossa" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "piilota webselaimen muunnos" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Rivi on poistettu" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Lopeta" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Saattaa olla summittainen. Katso FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "lauseessa" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Näkyvillä rivit" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "yhteensä" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Kysely kesti %01.4f s." -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Näytä kaavio" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Luo näkymä" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Linkkiä ei löydy" @@ -2963,8 +2985,8 @@ msgstr "" "poistaa." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Tietokannat" @@ -2980,11 +3002,11 @@ msgid "Tracking" msgstr "Seuranta" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Herättimet" @@ -3002,9 +3024,9 @@ msgstr "Tietokanta on tyhjä!" msgid "Query" msgstr "Haku" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Käyttöoikeudet" @@ -3013,7 +3035,7 @@ msgid "Routines" msgstr "Rutiinit" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Tapahtumat" @@ -3110,43 +3132,43 @@ msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella." msgid "This MySQL server does not support the %s storage engine." msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "tuntematon taulun tila: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Lähdetietokanta '%s' ei löytynyt!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Kohde tietokantaa '%s' ei löydy!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Virheellinen tietokanta" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Virheellinen taulun nimi" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Virhe annettaessa taululle %1$s nimeä %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Taulu %1$s on nimeltään %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Taulun käyttöliittymäasetuksia ei voitu tallentaa" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3155,7 +3177,7 @@ msgstr "" "Taulun käyttöliittymäasetuksia ei voitu siivota (katso $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3167,7 +3189,7 @@ msgstr "" "muuttunut." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funktio" @@ -3179,7 +3201,7 @@ msgstr "Operaattori" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3218,7 +3240,7 @@ msgid "Maximum rows to plot" msgstr "Tulostettavien rivien enimmäismäärä" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Selaa viitearvoja" @@ -3587,7 +3609,7 @@ msgstr "jaettu" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Taulut" @@ -3598,9 +3620,10 @@ msgstr "Taulut" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Tietoa" @@ -3717,32 +3740,32 @@ msgid "Disabled" msgstr "Pois päältä" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "rakenne" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "tiedot" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "rakenne ja tiedot" @@ -4163,13 +4186,13 @@ msgstr "Pakkaus" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Aseta sarakkeiden nimet ensimmäiselle riville" @@ -4192,7 +4215,6 @@ msgstr "Koodinvaihtomerkki" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL-merkin korvaa" @@ -4232,23 +4254,22 @@ msgstr "Taulunimen pohja" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Luo tauluvedos" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Sisällytä taulun otsikko" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Taulun otsikko" @@ -4257,14 +4278,14 @@ msgid "Continued table caption" msgstr "Jatkettu taulun otsikko" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Tunniste" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-tyyppi" @@ -4301,7 +4322,7 @@ msgid "SQL compatibility mode" msgstr "SQL-yhteensopiva tila" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE -valinnat:" @@ -4314,7 +4335,7 @@ msgid "Use delayed inserts" msgstr "Käytä viivästettyjä lisäyslauseita" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Älä tarkista viiteavaimia" @@ -4331,7 +4352,7 @@ msgid "Syntax to use when inserting data" msgstr "Tietoa lisättäessä käytettävä syntaksi" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Luodun kyselyn enimmäispituus" @@ -4340,7 +4361,7 @@ msgid "Export type" msgstr "Viennin tyyppi" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Lisää transaktio" @@ -4395,7 +4416,6 @@ msgstr "Mukauta oletusvalintoja" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4454,7 +4474,6 @@ msgid "Set import and export directories and compression options" msgstr "Aseta tuonti- ja vientihakemistot sekä pakkauksen asetukset" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4674,7 +4693,6 @@ msgid "Customize text input fields" msgstr "Muokkaa tekstikenttiä" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy!-teksti" @@ -5851,9 +5869,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Salasana" @@ -6023,7 +6043,6 @@ msgstr "CSV käyttäen LOAD DATA -kyselyä" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document -laskentataulukko" @@ -6045,19 +6064,16 @@ msgstr "Tietokannan tulostusvalinnat" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excelin CSV-muoto" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document -teksti" @@ -6114,7 +6130,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6122,19 +6138,19 @@ msgstr "" "Palvelin ei vastaa (tai paikallisen palvelimen pistokke ei ole määritelty " "oikein)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Palvelin ei vastaa." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Lisätiedot..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6146,13 +6162,15 @@ msgid "Change password" msgstr "Vaihda salasana" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Ei salasanaa" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Kirjoita uudelleen" @@ -6173,8 +6191,9 @@ msgstr "Luo tietokanta" msgid "Create" msgstr "Luo" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Ei käyttöoikeuksia" @@ -6184,12 +6203,12 @@ msgid "Create table" msgstr "Luo taulu" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nimi" @@ -6326,7 +6345,7 @@ msgid "View output as text" msgstr "Näytä tulos tekstinä" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Muoto:" @@ -6831,59 +6850,59 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "GIS visualisoinnille ei ole tietoja." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "näyttää rakenteen sisällön painamalla sen nimeä" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Siirry tietokantaan" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Kohteesta %s puuttuu tiedot" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Siirry tauluun" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Vain rakenne" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" @@ -6959,11 +6978,11 @@ msgstr "" "Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy " "siirtymään minne suuntaan tahansa." -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" @@ -7217,7 +7236,7 @@ msgstr "phpMyAdminin ohjeet" msgid "Reload navigation frame" msgstr "Lataa navigointikehys uudelleen" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7337,97 +7356,97 @@ msgstr "Kelvollista todennusavainta ei ole asetettu" msgid "Authenticating..." msgstr "Todennetaan..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Sarakkeiden erotin:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Sarakkeiden rajausmerkki" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Koodinvaihtomerkki" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Rivien lopetusmerkki:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Korvaa NULL-merkki:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Poista sarakkeista CR/LF-merkit" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel-muotoilu:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Tiedon vedostusasetukset" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Vedos taulusta" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Tapahtuma" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Määritys" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Rakenne taululle" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Näkymän rakenne" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Näkymän vararakenne" @@ -7443,240 +7462,231 @@ msgstr "(jatkuu)" msgid "Structure of table @TABLE@" msgstr "Taulun @TABLE@ rakenne" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Objektin luontivaihtoehdot" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Taulun otsikko (jatkuu)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Näytä viiteavaimien suhteet" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Näytä kommentit" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Näytä MIME-tyypit" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Palvelin" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Luontiaika" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Palvelimen versio" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP:n versio" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki-taulu" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Vie taulujen nimet" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Vie taulun otsikot" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Luo raportin, joka sisältää yhden taulun tiedot)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Raportin otsikko:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP-taulukko" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Lisää oma kommentti otsikkoon (\\n on rivinvaihto):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Lisää %s lauseke" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Lisää lausekkeet:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Objektin luontivaihtoehdot" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Proseduurit" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funktiot" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Rajoitteet taululle" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYYPIT TAULULLE" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELAATIOT TAULULLE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Sallii tietojen lukemisen." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Näkymät" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Vie sisällöt" @@ -7746,6 +7756,10 @@ msgstr "Sarakkeiden nimet" msgid "This plugin does not support compressed imports!" msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki-taulu" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7812,6 +7826,10 @@ msgstr "SQL-yhteensopiva tila" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8080,11 +8098,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "ei kuvausta" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Poista valinta kaikista" @@ -8106,9 +8125,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Käyttäjänimi" @@ -8145,34 +8165,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Lisää alikahdennuksen käyttäjä" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Kuka tahansa käyttäjä" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Käytä tekstikenttää" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Mikä tahansa palvelin" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Paikallinen" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Tämä isäntä" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Käytä isäntätaulua" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8188,7 +8217,7 @@ msgstr "Keksi salasana" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8229,8 +8258,8 @@ msgid "Edit event" msgstr "Muokkaa palvelinta" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" @@ -8321,7 +8350,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8470,26 +8500,26 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Sallii talletettujen rutiinien suorittamisen." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Sallii talletettujen rutiinien suorittamisen." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8660,29 +8690,29 @@ msgstr "Tietokannassa ei ole tauluja." msgid "There are no events to display." msgstr "Lähetettäviä tiedostoja ei ole" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Taulua \"%s\" ei ole!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Määrittele koordinaatit taululle %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8830,6 +8860,467 @@ msgstr "Tuntematon kieli: %1$s." msgid "Current Server" msgstr "Nykyinen palvelin" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Ei käyttöoikeuksia." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Sallii tietojen lukemisen." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Sallii tietojen lisäämisen ja korvaamisen." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Sallii tietojen muuttamisen." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Sallii tietojen poistamisen." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Sallii uusien tietokantojen ja taulujen luomisen." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Sallii tietokantojen ja taulujen poistamisen." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin " +"tyhjentämisen." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Sallii palvelimen sammuttamisen." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Sallii tietojen tuomisen ja viemisen." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Sallii indeksien luomisen ja poistamisen." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Sallii koko tietokantaluettelon käytön." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Sallii yhteydenmuotostamisen silloinkin kun yhteyksien enimmäismäärä on " +"saavutettu; Tarvitaan useissa pääkäyttäjän toiminnoissa kuten globaalien " +"muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Sallii tilapäisten taulujen luomisen." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Tarvitaan kahdennusta käyttävissä alipalvelimissa." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Sallii uusien näkymien luomisen." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Sallii talletettujen rutiinien luomisen." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Sallii talletettujen rutiinien suorittamisen." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Ei mitään" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Resurssirajoitukset" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Rajoittaa käyttäjän tunnissa palvelimelle lähettämien kyselyjen määrän." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Rajoittaa, kuinka monta monta kertaa käyttäjä saa suorittaa tauluihin tai " +"tietokantoihin muutoksia tekeviä komentoja tunnin aikana." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Rajoittaa käyttäjän tunnissa luomien uusien yhteyksien määrän." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Taulukohtaiset käyttöoikeudet" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Hallinta" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globaalit käyttöoikeudet" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Tietokantakohtaiset käyttöoikeudet" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Sallii uusien taulujen luomisen." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Sallii taulujen poistamisen." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Sallii käyttäjien ja käyttöoikeuksien lisäämisen lataamatta " +"käyttöoikeustauluja uudestaan." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Kirjautumistiedot" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Älä vaihda salasanaa" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Käyttäjän %s salasanan vaihto onnistui." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Käyttäjän %s käyttöoikeudet on poistettu" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Tietokanta käyttäjälle" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" +"Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Anna tietokannalle "%s" kaikki oikeudet" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Käyttäjä" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Valtuudet (GRANT)" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Näkymä %s on poistettu" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Mikä tahansa" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globaali" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "tietokantakohtainen" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "korvausmerkki" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Käyttäjiä ei ole." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Muokkaa käyttöoikeuksia" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Pura käyttöoikeudet" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Vienti" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... säilytä vanha käyttäjä." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... poista vanha käyttäjä käyttäjätauluista." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " +"käyttäjä sen jälkeen." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen " +"käyttöoikeudet." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Sarakekohtaiset käyttöoikeudet" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Korvausmerkkien _ ja % eteen on lisättävä \\-merkki, jotta ne näkyisivät " +"oikein" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Lisää käyttöoikeudet seuraavaan tauluun" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Poista valitut käyttäjät" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Ladataan käyttöoikeuksia uudelleen" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Valitsemiesi käyttäjien poisto onnistui." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Käyttäjän %s käyttöoikeudet on päivitetty." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Käyttöoikeudet" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Käyttöoikeudet" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Käyttäjien yleiskatsaus" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen " +"käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen " +"käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " +"Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Uusi käyttäjä lisätty." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Lähdetietokanta" @@ -8876,11 +9367,11 @@ msgstr "Tyhjennä" msgid "Columns" msgstr "Sarakkeet" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" @@ -9186,12 +9677,6 @@ msgstr "Näytä versiot" msgid "Protocol version" msgstr "Protokollan versio" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Käyttäjä" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -9761,457 +10246,20 @@ msgstr "Lisenssi" msgid "disabled" msgstr "Pois päältä" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Sallii uusien tietokantojen ja taulujen luomisen." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Sallii talletettujen rutiinien luomisen." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Sallii uusien taulujen luomisen." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Sallii tilapäisten taulujen luomisen." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Sallii uusien näkymien luomisen." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Sallii tietojen poistamisen." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Sallii tietokantojen ja taulujen poistamisen." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Sallii taulujen poistamisen." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Sallii talletettujen rutiinien suorittamisen." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Sallii tietojen tuomisen ja viemisen." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Sallii käyttäjien ja käyttöoikeuksien lisäämisen lataamatta " -"käyttöoikeustauluja uudestaan." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Sallii indeksien luomisen ja poistamisen." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Sallii tietojen lisäämisen ja korvaamisen." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Rajoittaa käyttäjän tunnissa luomien uusien yhteyksien määrän." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Rajoittaa käyttäjän tunnissa palvelimelle lähettämien kyselyjen määrän." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Rajoittaa, kuinka monta monta kertaa käyttäjä saa suorittaa tauluihin tai " -"tietokantoihin muutoksia tekeviä komentoja tunnin aikana." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin " -"tyhjentämisen." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Tarvitaan kahdennusta käyttävissä alipalvelimissa." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Sallii tietojen lukemisen." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Sallii koko tietokantaluettelon käytön." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Sallii palvelimen sammuttamisen." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Sallii yhteydenmuotostamisen silloinkin kun yhteyksien enimmäismäärä on " -"saavutettu; Tarvitaan useissa pääkäyttäjän toiminnoissa kuten globaalien " -"muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Sallii tietojen muuttamisen." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Ei käyttöoikeuksia." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Ei mitään" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Taulukohtaiset käyttöoikeudet" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Hallinta" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globaalit käyttöoikeudet" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Tietokantakohtaiset käyttöoikeudet" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Resurssirajoitukset" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Kirjautumistiedot" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Älä vaihda salasanaa" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Käyttäjiä ei ole." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Käyttäjä %s on jo olemassa!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Uusi käyttäjä lisätty." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Käyttäjän %s käyttöoikeudet on päivitetty." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Käyttäjän %s käyttöoikeudet on poistettu" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Käyttäjän %s salasanan vaihto onnistui." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Poistetaan: %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Ladataan käyttöoikeuksia uudelleen" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Valitsemiesi käyttäjien poisto onnistui." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Muokkaa käyttöoikeuksia" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Pura käyttöoikeudet" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Vienti" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Mikä tahansa" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Käyttöoikeudet" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Käyttöoikeudet" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Käyttäjien yleiskatsaus" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Valtuudet (GRANT)" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Poista valitut käyttäjät" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen " -"käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen " -"käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " -"Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Sarakekohtaiset käyttöoikeudet" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Korvausmerkkien _ ja % eteen on lisättävä \\-merkki, jotta ne näkyisivät " -"oikein" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Lisää käyttöoikeudet seuraavaan tauluun" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... säilytä vanha käyttäjä." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... poista vanha käyttäjä käyttäjätauluista." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " -"käyttäjä sen jälkeen." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen " -"käyttöoikeudet." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Tietokanta käyttäjälle" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" -"Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Anna tietokannalle "%s" kaikki oikeudet" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globaali" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "tietokantakohtainen" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "korvausmerkki" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Näkymä %s on poistettu" - #: server_replication.php:82 msgid "Unknown error" msgstr "Tuntematon virhe" @@ -12086,41 +12134,41 @@ msgstr "" msgid "Wrong data" msgstr "Ei tietokantoja" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Haluatko varmasti " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Näytetään PHP-koodina" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Tarkista SQL-lause" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-kyselyn tulos" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Luontiympäristö" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Tunniste" @@ -14016,6 +14064,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Enim. yhtäaikaisia yhteyksiä" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP-taulukko" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/fr.po b/po/fr.po index e6db962929..a5688a31e0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-01 23:12+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: none\n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Tout afficher" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Rechercher" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Rechercher" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Exécuter" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "La base de données %1$s a été créée." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Commentaire sur la base de données: " @@ -121,17 +124,17 @@ msgstr "Commentaire sur la base de données: " msgid "Table comments" msgstr "Commentaires sur la table" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Colonne" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Type" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Null" msgid "Default" msgstr "Défaut" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Relié à" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Commentaires" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Non" @@ -243,19 +249,22 @@ msgstr "Non" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Oui" @@ -263,8 +272,8 @@ msgstr "Oui" msgid "View dump (schema) of database" msgstr "Voir une exportation (schéma) de la base de données" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Aucune table n'a été trouvée dans cette base." @@ -280,74 +289,74 @@ msgstr "Tout désélectionner" msgid "The database name is empty!" msgstr "Le nom de la base de données est vide !" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "La base de données %1$s a été renommée en %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "La base de données %1$s a été copiée sur %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Changer le nom de la base de données pour" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Supprimer la base de données" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "La base de données %s a été effacée." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Supprimer la base de données (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Copier la base de données vers" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Structure seule" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Structure et données" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Données seulement" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Faire CREATE DATABASE avant la copie" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Ajouter %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Inclure les contraintes de clés étrangères" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Aller à la base de données copiée" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "Aller à la base de données copiée" msgid "Collation" msgstr "Interclassement" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -366,7 +375,7 @@ msgstr "" "Le stockage de configurations phpMyAdmin a été désactivé. Pour une analyse " "du problème, cliquez %sici%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Éditer ou exporter un schéma relationnel" @@ -376,16 +385,18 @@ msgstr "Éditer ou exporter un schéma relationnel" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Table" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Lignes" @@ -395,13 +406,13 @@ msgid "Size" msgstr "Taille" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "utilisé" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -409,7 +420,7 @@ msgstr "Création" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -417,7 +428,7 @@ msgstr "Dernière modification" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -430,92 +441,15 @@ msgid_plural "%s tables" msgstr[0] "%s table" msgstr[1] "%s tables" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Vous devez choisir au moins une colonne à afficher" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Croissant" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Décroissant" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Tri" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Afficher" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Critère" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Ajouter/effacer des lignes" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Ajouter/effacer des colonnes" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Mise-à-jour de la requête" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Utiliser les tables" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Ou" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Et" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ajouter" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Effacer" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modifier" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Passer au %smode visuel%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Requête SQL sur la base %s : " - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Exécuter la requête" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -556,7 +490,7 @@ msgstr "Le suivi est actif." msgid "Tracking is not active." msgstr "Le suivi n'est pas activé." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -586,20 +520,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Pour la sélection : " #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Tout cocher" @@ -607,31 +542,32 @@ msgstr "Tout cocher" msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporter" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Vider" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -675,17 +611,18 @@ msgstr "Tables faisant l'objet d'un suivi" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Base de données" @@ -703,18 +640,26 @@ msgstr "Mis à jour" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "État" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Action" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Afficher" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Supprimer les données de suivi de cette table" @@ -755,20 +700,20 @@ msgstr "Journal de la base de données" msgid "Bad type!" msgstr "Type incorrect !" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Ce choix d'exportation doit être sauvegardé dans un fichier !" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Paramètres incorrects !" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espace-disque insuffisant pour enregistrer le fichier %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -776,14 +721,14 @@ msgstr "" "Le fichier %s existe déjà sur le serveur, veuillez changer le nom, ou cocher " "l'option d'écrasement des fichiers existants." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" "Le serveur web n'a pas les permissions nécessaires pour enregistrer le " "fichier %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Le fichier d'exportation a été sauvegardé sous %s." @@ -806,7 +751,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Géométrie" @@ -879,7 +824,7 @@ msgstr "" "Choisissez «GeomFromText» dans la colonne «Fonction» et collez la chaîne " "dans le champ «Valeur»" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -889,20 +834,20 @@ msgstr "" "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " "cette limite." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Le signet a été effacé." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Le fichier n'a pu être lu" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -912,7 +857,7 @@ msgstr "" "Vous avez tenté d'importer un fichier dont le mode de compression (%s) n'est " "pas supporté par votre configuration PHP ou est désactivé dans celle-ci." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -923,28 +868,28 @@ msgstr "" "par votre configuration de PHP. Voir [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Conversion de caractères impossible sans bibliothèque de conversion" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation !" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "L'importation s'est terminée avec succès, %d requêtes exécutées." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -952,7 +897,7 @@ msgstr "" "La limite de temps a été atteinte; si vous voulez terminer l'importation, " "soumettez à nouveau le même fichier et l'importation continuera." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -961,8 +906,8 @@ msgstr "" "signifie que phpMyAdmin ne pourra terminer cette importation, à moins que la " "limite de temps de PHP ne soit augmentée." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -979,7 +924,7 @@ msgstr "" "phpMyAdmin est plus convivial avec un navigateur supportant les cadres." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." @@ -988,7 +933,7 @@ msgstr "La commande «DROP DATABASE» est désactivée." msgid "Do you really want to execute \"%s\"?" msgstr "Voulez-vous vraiment exécuter «%s» ?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" @@ -1046,16 +991,20 @@ msgstr "Le nom de serveur est vide !" msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide !" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Le mot de passe est vide !" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Ajouter un utilisateur" @@ -1075,9 +1024,9 @@ msgstr "Fermer" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1323,12 +1272,13 @@ msgstr "Ajouter graphique à la grille" msgid "Please add at least one variable to the series" msgstr "Veuillez ajouter au moins une variable à la série" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Aucune" @@ -1513,10 +1463,10 @@ msgid "Explain output" msgstr "Expliquer les résultats" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Moment" @@ -1808,7 +1758,7 @@ msgstr "Montrer zone SQL" msgid "No rows selected" msgstr "Aucune ligne n'a été sélectionnée" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Modifier" @@ -1817,8 +1767,8 @@ msgstr "Modifier" msgid "Query execution time" msgstr "Durée d'exécution de la requête" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d n'est pas un numéro de ligne valable." @@ -1892,7 +1842,7 @@ msgstr "Données reliées à ce point" msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Copier" @@ -2382,14 +2332,14 @@ msgid "en" msgstr "fr" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Erreur" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Requête SQL" @@ -2400,7 +2350,7 @@ msgstr "Requête SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2429,6 +2379,10 @@ msgstr "Sans source PHP" msgid "Create PHP Code" msgstr "Créer source PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Exécuter la requête" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2453,7 +2407,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En ligne" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profilage" @@ -2480,14 +2434,14 @@ msgstr "Paramètre manquant : " #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Début" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2495,7 +2449,7 @@ msgstr "Précédent" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2503,7 +2457,7 @@ msgstr "Suivant" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Fin" @@ -2524,16 +2478,17 @@ msgstr "Cliquer pour basculer" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Structure" @@ -2541,21 +2496,20 @@ msgstr "Structure" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insérer" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Afficher" @@ -2577,21 +2531,21 @@ msgid "Select from the web server upload directory %s:" msgstr "" "Choisissez depuis le répertoire de téléchargement du serveur web %s : " -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Aucun fichier n'est disponible pour le transfert" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Exécuter" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Imprimer" @@ -2610,6 +2564,74 @@ msgstr "" msgid "Font size" msgstr "Taille du texte" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Croissant" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Décroissant" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Tri" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Critère" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Ajouter/effacer des lignes" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Ajouter/effacer des colonnes" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Mise-à-jour de la requête" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Utiliser les tables" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Ou" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Et" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ajouter" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Effacer" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modifier" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Requête SQL sur la base %s : " + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "au moins un mot" @@ -2650,8 +2672,8 @@ msgstr[1] "%1$s correspondances dans %2$s" msgid "Delete the matches for the %s table?" msgstr "Supprimer de la table %s les occurences ?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2686,64 +2708,64 @@ msgstr "Dans les tables : " msgid "Inside column:" msgstr "Dans la colonne : " -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Sauvegarder les données modifiées" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Restaurer l'ordre des colonnes" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Ligne de départ" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Nombre de lignes" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Mode" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontal (en-têtes pivotés)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "En-têtes à chaque %s ligne" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Trier sur l'index" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2756,60 +2778,60 @@ msgstr "Trier sur l'index" msgid "Options" msgstr "Options" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Textes réduits" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Textes complets" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relations : clés" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Relations : colonnes descriptives" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Montrer le contenu binaire" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Montrer le contenu BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Montrer le contenu binaire en hexadécimal" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Masquer les transformations" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "La ligne a été effacée" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Supprimer" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2817,44 +2839,44 @@ msgstr "" "Peut être approximatif. Voir [a@./Documentation.html#faq3_11@Documentation]" "FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "dans la requête" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Affichage des lignes" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Version imprimable (avec textes complets)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Visualiser les données GIS" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Créer une vue" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Lien absent" @@ -2981,8 +3003,8 @@ msgstr "" "supprimé." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Bases de données" @@ -2998,11 +3020,11 @@ msgid "Tracking" msgstr "Suivi" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Déclencheurs" @@ -3020,9 +3042,9 @@ msgstr "La base de données semble vide !" msgid "Query" msgstr "Requête" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilèges" @@ -3031,7 +3053,7 @@ msgid "Routines" msgstr "Procédures stockées" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Événements" @@ -3129,43 +3151,43 @@ msgstr "%s a été désactivé sur ce serveur MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "Statut de table incorrect : " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "La base de données source `%s` n'existe pas !" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "La base de données cible `%s` n'existe pas !" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Nom de base de données invalide" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Nom de table invalide" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Erreur lors du renommage de %1$s en %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La table %1$s se nomme maintenant %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Impossible de sauvegarder les préférences d'interface de tables" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3174,7 +3196,7 @@ msgstr "" "Echec lors de la tentative de vidage de la table UI Préférences (voir $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3186,7 +3208,7 @@ msgstr "" "la structure de la table a changé." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Fonction" @@ -3198,7 +3220,7 @@ msgstr "Opérateur" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3237,7 +3259,7 @@ msgid "Maximum rows to plot" msgstr "Nombre maximum de lignes de données à utiliser pour le graphique" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" @@ -3660,7 +3682,7 @@ msgstr "partagé" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tables" @@ -3671,9 +3693,10 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Données" @@ -3795,32 +3818,32 @@ msgid "Disabled" msgstr "Désactivé" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "structure" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "données" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "structure et données" @@ -4246,13 +4269,13 @@ msgstr "Compression" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Afficher les noms de colonnes en première ligne" @@ -4275,7 +4298,6 @@ msgstr "Caractère d'échappement" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Remplacer NULL par" @@ -4315,23 +4337,22 @@ msgstr "Modèle de nom de table" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Exporter la table" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Inclure les sous-titres" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Sous-titre de la table" @@ -4340,14 +4361,14 @@ msgid "Continued table caption" msgstr "Inclure les sous-titres" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Clé de l'étiquette" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Type MIME" @@ -4384,7 +4405,7 @@ msgid "SQL compatibility mode" msgstr "Mode de compatibilité SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Options pour CREATE TABLE : " @@ -4397,7 +4418,7 @@ msgid "Use delayed inserts" msgstr "Insertions avec délai" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Désactiver la vérification des clés étrangères" @@ -4414,7 +4435,7 @@ msgid "Syntax to use when inserting data" msgstr "Syntaxe à utiliser lors de l'insertion de données" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Taille maximum de la requête générée" @@ -4423,7 +4444,7 @@ msgid "Export type" msgstr "Type d'exportation" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Utiliser le mode transactionnel" @@ -4480,7 +4501,6 @@ msgstr "Personnaliser les options par défaut" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4541,7 +4561,6 @@ msgstr "" "options de compression" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4770,7 +4789,6 @@ msgid "Customize text input fields" msgstr "Personnaliser les champs de saisie" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texte Texy" @@ -5971,9 +5989,11 @@ msgstr "Requiert que le validateur SQL soit activé" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Mot de passe" @@ -6155,7 +6175,6 @@ msgstr "CSV via LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" @@ -6177,19 +6196,16 @@ msgstr "Options d'exportation des bases de données" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV pour MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Texte Open Document" @@ -6246,7 +6262,7 @@ msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." msgid "possible deep recursion attack" msgstr "possible attaque récursive" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6254,20 +6270,20 @@ msgstr "" "Le serveur ne répond pas (ou l'interface de connexion vers le serveur MySQL " "local n'est pas correctement configurée)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Le serveur ne répond pas." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" "Veuillez vérifier les privilèges du répertoire contenant la base de données." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Détails..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6279,13 +6295,15 @@ msgid "Change password" msgstr "Modifier le mot de passe" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Aucun mot de passe" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Entrer à nouveau" @@ -6306,8 +6324,9 @@ msgstr "Créer une base de données" msgid "Create" msgstr "Créer" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Aucun privilège" @@ -6317,12 +6336,12 @@ msgid "Create table" msgstr "Nouvelle table" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nom" @@ -6460,7 +6479,7 @@ msgid "View output as text" msgstr "Afficher les résultats" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Format : " @@ -6979,52 +6998,52 @@ msgstr "Le blogue de PrimeBase XT par Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Données non disponibles pour visualisation GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Les structures suivanates ont été créées ou modifiées. Ici vous pouvez : " -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Consulter le contenu d'une structure en cliquant sur son nom" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Modifiez l'un des paramètres en cliquant le lien «Options» correspondant" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Modifier sa structure via le lien «Structure»" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Aller à la base de données : %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Paramètres de modification pour %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Aller à la table : %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Structure de %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Aller à la vue : %s" @@ -7097,11 +7116,11 @@ msgstr "" "Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches " "pour aller n'importe où" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" @@ -7347,7 +7366,7 @@ msgstr "Documentation de phpMyAdmin" msgid "Reload navigation frame" msgstr "Actualiser" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Ce format ne comporte pas d'options" @@ -7464,93 +7483,93 @@ msgstr "La clé d'authentification n'est pas branchée" msgid "Authenticating..." msgstr "Authentification en cours..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Colonnes séparées par : " -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Colonnes entourées par : " -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Caractère d'échappement : " -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Lignes terminées par : " -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Remplacer NULL par : " -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Enlève les caractères de fin de ligne à l'intérieur des colonnes" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Version d'Excel : " -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Options d'exportation" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Contenu de la table" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Événement" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Définition" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Structure de la table" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Structure de la vue" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Doublure de structure pour la vue" @@ -7566,94 +7585,83 @@ msgstr "(suite)" msgid "Structure of table @TABLE@" msgstr "Structure de la table @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Options de création d'objets" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Sous-titre de la table (suite)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Afficher les relations de clés étrangères" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Afficher les commentaires" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Afficher les types MIME" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Client" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Généré le" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Version du serveur" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Version de PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Tableau MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Exporter le nom des tables" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Exporter les en-têtes de table" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Génère un rapport contenant les données d'une seule table)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Titre du rapport : " -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "Tableau PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7661,12 +7669,12 @@ msgstr "" "Afficher les commentaires (incluant les informations telles que " "l'horodatage d'exportation, la version de PHP et la version du serveur)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») : " -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7674,25 +7682,25 @@ msgstr "" "Inclut un horodatage de création, mise à jour et dernière vérification des " "bases de données" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Maximiser la compatibilité avec un système de base de données ou un ancien " "serveur MySQL : " -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Ajouter un énoncé %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Ajouter les énoncés : " -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7701,32 +7709,39 @@ msgstr "" "(Protège les noms de tables et de colonnes comportant des caractères " "spéciaux ou des mots réservés)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Options de création d'objets" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Vider la table avant d'insérer" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Au lieu d'énoncés INSERT, utiliser : " -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "Énoncés INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "Énoncés INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Fonction à utiliser lors de l'exportation des données : " -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Syntaxe à utiliser lors de l'insertion de données : " -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7736,7 +7751,7 @@ msgstr "" "      Par exemple: INSERT INTO tbl_name (col_A,col_B," "col_C) VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7746,7 +7761,7 @@ msgstr "" "      Par exemple : INSERT INTO tbl_name VALUES " "(1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7755,7 +7770,7 @@ msgstr "" "INSERT INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7763,7 +7778,7 @@ msgstr "" "aucun des modes ci-dessus
      Par exemple : " "INSERT INTO tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7771,7 +7786,7 @@ msgstr "" "Exporter les colonnes binaires en format hexadécimal (par exemple, «abc» " "devient 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7780,50 +7795,45 @@ msgstr "" "d'être exportées et importées entre des serveurs de zones horaires " "différentes)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procédures" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Fonctions" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Contraintes pour les tables exportées" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Contraintes pour la table" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "TYPES MIME POUR LA TABLE" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS POUR LA TABLE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Erreur de lecture des données : " -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Options de création d'objets (toutes sont recommandées)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Vues" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Exporter le contenu" @@ -7899,6 +7909,10 @@ msgstr "Nom des colonnes" msgid "This plugin does not support compressed imports!" msgstr "Ce greffon ne supporte pas les importations en format comprimé !" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Tableau MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7957,6 +7971,10 @@ msgstr "Mode de compatibilité SQL : " msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne pas utiliser AUTO_INCREMENT pour la valeur zéro" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8194,11 +8212,12 @@ msgstr "" "Reconnectez-vous à phpMyAdmin afin d'utiliser le fichier de configuration " "modifié." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "pas de description" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Tout décocher" @@ -8221,9 +8240,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Nom d'utilisateur" @@ -8260,34 +8280,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Ajouter un utilisateur pour la réplication vers l'esclave" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Tout utilisateur" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Entrez une valeur" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Tout client" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Ce serveur" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Utiliser la table Host" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8303,7 +8332,7 @@ msgstr "Générer un mot de passe" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8340,8 +8369,8 @@ msgid "Edit event" msgstr "Modifier l'événement" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Erreur dans le traitement de la requête" @@ -8417,7 +8446,8 @@ msgstr "Vous devez fournir un type valable pour l'événement." msgid "You must provide an event definition." msgstr "Vous devez fournir une définition pour l'événement." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Nouveau" @@ -8551,25 +8581,25 @@ msgstr "Vous devez fournir un type de retour valable pour la procédure." msgid "You must provide a routine definition." msgstr "Vous devez fournir une définition pour la procédure." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Résultats de l'exécution de la procédure %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d ligne a été affectée par le dernier énoncé de la procédure" msgstr[1] "%d lignes ont été affectées par le dernier énoncé de la procédure" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Résultats de l'exécution de la procédure %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Exécuter la procédure" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Paramètres de procédure" @@ -8701,28 +8731,28 @@ msgstr "Aucun événement nommé %1$s n'a été trouvé dans la base de données msgid "There are no events to display." msgstr "Aucun évènement à afficher." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "La table %s n'existe pas !" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Les coordonnées de la table %s n'ont pas été configurées" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schéma de la base %s - Page %s" @@ -8859,6 +8889,464 @@ msgstr "Langue inconnue: %1$s." msgid "Current Server" msgstr "Serveur actuel" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Pas de privilèges." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Tous les privilèges sauf GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Permission de lire des données." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Permission d'ajouter et de remplacer des données." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Permission de changer des données." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Permission de détruire des données." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Permission de créer des bases de données et des tables." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Permission d'effacer des bases de données et des tables." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Permission de recharger les paramètres du serveur, et de vidanger la mémoire " +"cache." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Permission d'arrêter le serveur." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Permission de voir les processus de tous les utilisateurs" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" +"Permission d'importer et d'exporter des données à partir de / dans des " +"fichiers." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Non effectif dans cette version de MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Permission de créer et d'effacer des index." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Permission de modifier la structure des tables existantes." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Permission de voir la liste complète des noms de bases de données." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Permission de se connecter, même si le nombre maximal de connexions permises " +"a été atteint; ceci est requis pour la plupart des opérations de type " +"administratif, par exemple les changements de variables globales ou la " +"destruction de processus." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Permission de créer des tables temporaires." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" +"Permission de verrouiller des enregistrements dans le fil courant (unité " +"d'exécution)." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Nécessaire pour les esclaves (système de duplication)." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Permission de demander où sont les maîtres et les esclaves (système de " +"duplication)." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Permission de créer des vues." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" +"Permission de mettre en place des événements pour le programmateur " +"d'événements" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Permission de créer et de supprimer des déclencheurs" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Permission d'exécuter SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Permission de créer des procédures stockées." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Permission de modifier et de supprimer des procédures stockées." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Permission d'exécuter des procédures stockées." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Aucun" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Limites de ressources" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Note: Une valeur de 0 (zero) enlève la limite." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Limite du nombre de requêtes qu'un utilisateur peut envoyer au serveur, par " +"heure." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Limite du nombre de commandes changeant une table ou base de données, qu'un " +"utilisateur peut exécuter, par heure." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Limite du nombre de nouvelles connexions qu'un utilisateur peut démarrer, " +"par heure." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Limite le nombre de connexions simultanées autorisées pour un utilisateur." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Privilèges spécifiques à une table" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Veuillez noter que les noms de privilèges sont exprimés en anglais" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administration" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Privilèges globaux" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Privilèges spécifiques à une base de données" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Permission de créer des tables." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Permission d'effacer des tables." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Permission d'ajouter des utilisateurs et des privilèges sans avoir besoin de " +"recharger les privilèges." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Information pour la connexion" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Conserver le mot de passe" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Le mot de passe de %s a été changé." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Vous avez révoqué les privilèges pour %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Base de données pour cet utilisateur" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" +"Créer une base portant son nom et donner à cet utilisateur tous les " +"privilèges sur cette base" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Donner les privilèges passepartout (utilisateur\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Donner tous les privilèges sur la base de données "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Utilisateurs ayant accès à "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Utilisateur" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "«Grant»" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "La vue %s a été supprimée." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "N'importe quel" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "spécifique à cette base de données" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "passepartout" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Aucun utilisateur n'a été trouvé." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Changer les privilèges" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Révoquer" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Tout exporter" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... conserver intact l'ancien utilisateur." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... supprimer l'ancien utilisateur." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +"... effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... supprimer l'ancien utilisateur, puis recharger les privilèges au serveur." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Changement des informations de connexion / Copie d'utilisateur" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Privilèges de colonnes" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Ajouter des privilèges sur cette base de données" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "Préfixer avec \\ les passepartouts _ et % pour un usage littéral" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Ajouter des privilèges sur cette table" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Effacer les utilisateurs sélectionnés" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Supprimer les bases de données portant le même nom que les utilisateurs." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Aucun utilisateur n'a été choisi en vue de le détruire !" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Chargement des privilèges en cours" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Les utilisateurs sélectionnés ont été effacés." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Vous avez modifié les privilèges pour %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Privilèges pour tous les utilisateurs" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Privilèges pour %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Survol des utilisateurs" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Note: phpMyAdmin obtient la liste des privilèges directement à partir des " +"tables MySQL. Le contenu de ces tables peut être différent des privilèges " +"effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " +"devriez %srecharger les privilèges%s avant de continuer." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Vous avez ajouté un utilisateur." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Base de données source" @@ -8905,11 +9393,11 @@ msgstr "Vider" msgid "Columns" msgstr "Colonnes" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Conserver cette requête SQL dans les signets" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" @@ -9190,12 +9678,6 @@ msgstr "Version du logiciel" msgid "Protocol version" msgstr "Version du protocole" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Utilisateur" - #: main.php:217 msgid "Server charset" msgstr "Jeu de caractères du serveur" @@ -9723,454 +10205,20 @@ msgstr "Licence" msgid "disabled" msgstr "désactivé" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Tous les privilèges sauf GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Permission de modifier la structure des tables existantes." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Permission de modifier et de supprimer des procédures stockées." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Permission de créer des bases de données et des tables." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Permission de créer des procédures stockées." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Permission de créer des tables." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Permission de créer des tables temporaires." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Permission de créer des vues." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Permission de détruire des données." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Permission d'effacer des bases de données et des tables." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Permission d'effacer des tables." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" -"Permission de mettre en place des événements pour le programmateur " -"d'événements" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Permission d'exécuter des procédures stockées." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" -"Permission d'importer et d'exporter des données à partir de / dans des " -"fichiers." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Permission d'ajouter des utilisateurs et des privilèges sans avoir besoin de " -"recharger les privilèges." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Permission de créer et d'effacer des index." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Permission d'ajouter et de remplacer des données." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" -"Permission de verrouiller des enregistrements dans le fil courant (unité " -"d'exécution)." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Limite du nombre de nouvelles connexions qu'un utilisateur peut démarrer, " -"par heure." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Limite du nombre de requêtes qu'un utilisateur peut envoyer au serveur, par " -"heure." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Limite du nombre de commandes changeant une table ou base de données, qu'un " -"utilisateur peut exécuter, par heure." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Limite le nombre de connexions simultanées autorisées pour un utilisateur." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Permission de voir les processus de tous les utilisateurs" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Non effectif dans cette version de MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Permission de recharger les paramètres du serveur, et de vidanger la mémoire " -"cache." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Permission de demander où sont les maîtres et les esclaves (système de " -"duplication)." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Nécessaire pour les esclaves (système de duplication)." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Permission de lire des données." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Permission de voir la liste complète des noms de bases de données." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Permission d'exécuter SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Permission d'arrêter le serveur." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Permission de se connecter, même si le nombre maximal de connexions permises " -"a été atteint; ceci est requis pour la plupart des opérations de type " -"administratif, par exemple les changements de variables globales ou la " -"destruction de processus." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Permission de créer et de supprimer des déclencheurs" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Permission de changer des données." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Pas de privilèges." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Aucun" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Privilèges spécifiques à une table" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Veuillez noter que les noms de privilèges sont exprimés en anglais" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administration" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Privilèges globaux" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Privilèges spécifiques à une base de données" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Limites de ressources" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Note: Une valeur de 0 (zero) enlève la limite." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Information pour la connexion" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Conserver le mot de passe" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Aucun utilisateur n'a été trouvé." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "L'utilisateur %s existe déjà !" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Vous avez ajouté un utilisateur." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Vous avez modifié les privilèges pour %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Vous avez révoqué les privilèges pour %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Le mot de passe de %s a été changé." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Destruction de %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Aucun utilisateur n'a été choisi en vue de le détruire !" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Chargement des privilèges en cours" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Les utilisateurs sélectionnés ont été effacés." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Changer les privilèges" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Révoquer" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Tout exporter" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "N'importe quel" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Privilèges pour tous les utilisateurs" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Privilèges pour %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Survol des utilisateurs" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "«Grant»" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Effacer les utilisateurs sélectionnés" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Supprimer les bases de données portant le même nom que les utilisateurs." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Note: phpMyAdmin obtient la liste des privilèges directement à partir des " -"tables MySQL. Le contenu de ces tables peut être différent des privilèges " -"effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " -"devriez %srecharger les privilèges%s avant de continuer." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Privilèges de colonnes" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Ajouter des privilèges sur cette base de données" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "Préfixer avec \\ les passepartouts _ et % pour un usage littéral" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Ajouter des privilèges sur cette table" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Changement des informations de connexion / Copie d'utilisateur" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... conserver intact l'ancien utilisateur." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... supprimer l'ancien utilisateur." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -"... effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... supprimer l'ancien utilisateur, puis recharger les privilèges au serveur." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Base de données pour cet utilisateur" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" -"Créer une base portant son nom et donner à cet utilisateur tous les " -"privilèges sur cette base" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Donner les privilèges passepartout (utilisateur\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Donner tous les privilèges sur la base de données "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Utilisateurs ayant accès à "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "spécifique à cette base de données" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "passepartout" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "La vue %s a été supprimée." - #: server_replication.php:82 msgid "Unknown error" msgstr "Erreur inconnue" @@ -11969,37 +12017,37 @@ msgstr "" msgid "Wrong data" msgstr "Données incorrectes" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Le signet «%s» a été utilisé comme requête par défaut." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Voulez-vous vraiment exécuter la requête suivante ?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Affichage du code PHP" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "SQL validé" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Résultat de la requête SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Généré par" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Il y a des problèmes avec les index de la table `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Intitulé" @@ -13886,6 +13934,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Le paramètre concurrent_insert a une valeur de 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "Tableau PHP" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/gl.po b/po/gl.po index 93b580f1d6..bba880b0c9 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.5.1-dev\n" +"Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-23 20:21+0200\n" "Last-Translator: Julio Guerra \n" "Language-Team: Galician \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Mostrar todo" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Buscar" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Buscar" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Ir" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Creouse a base de datos %1$s." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Comentario da base de datos: " @@ -120,17 +123,17 @@ msgstr "Comentario da base de datos: " msgid "Table comments" msgstr "Comentarios da táboa" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Columna" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tipo" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Nulo" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Nulo" msgid "Default" msgstr "Predeterminado" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Liga a" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Comentarios" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Non" @@ -242,19 +248,22 @@ msgstr "Non" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Si" @@ -262,8 +271,8 @@ msgstr "Si" msgid "View dump (schema) of database" msgstr "Ver o envorcado (esquema) da base de datos" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Non foi posíbel atopar ningunha táboa na base de datos." @@ -279,74 +288,74 @@ msgstr "Anular a selección de todo" msgid "The database name is empty!" msgstr "O nome da base de datos está baleiro!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "A base de datos %1$s foi renomeada a %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "A base de datos %1$s foi copiada a %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Renomear a base de datos a" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Eliminar base de datos" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "A base de datos %s foi eliminada." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Eliminar a base de datos (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Copiar a base de datos a" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Só a estrutura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Estrutura e datos" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Só os datos" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Engadir %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Engadir limitacións" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Cambiar á base de datos copiada" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Cambiar á base de datos copiada" msgid "Collation" msgstr "Orde alfabética" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "Desactivouse a configuración de almacenamento de phpMyAdmin. Para saber por " "que prema %saquí%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Editar ou exportar o esquema relacional" @@ -375,16 +384,18 @@ msgstr "Editar ou exportar o esquema relacional" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Táboa" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Filas" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Tamaño" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "en uso" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Creación" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Última actualización" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -429,92 +440,15 @@ msgid_plural "%s tables" msgstr[0] "%s táboa" msgstr[1] "%s táboas" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Debe escoller cando menos unha columna para mostrar" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Ascendente" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Descendente" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Ordenar" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Mostrar" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Criterio" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Engadir/Eliminar filas de criterio" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Engadir/Eliminar columnas de campo" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Actualizar a consulta" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Usar as táboas" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "ou" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "E" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Inserir" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Eliminar" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modificar" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cambiar ao %sconstrutor visual%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Consulta tipo SQL na base de datos %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Enviar esta consulta" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -555,7 +489,7 @@ msgstr "O seguimento está activado." msgid "Tracking is not active." msgstr "O seguimento non está activado." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Cos marcados:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Marcalos todos" @@ -606,31 +541,32 @@ msgstr "Marcalos todos" msgid "Check tables having overhead" msgstr "Exceso na comprobación" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Baleirar" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "Táboas seguidas" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Base de datos" @@ -702,18 +639,26 @@ msgstr "Actualizada" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Estado" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Acción" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Mostrar" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Eliminar os datos de seguimento desta táboa" @@ -754,20 +699,20 @@ msgstr "Rexistro de actividade da base de datos" msgid "Bad type!" msgstr "Ese tipo é incorrecto!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Gardouse nun ficheiro o tipo de exportación escollida!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Os parámetros son incorrectos!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Non hai espazo para gardar o ficheiro %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -775,12 +720,12 @@ msgstr "" "O ficheiro %s xa existe no servidor - cambie de nome ou escolla a opción de " "eliminar." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web non ten permiso para gardar o ficheiro %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Gardouse o envorcado no ficheiro %s." @@ -803,7 +748,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Xeometría" @@ -876,29 +821,29 @@ msgstr "" "Escolla «GeomFromText» na columna «Función» e apegue a cadea situada embaixo " "no campo «Valor»" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" -"sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " +"%sdocumentación%s para averiguar como evitar este límite." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "A mostrar o marcador" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Eliminouse o marcador." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Non foi posíbel ler o ficheiro" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -908,7 +853,7 @@ msgstr "" "Tentou cargar un ficheiro cunha compresión descoñecida (%s). Ora non se sabe " "como descomprimir, ora está desactivada na configuración." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -919,28 +864,28 @@ msgstr "" "Consulte a [a@./Documentation.html#faq1_16@Documentation]Pregunta frecuente " "1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Non se pode converter o xogo de caracteres do ficheiro sen a biblioteca " "correspondente" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Non foi posíbel importar os engadidos - Comprobe a instalación!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Creouse o marcador %s" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "A importación rematou sen problemas. Executáronse %d consultas." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -948,7 +893,7 @@ msgstr "" "Excedeuse o tempo de espera do script. Se quere rematar a importación, " "envíe de novo o mesmo ficheiro e a importación continuará." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -957,8 +902,8 @@ msgstr "" "significa que o phpMyAdmin non poderá rematar esta importación a non ser que " "se lle incrementen os límites de tempo de php." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -973,7 +918,7 @@ msgstr "Recuar" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin utilízase mellor cun navegador que acepte molduras." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Non se permiten as ordes «DROP DATABASE»." @@ -982,7 +927,7 @@ msgstr "Non se permiten as ordes «DROP DATABASE»." msgid "Do you really want to execute \"%s\"?" msgstr "Seguro que quere executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Está a piques de eliminar (DESTROY) unha base de datos enteira!" @@ -1042,16 +987,20 @@ msgstr "O nome do servidor está baleiro!" msgid "The user name is empty!" msgstr "O nome do usuario está baleiro!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "O contrasinal está baleiro!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Os contrasinais non son iguais!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Engadir un usuario" @@ -1071,9 +1020,9 @@ msgstr "Fechar" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1319,12 +1268,13 @@ msgstr "Engadir unha gráfica á grella" msgid "Please add at least one variable to the series" msgstr "Engada ao menos unha variábel á serie" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Ningunha" @@ -1451,7 +1401,6 @@ msgid "From general log" msgstr "Do rexistro de consultas xeral" #: js/messages.php:172 -#| msgid "Loading logs" msgid "Analysing logs" msgstr "A analizar os rexistros" @@ -1486,15 +1435,13 @@ msgstr "" #: js/messages.php:177 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -"Cargáronse os datos do rexistro. Consultas executadas neste período de " -"tempo:" +"Cargáronse os datos do rexistro. Consultas executadas neste período de tempo:" #: js/messages.php:179 msgid "Jump to Log table" msgstr "Ir á táboa de rexistro" #: js/messages.php:180 -#| msgid "No data" msgid "No data found" msgstr "Non se atoparon datos" @@ -1512,10 +1459,10 @@ msgid "Explain output" msgstr "Explicar a saída" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Tempo" @@ -1537,12 +1484,10 @@ msgid "Chart" msgstr "Gráfico" #: js/messages.php:191 -#| msgid "Add chart" msgid "Edit chart" msgstr "Editar a gráfica" #: js/messages.php:192 -#| msgid "Series:" msgid "Series" msgstr "Serie" @@ -1620,12 +1565,10 @@ msgid "Import" msgstr "Importar" #: js/messages.php:213 -#| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Importar a configuración do monitor" #: js/messages.php:214 -#| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Escolla o ficheiro que desexa importar" @@ -1812,7 +1755,7 @@ msgstr "Mostrar a caixa de consultas" msgid "No rows selected" msgstr "Non hai ningunha fileira seleccionada" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Mudar" @@ -1821,8 +1764,8 @@ msgstr "Mudar" msgid "Query execution time" msgstr "Tempo de execución da consulta" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d non é un número de fileira válido." @@ -1894,7 +1837,7 @@ msgstr "Contido do punto de datos" msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Copiar" @@ -2384,14 +2327,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Houbo un erro" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "consulta de SQL" @@ -2402,7 +2345,7 @@ msgstr "consulta de SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2431,6 +2374,10 @@ msgstr "Sen código PHP" msgid "Create PHP Code" msgstr "Crear código PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Enviar esta consulta" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2455,7 +2402,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Na liña" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Análise do desempeño" @@ -2482,14 +2429,14 @@ msgstr "Parámetro que falta:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Inicio" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2497,7 +2444,7 @@ msgstr "Anterior" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2505,7 +2452,7 @@ msgstr "Seguinte" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Fin" @@ -2526,16 +2473,17 @@ msgstr "Prema para conmutar" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Estrutura" @@ -2543,21 +2491,20 @@ msgstr "Estrutura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Inserir" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Visualizar" @@ -2578,21 +2525,21 @@ msgstr "Examinar o computador:" msgid "Select from the web server upload directory %s:" msgstr "Escoller o directorio de subida do servidor web %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Non é posíbel acceder ao directorio que designou para os envíos" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Non hai arquivos para subir" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Executar" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Imprimir" @@ -2611,6 +2558,74 @@ msgstr "" msgid "Font size" msgstr "Tamaño da letra" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Ascendente" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Descendente" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Ordenar" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Criterio" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Engadir/Eliminar filas de criterio" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Engadir/Eliminar columnas de campo" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Actualizar a consulta" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Usar as táboas" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "ou" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "E" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Inserir" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Eliminar" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modificar" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Consulta tipo SQL na base de datos %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "cando menos unha das palabras" @@ -2653,8 +2668,8 @@ msgstr[1] "%1$s ocorrencias dentro da táboa %2$s" msgid "Delete the matches for the %s table?" msgstr "Eliminar as coincidencias para a táboa %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2689,65 +2704,64 @@ msgstr "Dentro das táboas:" msgid "Inside column:" msgstr "Dentro da columna:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Gardar os datos editados" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Restaurar orde das columnas" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Fila de comezo" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Número de fileiras" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Modo" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontal (cabezallos rotados)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format -#| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Cabeceiras cada %s filas" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Ordenar pola chave" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2760,105 +2774,105 @@ msgstr "Ordenar pola chave" msgid "Options" msgstr "Opcións" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Chave relacional" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Mostrar columna de relación" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Mostrar os contidos binarios" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Mostrar os contidos BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Mostrar o contido binario como HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Ocultar a transformación do navegador" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Texto moi coñecido" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Binario moi coñecido" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Eliminouse a fileira" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Matar (kill)" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Pode non ser exacto. Consulte a " -"[a@./Documentation.html#faq3_11@Documentation]pregunta frecuente 3.11[/a]" +"Pode non ser exacto. Consulte a [a@./Documentation." +"html#faq3_11@Documentation]pregunta frecuente 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "na consulta" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "A mostrar as fileiras" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "a consulta levou %01.4f segundos" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operacións cos resultados da consulta" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Vista previa da impresión (con textos completos)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Mostrar a gráfica" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Ver os datos GIS" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Crear unha vista" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Non se atopou a ligazón" @@ -2873,8 +2887,8 @@ msgstr "O ficheiro non foi subido como un ficheiro." #: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de " -"php.ini." +"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php." +"ini." #: libraries/File.class.php:276 msgid "" @@ -2909,8 +2923,8 @@ msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -"Produciuse un erro ao mover o ficheiro enviado. Consulte a " -"[a@./Documentation.html#faq1_11@Documentation]Pregunta frecuente 1.11[/a]" +"Produciuse un erro ao mover o ficheiro enviado. Consulte a [a@./" +"Documentation.html#faq1_11@Documentation]Pregunta frecuente 1.11[/a]" #: libraries/File.class.php:485 msgid "Error while moving uploaded file." @@ -2984,8 +2998,8 @@ msgstr "" "eliminar un deles." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Bases de datos" @@ -3001,11 +3015,11 @@ msgid "Tracking" msgstr "Seguimento" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Disparadores" @@ -3023,9 +3037,9 @@ msgstr "Parece ser que a táboa está baleira!" msgid "Query" msgstr "Consulta" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilexios" @@ -3034,7 +3048,7 @@ msgid "Routines" msgstr "Rutinas" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Acontecementos" @@ -3132,54 +3146,54 @@ msgstr "%s foi desactivado neste servidor de MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "estado da táboa descoñecido: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Base de datos de orixe" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Non se atopou o tema %s!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "A base de datos non é válida" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Nome de táboa non válido" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A táboa %1$s foi renomeada a %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Non foi posíbel gardar as preferencias de IU da táboa" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Produciuse un fallo ao limpar as preferencias de IU da táboa (vexa " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Produciuse un fallo ao limpar as preferencias de IU da táboa (vexa $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3191,7 +3205,7 @@ msgstr "" "estrutura da táboa." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Función" @@ -3203,7 +3217,7 @@ msgstr "Operador" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3242,7 +3256,7 @@ msgid "Maximum rows to plot" msgstr "Máximo de filas que aparecen na gráfica" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Visualizar valores alleos" @@ -3269,7 +3283,6 @@ msgid "How to use" msgstr "Como usar" #: libraries/TableSearch.class.php:1210 -#| msgid "Reset" msgid "Reset zoom" msgstr "Restaurar a ampliación" @@ -3602,7 +3615,7 @@ msgstr "compartida" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Táboas" @@ -3613,9 +3626,10 @@ msgstr "Táboas" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Datos" @@ -3679,12 +3693,12 @@ msgstr "O índice de servidor non é válido: %s" #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -"O nome de servidor non é válido para o servidor %1$s. Revise a " -"configuración." +"O nome de servidor non é válido para o servidor %1$s. Revise a configuración." #: libraries/common.inc.php:849 msgid "Invalid authentication method set in configuration:" -msgstr "Na configuración indicouse un método de autenticación que non é válido:" +msgstr "" +"Na configuración indicouse un método de autenticación que non é válido:" #: libraries/common.inc.php:971 #, php-format @@ -3735,32 +3749,32 @@ msgid "Disabled" msgstr "Desactivado" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "estrutura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "datos" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "estrutura e datos" @@ -3912,9 +3926,9 @@ msgid "" "cross-frame scripting attacks" msgstr "" "Activar isto permite que unha páxina situada nun dominio diferente poida " -"chamar o phpMyAdmin desde dentro dunha moldura, o que constitúe un " -"[strong]furado de seguranza[/strong] potencial que permitiría ataques con " -"scripts entre molduras" +"chamar o phpMyAdmin desde dentro dunha moldura, o que constitúe un [strong]" +"furado de seguranza[/strong] potencial que permitiría ataques con scripts " +"entre molduras" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -4192,13 +4206,13 @@ msgstr "Compresión" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Pór os nomes das columnas na primeira fila" @@ -4221,7 +4235,6 @@ msgstr "Carácter de escape das columnas" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Substituír NULL por" @@ -4261,23 +4274,22 @@ msgstr "Modelo de nome dos ficheiros" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Envorcar a táboa" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Incluír o título da táboa" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Título da táboa" @@ -4286,14 +4298,14 @@ msgid "Continued table caption" msgstr "Título da táboa continuado" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Chave da etiqueta" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Tipo MIME" @@ -4330,7 +4342,7 @@ msgid "SQL compatibility mode" msgstr "Modo de compatiblidade de SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Opcións de CREATE TABLE:" @@ -4343,7 +4355,7 @@ msgid "Use delayed inserts" msgstr "Empregar insercións demoradas" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Desactivar as comprobacións de chaves exteriores" @@ -4360,7 +4372,7 @@ msgid "Syntax to use when inserting data" msgstr "A sintaxe que empregar ao inserir datos" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Lonxitude máxima da busca creada" @@ -4369,7 +4381,7 @@ msgid "Export type" msgstr "Tipo de exportación" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Incluír a exportación nunha transacción" @@ -4392,9 +4404,8 @@ msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -"Ordenación dos elementos dun menú despregábel de chaves alleas; " -"[kbd]content[/kbd] son os datos referenciados, [kbd]id[/kbd] é o valor da " -"chave" +"Ordenación dos elementos dun menú despregábel de chaves alleas; [kbd]content" +"[/kbd] son os datos referenciados, [kbd]id[/kbd] é o valor da chave" #: libraries/config/messages.inc.php:155 msgid "Foreign key dropdown order" @@ -4427,7 +4438,6 @@ msgstr "Personalizar as opcións por omisión" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4488,7 +4498,6 @@ msgstr "" "compresión" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4673,10 +4682,9 @@ msgid "" msgstr "" "Se desexa empregar o servizo do válidador de SQL ha de te ren conta que " "[strong]todas as instrucións de SQL se almacenan de maneira anónima con " -"finalidade " -"estatística[/strong].[br][em][a@http://sqlválidator.mimer.com/]Mimer SQL " -"Validator[/a], Copyright 2002 Upright Database Technology. Todos os dereitos " -"reservados.[/em]" +"finalidade estatística[/strong].[br][em][a@http://sqlválidator.mimer.com/]" +"Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. Todos " +"os dereitos reservados.[/em]" #: libraries/config/messages.inc.php:226 msgid "Startup" @@ -4721,7 +4729,6 @@ msgid "Customize text input fields" msgstr "Personalizar os campos de entrada de texto" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texto para Texy!" @@ -5302,8 +5309,8 @@ msgid "" "swekey.conf)" msgstr "" "A ruta ao ficheiro de configuración da [a@http://swekey.com]autenticación de " -"hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: " -"/etc/swekey.conf)" +"hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /etc/" +"swekey.conf)" #: libraries/config/messages.inc.php:373 msgid "SweKey config file" @@ -5322,9 +5329,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -"Déixeo en branco se non quere a funcionalidade de " -"[a@http://wiki.phpmyadmin.net/pma/bookmark]marcadores[/a]; por omisión: " -"[kbd]pma_bookmark[/kbd]" +"Déixeo en branco se non quere a funcionalidade de [a@http://wiki.phpmyadmin." +"net/pma/bookmark]marcadores[/a]; por omisión: [kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5368,8 +5374,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Un usuario especial de MySQL configurado con permisos limitados; hai máis " -"información dispoñíbel no " -"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" +"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" +"[/a]" #: libraries/config/messages.inc.php:386 msgid "Control user" @@ -5400,8 +5406,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -"Déixeo en branco se non quere empregar Designer; por omisión: " -"[kbd]pma_designer_coords[/kbd]" +"Déixeo en branco se non quere empregar Designer; por omisión: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5412,9 +5418,9 @@ msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Máis información no " -"[a@http://sf.net/support/tracker.php?aid=1849494]Seguidor de erros de " -"PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do MySQL[/a]" +"Máis información no [a@http://sf.net/support/tracker.php?aid=1849494]" +"Seguidor de erros de PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do " +"MySQL[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5511,8 +5517,8 @@ msgstr "Contrasinal para config auth" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Déixeo en branco se non quere PDF schema; por omisión: " -"[kbd]pma_pdf_pages[/kbd]" +"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_pdf_pages[/" +"kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5526,8 +5532,8 @@ msgid "" msgstr "" "Base de datos empregada para relacións, marcadores e funcionalidades PDF. " "Vexa [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] para a información " -"completa. Déixeo en branco se non lle interesan. Por omisión: " -"[kbd]phpmyadmin[/kbd]" +"completa. Déixeo en branco se non lle interesan. Por omisión: [kbd]phpmyadmin" +"[/kbd]" #: libraries/config/messages.inc.php:415 msgid "Database name" @@ -5560,9 +5566,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -"Déixeo en branco se non quere " -"[a@http://wiki.phpmyadmin.net/pma/relation]ligazóns de relación[/a]; " -"suxírese: [kbd]pma_relation[/kbd]" +"Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/relation]" +"ligazóns de relación[/a]; suxírese: [kbd]pma_relation[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5614,8 +5619,8 @@ msgstr "Empregar a SSL" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"Déixeo en branco se non quere PDF schema; por omisión: " -"[kbd]pma_table_coords[/kbd]" +"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_table_coords" +"[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5634,8 +5639,6 @@ msgid "Display columns table" msgstr "Mostrar a táboa de columnas" #: libraries/config/messages.inc.php:435 -#| msgid "" -#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -5817,8 +5820,8 @@ msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -"Define se os campos tipo deben ser mostrados inicialmente no modo " -"editar/inserir" +"Define se os campos tipo deben ser mostrados inicialmente no modo editar/" +"inserir" #: libraries/config/messages.inc.php:469 msgid "Show field types" @@ -5845,8 +5848,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Mostra unha ligazón á saída de " -"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]" +"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -5878,8 +5881,8 @@ msgstr "Reter a caixa de consultas" #: libraries/config/messages.inc.php:481 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -"Permitir que se mostren as estatísticas das bases de datos e das táboas " -"(p.ex. o uso do espazo)" +"Permitir que se mostren as estatísticas das bases de datos e das táboas (p." +"ex. o uso do espazo)" #: libraries/config/messages.inc.php:482 msgid "Show statistics" @@ -5905,9 +5908,9 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" "Cando isto se configura como [kbd]aniñado[/kbd], o alcume do nome da táboa " -"só se emprega para partir/aniñar as táboas de acordo coa directiva " -"$cfg['LeftFrameTableSeparator'], polo que só o cartafol se chama como o " -"alcume; o nome mesmo da táboa fica sen cambiar" +"só se emprega para partir/aniñar as táboas de acordo coa directiva $cfg" +"['LeftFrameTableSeparator'], polo que só o cartafol se chama como o alcume; " +"o nome mesmo da táboa fica sen cambiar" #: libraries/config/messages.inc.php:486 msgid "Display table comment instead of its name" @@ -5936,9 +5939,11 @@ msgstr "Require que o válidador SQL estea activado" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Contrasinal" @@ -6030,8 +6035,8 @@ msgid "" msgstr "" "Escriba os proxies como [kbd]IP: cabezallo HTTP de confianza[/kbd]. O " "exemplo seguinte especifica que o phpMyAdmin debería confiar nun cabezallo " -"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy " -"1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" +"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy 1.2.3.4:[br][kbd]" +"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" #: libraries/config/messages.inc.php:516 msgid "List of trusted proxies for IP allow/deny" @@ -6039,7 +6044,8 @@ msgstr "Lista de proxies de confianza para permiso/denegación de IP" #: libraries/config/messages.inc.php:517 msgid "Directory on server where you can upload files for import" -msgstr "Directorio do servidor ao que se poden enviar os ficheiros que importar" +msgstr "" +"Directorio do servidor ao que se poden enviar os ficheiros que importar" #: libraries/config/messages.inc.php:518 msgid "Upload directory" @@ -6119,7 +6125,6 @@ msgstr "CSV empregando LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Folla de cálculo de Open Document" @@ -6141,19 +6146,16 @@ msgstr "Opcións de exportación da base de datos" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV (para datos de MS Excel)" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Texto de Open Document" @@ -6216,7 +6218,7 @@ msgstr "Falta a extensión %s. Comprobe a configuración do PHP." msgid "possible deep recursion attack" msgstr "posible ataque tipo deep recursion" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6224,24 +6226,23 @@ msgstr "" "O servidor non responde (ou o socket local do servidor non se configurou " "correctamente)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "O servidor non responde." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Comprobe os privilexios do directorio que contén a base de datos." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detalles..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -"Fallou a conexión para controluser tal e como se define na súa " -"configuración." +"Fallou a conexión para controluser tal e como se define na súa configuración." #: libraries/display_change_password.lib.php:29 main.php:106 #: user_password.php:228 @@ -6249,13 +6250,15 @@ msgid "Change password" msgstr "Trocar o contrasinal" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Sen contrasinal" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Reescribir" @@ -6276,8 +6279,9 @@ msgstr "Crear unha base de datos" msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Sen privilexios" @@ -6287,12 +6291,12 @@ msgid "Create table" msgstr "Crear unha táboa" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nome" @@ -6431,7 +6435,7 @@ msgid "View output as text" msgstr "Ver a saída como texto" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Formato:" @@ -6548,8 +6552,8 @@ msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" msgstr "" -"O nome dun ficheiro comprimido debe rematar en " -".[formato].[compresión]. Exemplo: .sql.zip" +"O nome dun ficheiro comprimido debe rematar en .[formato].[compresión]. Exemplo: .sql.zip" #: libraries/display_import.lib.php:244 msgid "File uploads are not allowed on this server." @@ -6749,8 +6753,8 @@ msgid "" "method." msgstr "" "Se o ficheiro temporal usado para a creación rápida dun índice de MyISAM for " -"máis grande que se se usar o caché de chaves na cantidade que se " -"especifique aquí, preferir o método da caché de chaves." +"máis grande que se se usar o caché de chaves na cantidade que se especifique " +"aquí, preferir o método da caché de chaves." #: libraries/engines/myisam.lib.php:47 msgid "Repair threads" @@ -6762,8 +6766,7 @@ msgid "" "parallel (each index in its own thread) during the repair by sorting process." msgstr "" "Se este valor é maior que 1, os índices das táboas MyISAM créanse en " -"paralelo (cada índice no seu propio fío) durante o proceso Reparar " -"ordenando." +"paralelo (cada índice no seu propio fío) durante o proceso Reparar ordenando." #: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" @@ -6925,10 +6928,10 @@ msgid "" "will be deleted, otherwise they are renamed and given the next highest " "number." msgstr "" -"Este é o número de ficheiros de rexistro de transaccións " -"(pbxt/system/xlog*.xt) que vai manter o sistema. Se o número de ficheiros de " -"rexistro excede este valor, os ficheiros de rexistro antigos elimínanse; se " -"non, múdaselles o nome e dáselles o número máis alto seguinte." +"Este é o número de ficheiros de rexistro de transaccións (pbxt/system/xlog*." +"xt) que vai manter o sistema. Se o número de ficheiros de rexistro excede " +"este valor, os ficheiros de rexistro antigos elimínanse; se non, múdaselles " +"o nome e dáselles o número máis alto seguinte." #: libraries/engines/pbxt.lib.php:133 #, php-format @@ -6951,51 +6954,51 @@ msgstr "O Blogue de PrimeBase XT de Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Non se atoparon datos para a visualización de GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "O MySQL retornou un conxunto baleiro (isto é, cero fileiras)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Ver o contido dunha estrutura premendo o seu nome" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Mudar calquera destas opcións premendo a ligazón «Opcións» correspondente" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Editar a estrutura seguindo a ligazón «Estrutura»" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Ir á base de datos: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Editar a configuración de %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Ir á táboa: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Estrutura de %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Ir á vista: %s" @@ -7066,11 +7069,11 @@ msgstr "" "Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL " "combinada cunha frecha para moverse a calquera sitio" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Mostrar a consulta de SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" @@ -7316,7 +7319,7 @@ msgstr "Documentación do phpMyAdmin" msgid "Reload navigation frame" msgstr "Recargar a moldura de navegación" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Este formato non ten opcións" @@ -7434,93 +7437,93 @@ msgstr "Non se meteu ningunha chave de autenticación válida" msgid "Authenticating..." msgstr "A autenticar..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Columnas separadas por:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Columnas delimitadas por:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Carácter de escape das columnas:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Liñas rematadas en:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Substituír NULL por:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Eliminar os caracteres CR/LF dentro dos campos" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Versión de Excel:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Opcións de envorcado dos datos" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "A extraer os datos da táboa" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Acontecemento" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definición" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Estrutura da táboa" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Estrutura para a vista" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Estrutura existente para a vista" @@ -7536,98 +7539,87 @@ msgstr "(continuado)" msgid "Structure of table @TABLE@" msgstr "Estrutura da táboa @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Opcións de creación de obxectos" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Descrición da táboa (continuado)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Mostrar as relación das chaves exteriores" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Mostrar os comentarios" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Mostrar os tipos MIME" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Servidor" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Xerado en" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versión do servidor" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Versión do PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Táboa do MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "Exportar o contido" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horizontal (cabezallos rotados)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Xera un informe que contén os datos dunha única táboa)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Título do informe:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "Array de PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7635,11 +7627,11 @@ msgstr "" "Mostrar os comentarios (inclúe información como a marca horaria da " "exportación, a versión do PHP e a versión do servidor)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Engadir un comentario propio na cabeceira (\\n quebra as liñas):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7647,69 +7639,76 @@ msgstr "" "Incluír a marca temporal de cando se crearon as bases de datos, cando foi a " "última vez que se actualizaron e que se comprobaron" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Sistema de bases de datos ou servidor de MySQL máis vello co que maximizar a " "compatibilidade da saída:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Engadir unha instrución %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Engadir instrucións:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -"Encerrar os nomes das táboas e das columnas entre aspas invertidas " -"(Protexe os nomes das columnas e as táboas formadas con caracteres " -"especiais ou palabras chave)" +"Encerrar os nomes das táboas e das columnas entre aspas invertidas " +"(Protexe os nomes das columnas e as táboas formadas con caracteres especiais " +"ou palabras chave)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Opcións de creación de obxectos" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Vaciar táboa antes de inserir" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "No canto de instrucións INSERT, empregar:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "instrucións INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "instrucións INSERT IGNORE
" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Función que empregar ao envorcar os datos:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Sintaxe que empregar ao inserir os datos:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" "incluír os nomes das columnas en todas as instrucións INSERT " -"
    Exemplo: INSERT INTO nome_taboa " -"(col_A,col_B,col_C) VALUES (1,2,3)" +"
    Exemplo: INSERT INTO nome_taboa (col_A,col_B," +"col_C) VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7719,7 +7718,7 @@ msgstr "" "    Exemplo: INSERT INTO nome_taboa VALUES (1,2,3), " "(4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7727,7 +7726,7 @@ msgstr "" "as dúas anteriores
      Exemplo: INSERT INTO " "nome_taboa (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7735,7 +7734,7 @@ msgstr "" "ningunha das anteriores
      Exemplo: INSERT " "INTO nome_taboa VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7743,7 +7742,7 @@ msgstr "" "Envorcar as columnas binarias na notación hexadecimal (por exemplo, «abc» " "convértese en 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7752,50 +7751,45 @@ msgstr "" "se envorquen en carguen entre servidores que estean en fusos horarios " "distintos)
" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedementos" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funcións" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Restricións para os envorcados das táboas" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Restricións para a táboa" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELACIÓNS PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Houbo un erro ao ler os datos:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Opcións de creación de obxectos (recoméndanse todas)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Vistas" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Exportar o contido" @@ -7816,8 +7810,7 @@ msgid "" msgstr "" "Se os datos de cada fileira do ficheiro non están na mesma orde que na base " "de datos, enumere aquí os nomes das columnas correspondentes. Os nomes das " -"columnas teñen que estar separados por vírgulas e non encerrados entre " -"aspas." +"columnas teñen que estar separados por vírgulas e non encerrados entre aspas." #: libraries/plugins/import/ImportCsv.class.php:126 msgid "Column names: " @@ -7871,6 +7864,10 @@ msgstr "Nomes das columnas" msgid "This plugin does not support compressed imports!" msgstr "Este engadido non é capaz de realizar importacións comprimidas!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Táboa do MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7930,6 +7927,10 @@ msgstr "Modo de compatibilidade de SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non empregar AUTO_INCREMENT cos valores cero" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7942,15 +7943,6 @@ msgid "" msgstr "" #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:31 -#| msgid "" -#| "plays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as " -#| "matted date. The first option is the offset (in hours) which will be ed " -#| "to the timestamp (Default: 0). Use second option to specify a ferent date/" -#| "time format string. Third option determines whether you t to see local " -#| "date or UTC one (use \"local\" or \"utc\" strings) for t. According to " -#| "that, date format has different value - for \"local\" the documentation " -#| "for PHP's strftime() function and for \"utc\" it is e using gmdate() " -#| "function." msgid "" "Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp column as " "formatted date. The first option is the offset (in hours) which will be " @@ -7965,17 +7957,12 @@ msgstr "" "numérica de UNIXcomo hora e data con formato. A primeira opción é a " "diferenza (en horas) que se engade á hora ou data (Por omisión: 0). Empregue " "a segunda opción para indicar unha cadea de formato de data/hora diferente. " -"A terceira opción determina se se desexa ver a hora local ou a UTC " -"(empregue as cadeas «local»ou «utc») para iso. Segundo isto, o formato de " -"data ten un valor diferente - para «local» vexa a documentación acerca da " -"función de PHP strftime() e para «utc» faise empregando a función gmdate()." +"A terceira opción determina se se desexa ver a hora local ou a UTC (empregue " +"as cadeas «local»ou «utc») para iso. Segundo isto, o formato de data ten un " +"valor diferente - para «local» vexa a documentación acerca da función de PHP " +"strftime() e para «utc» faise empregando a función gmdate()." #: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31 -#| msgid "" -#| "plays a link to download the binary data of the field. You can use the st " -#| "option to specify the filename, or use the second option as the e of a " -#| "field which contains the filename. If you use the second ion, you need to " -#| "set the first option to the empty string." msgid "" "Displays a link to download the binary data of the column. You can use the " "first option to specify the filename, or use the second option as the name " @@ -8024,9 +8011,6 @@ msgstr "" "a saída se mostre sen reformatar (Por omisión é 1)" #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 -#| msgid "" -#| "plays the contents of the field as-is, without running it through " -#| "lspecialchars(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." @@ -8082,10 +8066,6 @@ msgstr "" "omisión: «...»)." #: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:31 -#| msgid "" -#| "plays an image and a link; the field contains the filename. The first ion " -#| "is a URL prefix like \"http://www.example.com/\". The second and rd " -#| "options are the width and the height in pixels." msgid "" "Displays an image and a link; the column contains the filename. The first " "option is a URL prefix like \"http://www.example.com/\". The second and " @@ -8096,10 +8076,6 @@ msgstr "" "terceira opcións son o largo e a altura en píxeles." #: libraries/plugins/transformations/abstract/TextLinkTransformationsPlugin.class.php:31 -#| msgid "" -#| "plays a link; the field contains the filename. The first option is a " -#| "prefix like \"http://www.example.com/\". The second option is a title " -#| "the link." msgid "" "Displays a link; the column contains the filename. The first option is a URL " "prefix like \"http://www.example.com/\". The second option is a title for " @@ -8189,8 +8165,8 @@ msgid "" "code>), for example by starting from config.sample.inc.php." msgstr "" "Active as funcionalidades avanzadas no ficheiro de configuración " -"(config.inc.php) comezando, por exemplo con " -"config.sample.inc.php." +"(config.inc.php) comezando, por exemplo con config.sample." +"inc.php." #: libraries/relation.lib.php:278 msgid "Re-login to phpMyAdmin to load the updated configuration file." @@ -8198,11 +8174,12 @@ msgstr "" "Entre de novo no phpMyAdmin para cargar o ficheiro de configuración " "actualizado." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "sen descrición" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Quitarlles as marcas a todos" @@ -8225,9 +8202,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Nome do usuario" @@ -8257,41 +8235,50 @@ msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -"Nesta listaxe só son visíbeis os escravos que se inicien coa opción " -"--report-host=nome_da_máquina." +"Nesta listaxe só son visíbeis os escravos que se inicien coa opción --report-" +"host=nome_da_máquina." #: libraries/replication_gui.lib.php:256 server_replication.php:224 msgid "Add slave replication user" msgstr "Engadir un usuario de replicación de escravos" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Calquera usuario" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Empregar un campo de texto" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Calquera servidor" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Este servidor" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Empregar a táboa Host" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8307,7 +8294,7 @@ msgstr "Xerar un contrasinal" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8343,8 +8330,8 @@ msgid "Edit event" msgstr "Editar o acontecemento" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Produciuse un erro ao procesar a petición" @@ -8420,7 +8407,8 @@ msgstr "Debe proporcionar un tipo válido para o acontecemento." msgid "You must provide an event definition." msgstr "Debe proporcionar unha definición do acontecemento." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Novo" @@ -8550,25 +8538,27 @@ msgstr "Ten que fornecer un tipo de devolución válida para a rutina." msgid "You must provide a routine definition." msgstr "Debe proporcionar unha definición da rutina." -#: libraries/rte/rte_routines.lib.php:1286 -#, php-format -msgid "%d row affected by the last statement inside the procedure" -msgid_plural "%d rows affected by the last statement inside the procedure" -msgstr[0] "%d fileira afectada pola última instrución de dentro do procedemento" -msgstr[1] "%d fileiras afectadas pola última instrución de dentro do procedemento" - -#: libraries/rte/rte_routines.lib.php:1302 +#: libraries/rte/rte_routines.lib.php:1279 #, php-format msgid "Execution results of routine %s" msgstr "Resultados da execución da rutina %s" -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1343 +#, php-format +msgid "%d row affected by the last statement inside the procedure" +msgid_plural "%d rows affected by the last statement inside the procedure" +msgstr[0] "" +"%d fileira afectada pola última instrución de dentro do procedemento" +msgstr[1] "" +"%d fileiras afectadas pola última instrución de dentro do procedemento" + +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Executar a rutina" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Parámetros da rutina" @@ -8697,28 +8687,28 @@ msgstr "Non se atopou ningún acontecemento co nome %1$s na base de datos %2$s" msgid "There are no events to display." msgstr "Non hai acontecementos que mostrar." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Non existe a táboa %s!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure as coordenadas da táboa %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Esquema da base de datos %s - Páxina %s" @@ -8855,6 +8845,449 @@ msgstr "Linguaxe descoñecida: %1$s." msgid "Current Server" msgstr "Servidor actual" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Sen privilexios." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Permite gravar datos." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Permite inserir e substituír datos." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Permite modificar datos." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Permite eliminar datos." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Permite crear bases de datos e táboas novas." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Permite eliminar bases de datos e táboas." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "Permite recargar a configuración do servidor e limpar a súa caché." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Permite apagar o servidor." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Permite ver procesos de todos os usuarios" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Permite importar e exportar datos desde e para ficheiros." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Non funciona nesta versión do MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Permite crear e eliminar índices." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Permite alterar a estrutura das táboas xa existentes." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Permite acceder á lista completa de bases de datos." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Permite conexións, mesmo chegado ao número máximo de conexións. Requíreno a " +"maioría das operación administrativas, como configurar as variábeis globais " +"ou matar os fíos doutros usuarios." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Permite crear táboas temporais." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Permite bloquear táboas do fío actual." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Necesario para os escravos de replicación." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Permite que o usuario pregunte onde están os escravos e os mestres." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Permite crear vistas novas." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Permite configurar acontecementos para o programador de acontecementos" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Permite crear e eliminar os disparadores" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Permite realizar consultas SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Permite crear rutinas almacenadas." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Permite alterar e eliminar rutinas almacenadas." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Permite crear, eliminar e mudar o nome das contas de usuario." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Permite executar rutinas almacenadas." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Ningún" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Limites dos recursos" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Limita o número de consultas por hora que pode enviar un usuario." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Limita o número de ordes que modifiquen unha táboa ou base de datos por hora " +"que pode executar un usuario." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Limita o número de conexións novas por hora que pode abrir un usuario." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limita o número de conexións simultáneas que pode ter o usuario." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Privilexios propios das táboas" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Nota: os nomes dos privilexios do MySQL están en inglés" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administración" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Privilexios globais" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Privilexios propios das bases de datos" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Permite crear táboas novas." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Permite eliminar táboas." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Permite engadir usuarios e privilexios sen recargar as táboas de privilexios." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Información sobre o acceso (login)" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Non mude o contrasinal" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Modificouse sen problemas o contrasinal de %s." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Revogou os privilexios de %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Base de datos para o usuario" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Crear unha base de datos co mesmo nome e conceder todos os privilexios" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Conceder todos os privilexios sobre a base de datos "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Usuarios que teñen acceso a "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Usuario" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Conceder" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "O usuario foi engadido." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Calquera" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "específico da base de datos" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "comodín" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Non se achou ningún usuario." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Modificar os privilexios" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Revogar" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Exportar todo" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... manter o anterior." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... eliminar o anterior das táboas de usuarios." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... retirarlle todos os privilexios activos ao anterior e eliminalo despois." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... eliminar o anterior das táboas de usuarios e recargar os privilexios " +"despois." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Modificar a información de acceso (login) / Copiar o usuario" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Crear un usuario novo cos mesmos privilexios e..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Privilexios propios das columnas" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Engadir privilexios para esta base de datos" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Os caracteres comodín _ e % deberíanse escapar con \\ para podelos usar " +"literalmente" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Engadir privilexios para esta táboa" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Eliminar os usuarios seleccionados" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Retirarlles todos os privilexios activos aos usuarios e eliminalos a " +"continuación." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Non se escolleu que usuarios eliminar!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "A recargar os privilexios" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Elimináronse sen problemas os usuarios seleccionados." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Acaba de actualizar os privilexios de %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Privilexios para todolos usuarios" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Privilexios para %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Vista xeral dos usuarios" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas " +"de privilexios do MySQL. O contido destas táboas pode diferir dos " +"privilexios que usa o servidor se se levaron a cabo alteracións manuais. " +"Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Non se atopou o usuario escollido na táboa de privilexios." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Engadiu un usuario novo." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Base de datos de orixe" @@ -8901,11 +9334,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Marcar esta busca de SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" @@ -9008,11 +9441,6 @@ msgid "Tracking of %s is activated." msgstr "O seguemento de %s está activado." #: libraries/tbl_properties.inc.php:90 -#| msgid "" -#| "field type is \"enum\" or \"set\", please enter the values using this " -#| "mat: 'a','b','c'...
If you ever need to put a backslash (\"\\\") a " -#| "single quote (\"'\") amongst those values, precede it with a kslash (for " -#| "example '\\\\xyz' or 'a\\'b')." msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -9194,12 +9622,6 @@ msgstr "Versión do software" msgid "Protocol version" msgstr "Versión do protocolo" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Usuario" - #: main.php:217 msgid "Server charset" msgstr "Conxunto de caracteres do servidor" @@ -9282,11 +9704,6 @@ msgstr "" "rexistro caducará antes do que está configurado en phpMyAdmin." #: main.php:403 -#| msgid "" -#| "r PHP parameter [a@http://php.net/manual/en/session.configuration.#ini." -#| "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower that " -#| "kie validity configured in phpMyAdmin, because of this, your login l " -#| "expire sooner than configured in phpMyAdmin." msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -9313,9 +9730,6 @@ msgstr "" #: main.php:436 #, php-format -#| msgid "" -#| " additional features for working with linked tables have been ctivated. " -#| "To find out why click %shere%s." msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." @@ -9582,8 +9996,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o %" -"sScript de configuración%s." +"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o " +"%sScript de configuración%s." #: prefs_manage.php:305 msgid "Save to browser's storage" @@ -9732,441 +10146,20 @@ msgstr "Licen" msgid "disabled" msgstr "desactivado" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Permite alterar a estrutura das táboas xa existentes." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Permite alterar e eliminar rutinas almacenadas." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Permite crear bases de datos e táboas novas." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Permite crear rutinas almacenadas." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Permite crear táboas novas." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Permite crear táboas temporais." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Permite crear, eliminar e mudar o nome das contas de usuario." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Permite crear vistas novas." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Permite eliminar datos." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Permite eliminar bases de datos e táboas." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Permite eliminar táboas." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Permite configurar acontecementos para o programador de acontecementos" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Permite executar rutinas almacenadas." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Permite importar e exportar datos desde e para ficheiros." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Permite engadir usuarios e privilexios sen recargar as táboas de " -"privilexios." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Permite crear e eliminar índices." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Permite inserir e substituír datos." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Permite bloquear táboas do fío actual." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Limita o número de conexións novas por hora que pode abrir un usuario." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Limita o número de consultas por hora que pode enviar un usuario." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Limita o número de ordes que modifiquen unha táboa ou base de datos por hora " -"que pode executar un usuario." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limita o número de conexións simultáneas que pode ter o usuario." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Permite ver procesos de todos os usuarios" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Non funciona nesta versión do MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "Permite recargar a configuración do servidor e limpar a súa caché." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Permite que o usuario pregunte onde están os escravos e os mestres." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Necesario para os escravos de replicación." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Permite gravar datos." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Permite acceder á lista completa de bases de datos." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Permite realizar consultas SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Permite apagar o servidor." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Permite conexións, mesmo chegado ao número máximo de conexións. Requíreno a " -"maioría das operación administrativas, como configurar as variábeis globais " -"ou matar os fíos doutros usuarios." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Permite crear e eliminar os disparadores" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Permite modificar datos." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Sen privilexios." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Ningún" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Privilexios propios das táboas" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Nota: os nomes dos privilexios do MySQL están en inglés" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administración" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Privilexios globais" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Privilexios propios das bases de datos" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Limites dos recursos" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Información sobre o acceso (login)" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Non mude o contrasinal" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Non se achou ningún usuario." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Xa existe o usuario %s!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Engadiu un usuario novo." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Acaba de actualizar os privilexios de %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Revogou os privilexios de %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Modificouse sen problemas o contrasinal de %s." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "A eliminar %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Non se escolleu que usuarios eliminar!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "A recargar os privilexios" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Elimináronse sen problemas os usuarios seleccionados." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Modificar os privilexios" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Revogar" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Exportar todo" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Calquera" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Privilexios para todolos usuarios" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Privilexios para %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Vista xeral dos usuarios" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Conceder" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Eliminar os usuarios seleccionados" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Retirarlles todos os privilexios activos aos usuarios e eliminalos a " -"continuación." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas " -"de privilexios do MySQL. O contido destas táboas pode diferir dos " -"privilexios que usa o servidor se se levaron a cabo alteracións manuais. " -"Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Non se atopou o usuario escollido na táboa de privilexios." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Privilexios propios das columnas" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Engadir privilexios para esta base de datos" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Os caracteres comodín _ e % deberíanse escapar con \\ para podelos usar " -"literalmente" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Engadir privilexios para esta táboa" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Modificar a información de acceso (login) / Copiar o usuario" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Crear un usuario novo cos mesmos privilexios e..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... manter o anterior." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... eliminar o anterior das táboas de usuarios." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... retirarlle todos os privilexios activos ao anterior e eliminalo " -"despois." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... eliminar o anterior das táboas de usuarios e recargar os privilexios " -"despois." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Base de datos para o usuario" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Crear unha base de datos co mesmo nome e conceder todos os privilexios" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Conceder todos os privilexios sobre a base de datos "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Usuarios que teñen acceso a "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "específico da base de datos" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "comodín" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "O usuario foi engadido." - #: server_replication.php:82 msgid "Unknown error" msgstr "Produciuse un erro descoñecido" @@ -10503,8 +10496,8 @@ msgid "" "no clearly measurable improvement." msgstr "" "A mellor maneira de axustar o sistema sería modificar só unha opción de cada " -"vez, observar ou someter a base de datos a probas e desfacer o cambio se " -"non se apreciaron melloras medíbeis." +"vez, observar ou someter a base de datos a probas e desfacer o cambio se non " +"se apreciaron melloras medíbeis." #. l10n: Questions is the name of a MySQL Status variable #: server_status.php:957 @@ -10547,14 +10540,10 @@ msgstr "" #: server_status.php:1101 msgid "This MySQL server works as slave in replication process." msgstr "" -"Este servidor funciona como escravo nun proceso de " -"replicación." +"Este servidor funciona como escravo nun proceso de replicación." #: server_status.php:1104 -#| msgid "" -#| "s MySQL server works as %s in replication process. For further " -#| "ormation about replication status on the server, please visit the replication section." msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10612,7 +10601,6 @@ msgstr "" "axeitadamente a conexión." #: server_status.php:1359 -#| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "O número de intentos de conexión co servidor de MySQL falidos." @@ -10748,9 +10736,9 @@ msgid "" "you have joins that don't use keys properly." msgstr "" "Número de peticións para ler unha fileira baseadas nunha posición fixa. Isto " -"é alto se está a realizar moitas consultas que requiran ordenar o " -"resultado. Posibelmente terá un monte de consultas que esixan que MySQL " -"examine táboas completas ou ten unións que non usan as chaves axeitadamente." +"é alto se está a realizar moitas consultas que requiran ordenar o resultado. " +"Posibelmente terá un monte de consultas que esixan que MySQL examine táboas " +"completas ou ten unións que non usan as chaves axeitadamente." #: server_status.php:1378 msgid "" @@ -10857,8 +10845,8 @@ msgid "" msgstr "" "Normalmente, escríbese no buffer de InnoDB como tarefa de fondo. Porén, de " "se precisar ler ou crear unha páxina e non haber páxinas limpas dispoñíbeis, " -"hai que agardar a que se limpen. Este contador vai contando cantas veces " -"hai que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser " +"hai que agardar a que se limpen. Este contador vai contando cantas veces hai " +"que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser " "pequeno." #: server_status.php:1394 @@ -11046,8 +11034,7 @@ msgid "" msgstr "" "Número de lecturas físicas dun bloque chave desde o disco. Se key_reads for " "grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " -"relación de perdas da caché pódese calcular así: " -"Key_reads/Key_read_requests." +"relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." #: server_status.php:1431 msgid "" @@ -11421,8 +11408,8 @@ msgid "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" -"Activar general_log pode incrementar a carga do servidor entre un 5% e un 15" -"%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha " +"Activar general_log pode incrementar a carga do servidor entre un 5% e un " +"15%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha " "tarefa que require un traballo intensivo, polo que se recomenda escoller só " "un tempo limitado e desactivar general_log e baleirar a súa táboa cando non " "se requira máis esa vixilancia." @@ -11664,8 +11651,8 @@ msgid "" "documentation[/a]. Otherwise you will be only able to download or display it." msgstr "" "Cree un directorio [em]config[/em] no que poida escribir no servidor web no " -"directorio máis alto do phpMyAdmin tal e como se describe na " -"[a@../Documentation.html#setup_script]documentación[/a]. Se non, só o poderá " +"directorio máis alto do phpMyAdmin tal e como se describe na [a@../" +"Documentation.html#setup_script]documentación[/a]. Se non, só o poderá " "descargar ou mostrar." #: setup/frames/index.inc.php:60 @@ -11816,8 +11803,8 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Está a empregar o sistema de versións Git; execute [kbd]git pull[/kbd] " -":-)[br]A versión estable máis recente é %s, publicada o %s." +"Está a empregar o sistema de versións Git; execute [kbd]git pull[/kbd] :-)" +"[br]A versión estable máis recente é %s, publicada o %s." #: setup/lib/index.lib.php:203 msgid "No newer stable version is available" @@ -11872,9 +11859,6 @@ msgstr "esta %sopción%s debería estar activada se o seu servidor web a admite. #: setup/lib/index.lib.php:302 #, php-format -#| msgid "" -#| "?page=form&formset=features#tab_Import_export]GZip compression and " -#| "ompression[/a] requires functions (%s) which are unavailable on this tem." msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." @@ -11895,17 +11879,13 @@ msgstr "" #: setup/lib/index.lib.php:306 #, php-format -#| msgid "" -#| "?page=form&formset=features#tab_Security]Login cookie validity[/a] uld be " -#| "set to 1800 seconds (30 minutes) at most. Values larger than 0 may pose a " -#| "security risk such as impersonation." msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" "A %svalidez das cookies de identificación%s deberíase reducir a un máximo de " -"1800 seconds (30 minutos). Os valores superiores a 1800 poden supor un " -"risco de seguranza, como a suplantación de personalidade." +"1800 seconds (30 minutos). Os valores superiores a 1800 poden supor un risco " +"de seguranza, como a suplantación de personalidade." #: setup/lib/index.lib.php:308 #, php-format @@ -11919,32 +11899,19 @@ msgstr "" #: setup/lib/index.lib.php:310 #, php-format -#| msgid "" -#| "you feel this is necessary, use additional protection settings - [a@?" -#| "e=servers&mode=edit&id=%1$d#tab_Server_config]host hentication[/" -#| "a] settings and [a@?page=form&mset=features#tab_Security]trusted " -#| "proxies list[/a]. However, IP-based tection may not be reliable if your " -#| "IP belongs to an ISP where usands of users, including you, are connected " -#| "to." msgid "" "If you feel this is necessary, use additional protection settings - %shost " "authentication%s settings and %strusted proxies list%s. However, IP-based " "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se pensa que é preciso, empregue opcións de protección adicionais - %" -"sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a " +"Se pensa que é preciso, empregue opcións de protección adicionais - " +"%sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a " "protección baseada no IP pode non ser de fiar se o IP pertence a un ISP ao " "que estean ligados miles de usuarios, incluído vostede." #: setup/lib/index.lib.php:312 #, php-format -#| msgid "" -#| " set the [kbd]config[/kbd] authentication type and included username " -#| "password for auto-login, which is not a desirable option for live ts. " -#| "Anyone who knows or guesses your phpMyAdmin URL can directly ess your " -#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=d#tab_Server]" -#| "authentication type[/a] to [kbd]cookie[/kbd] or [kbd]httpbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -11961,9 +11928,6 @@ msgstr "" #: setup/lib/index.lib.php:314 #, php-format -#| msgid "" -#| "?page=form&formset=features#tab_Import_export]Zip compression[/a] " -#| "uires functions (%s) which are unavailable on this system." msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." @@ -11973,9 +11937,6 @@ msgstr "" #: setup/lib/index.lib.php:316 #, php-format -#| msgid "" -#| "?page=form&formset=features#tab_Import_export]Zip decompression[/" -#| "requires functions (%s) which are unavailable on this system." msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." @@ -12001,43 +11962,44 @@ msgstr "A chave é curta de máis, debería ter un mínimo de oito caracteres." #: setup/lib/index.lib.php:427 msgid "Key should contain letters, numbers [em]and[/em] special characters." -msgstr "A chave debería conter letras, números [em]e[/em] caracteres especiais." +msgstr "" +"A chave debería conter letras, números [em]e[/em] caracteres especiais." #: setup/validate.php:22 msgid "Wrong data" msgstr "Os datos son incorrectos" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "A empregar o marcador «%s» como consulta de navegación por omisión." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Seguro que quere executar a petición seguinte?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Resultado de SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Xerado por" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa «%s»" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etiqueta" @@ -12527,7 +12489,6 @@ msgid "Query error" msgstr "Hai un erro na consulta" #: tbl_tracking.php:470 -#| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Eliminouse satisfactoriamente o seguimento da manipulación de datos" @@ -12724,8 +12685,8 @@ msgstr "" #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" -"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s%" -"%." +"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s" +"%%." #: libraries/advisory_rules.txt:70 msgid "Slow query rate" @@ -12740,7 +12701,6 @@ msgstr "" #: libraries/advisory_rules.txt:75 #, php-format -#| msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgid "" "You have a slow query rate of %s per hour, you should have less than 1%% per " "hour." @@ -12770,7 +12730,6 @@ msgstr "" #: libraries/advisory_rules.txt:82 #, php-format -#| msgid "long_query_time is set to %d second(s)." msgid "long_query_time is currently set to %ds." msgstr "long_query_time está configurado actualmente para %ds." @@ -12946,7 +12905,6 @@ msgid "Query caching method" msgstr "Método de caché das consultas" #: libraries/advisory_rules.txt:156 -#| msgid "Query caching method" msgid "Suboptimal caching method." msgstr "O método para a caché non é o máis óptimo." @@ -12958,10 +12916,9 @@ msgid "" "cache, especially if you have multiple slaves." msgstr "" "Está a empregar a caché de consultas de MySQL cunha base de datos de " -"bastante tráfico. Sería boa idea considerar o uso de memcached no canto da caché de consultas de MySQL, " -"especialmente se ten varios escravos." +"bastante tráfico. Sería boa idea considerar o uso de memcached no canto da " +"caché de consultas de MySQL, especialmente se ten varios escravos." #: libraries/advisory_rules.txt:158 #, php-format @@ -12989,7 +12946,6 @@ msgstr "Considere incrementar {query_cache_limit}." #: libraries/advisory_rules.txt:165 #, php-format -#| msgid "Index reads from memory: %s%%, this value should be above 95%%" msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" "A taxa de impactos da caché de consultas de %s%% está por debaixo do 20%%" @@ -13025,7 +12981,6 @@ msgid "Query cache fragmentation" msgstr "Fragmentación da caché de consultas" #: libraries/advisory_rules.txt:177 -#| msgid "The query cache is not enabled." msgid "The query cache is considerably fragmented." msgstr "A caché de consultas está moi fragmentada." @@ -13062,7 +13017,6 @@ msgstr "" "valor debería ser inferior ao 20%%." #: libraries/advisory_rules.txt:181 -#| msgid "Query cache used" msgid "Query cache low memory prunes" msgstr "Podas da memoria baixa da caché de consultas" @@ -13115,7 +13069,6 @@ msgstr "" #: libraries/advisory_rules.txt:193 #, php-format -#| msgid "Current version: %s" msgid "Current query cache size: %s" msgstr "Tamaño da caché de consultas: %s" @@ -13172,7 +13125,6 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format -#| msgid "%s%% of all connections are aborted. This value should be below 1%%" msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than " "10%%." @@ -13186,7 +13138,6 @@ msgstr "Taxa de ordenamentos que causan táboas temporais" #: libraries/advisory_rules.txt:216 #, php-format -#| msgid "Opened table rate: %s, this value should be less than 10 per hour" msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." msgstr "" @@ -13236,18 +13187,15 @@ msgstr "" #: libraries/advisory_rules.txt:231 #, php-format -#| msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Media das unións de táboas: %s; este valor debería ser inferior a 1 por hora" #: libraries/advisory_rules.txt:233 -#| msgid "Rate of joins without indexes" msgid "Rate of reading first index entry" msgstr "Taxa de lectura da primeira entrada do índice" #: libraries/advisory_rules.txt:236 -#| msgid "The rate of opening files is high." msgid "The rate of reading the first index entry is high." msgstr "Taxa de lectura da primeira entrada do índice é alta." @@ -13270,19 +13218,16 @@ msgstr "" #: libraries/advisory_rules.txt:238 #, php-format -#| msgid "Opened table rate: %s, this value should be less than 10 per hour" msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Media de análises dos índices: %s; este valor debería ser inferior a 1 por " "hora" #: libraries/advisory_rules.txt:240 -#| msgid "Rate of open files" msgid "Rate of reading fixed position" msgstr "Taxa de lectura de posicións fixas" #: libraries/advisory_rules.txt:243 -#| msgid "The rate of opening files is high." msgid "The rate of reading data from a fixed position is high." msgstr "A taxa de lectura de datos dunha posición fixa é alta." @@ -13298,7 +13243,6 @@ msgstr "" #: libraries/advisory_rules.txt:245 #, php-format -#| msgid "Opened files rate: %s, this value should be less than 5 per hour" msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " "per hour" @@ -13307,12 +13251,10 @@ msgstr "" "inferior a 1 por hora" #: libraries/advisory_rules.txt:247 -#| msgid "Rate of table open" msgid "Rate of reading next table row" msgstr "Taxa de lectura da seguinte fileira da táboa" #: libraries/advisory_rules.txt:250 -#| msgid "The rate of opening tables is high." msgid "The rate of reading the next table row is high." msgstr "A taxa de lectura da seguinte fileira da táboa é alta." @@ -13326,7 +13268,6 @@ msgstr "" #: libraries/advisory_rules.txt:252 #, php-format -#| msgid "Opened table rate: %s, this value should be less than 10 per hour" msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" msgstr "" @@ -13363,7 +13304,6 @@ msgid "Percentage of temp tables on disk" msgstr "Porcentaxe de táboas temporais en disco" #: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 -#| msgid "%s%% of all connections are aborted. This value should be below 1%%" msgid "" "Many temporary tables are being written to disk instead of being kept in " "memory." @@ -13386,13 +13326,12 @@ msgstr "" "disco, independentemente do valor destas variábeis. Para eliminalas hai que " "reescribir as consultas para que eviten esas condicións (Nunha táboa " "temporal: presenza dunha columna tipo BLOB ou TEXT ou presenza dunha columna " -"maior de 512 bytes), como se menciona no comezo dun artigo do grupo " +"maior de 512 bytes), como se menciona no comezo dun artigo do grupo " "Pythian" #: libraries/advisory_rules.txt:267 #, php-format -#| msgid "%s%% of all connections are aborted. This value should be below 1%%" msgid "" "%s%% of all temporary tables are being written to disk, this value should be " "below 25%%" @@ -13419,13 +13358,11 @@ msgstr "" "disco, independentemente do valor destas variábeis. Para eliminalas hai que " "reescribir as consultas para que eviten esas condicións (Nunha táboa " "temporal: presenza dunha columna tipo BLOB ou TEXT ou presenza dunha columna " -"maior de 512 bytes), como se menciona na documentación do MySQL" +"maior de 512 bytes), como se menciona na documentación do MySQL" #: libraries/advisory_rules.txt:274 #, php-format -#| msgid "Opened table rate: %s, this value should be less than 10 per hour" msgid "" "Rate of temporary tables being written to disk: %s, this value should be " "less than 1 per hour" @@ -13462,7 +13399,6 @@ msgstr "Uso histórico máximo do buffer de chaves MyISAM" #: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 #, php-format -#| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "O buffer de chaves de MyISAM (caché do índice ) %% empregado é baixo." @@ -13478,7 +13414,6 @@ msgstr "" #: libraries/advisory_rules.txt:301 #, php-format -#| msgid "Index reads from memory: %s%%, this value should be above 95%%" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "" @@ -13486,13 +13421,11 @@ msgstr "" "superar o 95%%" #: libraries/advisory_rules.txt:304 -#| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Porcentaxe do buffer de chaves de MySISAM empregado" #: libraries/advisory_rules.txt:309 #, php-format -#| msgid "Index reads from memory: %s%%, this value should be above 95%%" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% buffer de chaves de MyISM %% empregado: %s%%; este valor debería superar " @@ -13597,7 +13530,6 @@ msgstr "" #: libraries/advisory_rules.txt:346 #, php-format -#| msgid "Index reads from memory: %s%%, this value should be above 95%%" msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Bloqueos de táboa inmediatos: %s%%; este valor debería superar o 95%%" @@ -13646,7 +13578,6 @@ msgstr "Aumente {thread_cache_size}." #: libraries/advisory_rules.txt:367 #, php-format -#| msgid "Index reads from memory: %s%%, this value should be above 95%%" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Taxa de impactos da caché de fíos: %s%%; este valor debería superar o 80%%" @@ -13717,9 +13648,6 @@ msgstr "" #: libraries/advisory_rules.txt:390 #, php-format -#| msgid "" -#| "The number of opened files is at %s%% of the limit. It should be below " -#| "85%%" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" @@ -13785,7 +13713,6 @@ msgstr "" #: libraries/advisory_rules.txt:411 #, php-format -#| msgid "%s%% of all connections are aborted. This value should be below 1%%" msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "O %s%% de todos os clientes foi cancelado. Este valor debería ser inferior " @@ -13797,9 +13724,6 @@ msgstr "Taxa de clientes cancelados" #: libraries/advisory_rules.txt:418 #, php-format -#| msgid "" -#| "Aborted connections rate is at %s, this value should be less than 1 per " -#| "hour" msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "A taxa de clientes cancelados está en %s; este valor debería ser inferior a " @@ -13854,15 +13778,12 @@ msgstr "" "chega simplemente con cambiar o valor desta variábel. hai que apagar o " "servidor, retirar os ficheiros de rexistro de InnoDB, configurar o novo " "valor en my.cnf, iniciar o servidor e a seguir comprobar os rexistros de " -"erro par ver que todo fose ben. Consulte tamén esta entrada de blogue" +"erro par ver que todo fose ben. Consulte tamén esta entrada de blogue" #: libraries/advisory_rules.txt:434 #, php-format -#| msgid "" -#| "The InnoDB log file size is not an appropriate size, in relation to the " -#| "InnoDB buffer pool." msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " "it should not be below 20%%" @@ -13894,12 +13815,11 @@ msgstr "" "Normalmente abonda con configurar innodb_log_file_size como o 25%% do tamaño " "de {innodb_buffer_pool_size}. Un innodb_log_file moi grande enlentece " "considerabelmente o tempo de recuperación a seguir unha quebra da base de " -"datos. Consulte tamén este artigo. Hai que apagar o servidor, retirar " -"os ficheiros de rexistro de InnoDB, configurar o novo valor en my.cnf, " -"iniciar o servidor, e a seguir comprobar os rexistros de erro para comprobar " -"que todo fose ben. Consulte tamén este artigo. Hai " +"que apagar o servidor, retirar os ficheiros de rexistro de InnoDB, " +"configurar o novo valor en my.cnf, iniciar o servidor, e a seguir comprobar " +"os rexistros de erro para comprobar que todo fose ben. Consulte tamén esta entrada de blogue" @@ -13934,13 +13854,13 @@ msgstr "" "de InnoDB. Asígnelle toda a memoria restante a este buffer. Para os " "servidores de bases de datos que só empregan InnoDB como motor de " "almacenamento e non teñen outros servizos (p.ex. un servidor web) en " -"execución, pódese configurar isto tan alto como o 80%% da memoria dispoñíbel. " -"De non ser o caso, hai que valorar con coidado o consumo de memoria dos " -"demais servizos e as táboas que non sexan de InnoDB e configurar esta " -"variábel en consecuencia. Se se configura demasiado alta, o sistema comezará " -"a gravar no disco, o que reduce o desempeño de maneira significativa. " -"Consulte tamén este artigo" +"execución, pódese configurar isto tan alto como o 80%% da memoria " +"dispoñíbel. De non ser o caso, hai que valorar con coidado o consumo de " +"memoria dos demais servizos e as táboas que non sexan de InnoDB e configurar " +"esta variábel en consecuencia. Se se configura demasiado alta, o sistema " +"comezará a gravar no disco, o que reduce o desempeño de maneira " +"significativa. Consulte tamén este artigo" #: libraries/advisory_rules.txt:448 #, php-format @@ -13970,14 +13890,19 @@ msgid "" "refman/5.5/en/concurrent-inserts.html\">MySQL Documentation" msgstr "" "Configurar {concurrent_insert} como 1 reduce a contención entre as lecturas " -"e as escritas nunha táboa dada. Consulte tamén a documentación do MySQL" +"e as escritas nunha táboa dada. Consulte tamén a documentación do MySQL" #: libraries/advisory_rules.txt:457 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definido como 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "Array de PHP" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." @@ -13989,7 +13914,8 @@ msgstr "concurrent_insert está definido como 0" #~ "MIME types printed in italics do not have a separate transformation " #~ "function" #~ msgstr "" -#~ "Os tipos MIME en cursiva non contan cunha función de transformación separada" +#~ "Os tipos MIME en cursiva non contan cunha función de transformación " +#~ "separada" #~ msgid "rows" #~ msgstr "Visualizar" @@ -14184,8 +14110,8 @@ msgstr "concurrent_insert está definido como 0" #~ "appropriate column name." #~ msgstr "" #~ "O campo que se mostra aparece en rosa. Para indicar que un campo se " -#~ "seleccione ou non como o campo a mostrar, prema a icona \"Escoller o campo a " -#~ "mostrar\" e a seguir o nome do campo apropiado." +#~ "seleccione ou non como o campo a mostrar, prema a icona \"Escoller o " +#~ "campo a mostrar\" e a seguir o nome do campo apropiado." #~ msgid "memcached usage" #~ msgstr "Uso do espazo" @@ -14285,8 +14211,8 @@ msgstr "concurrent_insert está definido como 0" #~ "deber a que php atopou un erro nel ou a que php non puido atopar o " #~ "ficheiro.
Invoque o ficheiro de configuración directamente mediante o " #~ "vínculo que hai máis abaixo e lea a mensaxe de erro de php que reciba. Na " -#~ "maioría dos casos simplemente faltan unha aspa ou un ponto e vírcula
Se " -#~ "recibe unha páxina en branco é que todo está ben." +#~ "maioría dos casos simplemente faltan unha aspa ou un ponto e vírcula
Se recibe unha páxina en branco é que todo está ben." #~ msgid "Dropping Procedure" #~ msgstr "Procedementos" @@ -14315,8 +14241,8 @@ msgstr "concurrent_insert está definido como 0" #~ "Server traffic: These tables show the network traffic statistics " #~ "of this MySQL server since its startup." #~ msgstr "" -#~ "Tráfico do servidor: Estas táboas mostran as estatísticas do tráfico " -#~ "da rede neste servidor de MySQL desde que se iniciou." +#~ "Tráfico do servidor: Estas táboas mostran as estatísticas do " +#~ "tráfico da rede neste servidor de MySQL desde que se iniciou." #~ msgid "" #~ "Query statistics: Since its startup, %s queries have been sent to " @@ -14399,9 +14325,9 @@ msgstr "concurrent_insert está definido como 0" #~ "\\'b')." #~ msgstr "" #~ "Introduza os valores das opcións de transformación empregando este " -#~ "formato:'a', 100, b,'c'...
Se necesitar introducir unha barra para trás " -#~ "(\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de barra para " -#~ "trás (por exemplo '\\\\xyz' ou 'a\\'b')." +#~ "formato:'a', 100, b,'c'...
Se necesitar introducir unha barra para " +#~ "trás (\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de " +#~ "barra para trás (por exemplo '\\\\xyz' ou 'a\\'b')." #~ msgid "" #~ "Enter each value in a separate field. If you ever need to put a backslash " @@ -14409,9 +14335,9 @@ msgstr "concurrent_insert está definido como 0" #~ "a backslash (for example '\\\\xyz' or 'a\\'b')." #~ msgstr "" #~ "Introduza os valores das opcións de transformación empregando este " -#~ "formato:'a', 100, b,'c'...
Se necesitar introducir unha barra para trás " -#~ "(\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de barra para " -#~ "trás (por exemplo '\\\\xyz' ou 'a\\'b')." +#~ "formato:'a', 100, b,'c'...
Se necesitar introducir unha barra para " +#~ "trás (\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de " +#~ "barra para trás (por exemplo '\\\\xyz' ou 'a\\'b')." #~ msgid "New table" #~ msgstr "Sen táboas" @@ -14438,9 +14364,9 @@ msgstr "concurrent_insert está definido como 0" #~ "SQL queries settings, for SQL Query box options see [a@?page=form&" #~ "formset=main_frame#tab_Sql_box]Navigation frame[/a] settings" #~ msgstr "" -#~ "Configuración das solicitudes de SQL; para as opcións da caixa Procuras SQL " -#~ "vexa a configuración da " -#~ "[a@?page=form&formset=main_frame#tab_Sql_box]moldura de navegación[/a]" +#~ "Configuración das solicitudes de SQL; para as opcións da caixa Procuras " +#~ "SQL vexa a configuración da [a@?page=form&" +#~ "formset=main_frame#tab_Sql_box]moldura de navegación[/a]" #~ msgid "Remove carriage return/line field characters within columns" #~ msgstr "Eliminar os caracteres CRLF dentro dos campos" @@ -14455,7 +14381,8 @@ msgstr "concurrent_insert está definido como 0" #~ msgstr "lembrar o modelo" #~ msgid "Imported file compression will be automatically detected from: %s" -#~ msgstr "A compresión do ficheiro importado detectarase automaticamente de: %s" +#~ msgstr "" +#~ "A compresión do ficheiro importado detectarase automaticamente de: %s" #~ msgid "Add into comments" #~ msgstr "Engadir aos comentarios" diff --git a/po/he.po b/po/he.po index c79946f4e8..fa761e34ce 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: hebrew \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "הצגת הכול" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "חיפוש" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "חיפוש" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "ביצוע" @@ -108,7 +111,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "מסד הנתונים %1$s נוצר." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "הערה על מסד הנתונים: " @@ -118,17 +121,17 @@ msgstr "הערה על מסד הנתונים: " msgid "Table comments" msgstr "הערות לטבלה" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -140,34 +143,34 @@ msgstr "עמודה" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "סוג" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -176,13 +179,13 @@ msgid "Null" msgstr "ריק" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -190,10 +193,10 @@ msgstr "ריק" msgid "Default" msgstr "בררת מחדל" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -202,10 +205,10 @@ msgstr "קישורים אל" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -216,18 +219,21 @@ msgstr "הערות" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "לא" @@ -240,19 +246,22 @@ msgstr "לא" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "כן" @@ -260,8 +269,8 @@ msgstr "כן" msgid "View dump (schema) of database" msgstr "צפייה בשליפה (תבנית) של מסד נתונים" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "לא נמצאו טבלאות במסד הנתונים." @@ -277,74 +286,74 @@ msgstr "ביטול הבחירה הכללית" msgid "The database name is empty!" msgstr "שם מסד הנתונים ריק!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "שם מסד הנתונים %1$s הוחלף בשם %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "מסד הנתונים %1$s הועתק אל %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "שינוי שם מסד הנתונים לשם" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "הסרת מסד הנתונים" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "מסד הנתונים %s הושמט." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "השמטת מסד הנתונים (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "העתקת מסד הנתונים אל" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "מבנה בלבד" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "מבנה ונתונים" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "נתונים בלבד" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE לפני העתקה" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "הוספת %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "הוספת הגבלות" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "מעבר למסד הנתונים שהועתק" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -354,14 +363,14 @@ msgstr "מעבר למסד הנתונים שהועתק" msgid "Collation" msgstr "איסוף" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "אחסון התצורה של phpMyAdmin הופסקה. כדי לגלות מדוע יש ללחוץ %sכאן%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "עריכה או יצוא של תבנית יחסית" @@ -371,16 +380,18 @@ msgstr "עריכה או יצוא של תבנית יחסית" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "טבלה" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "שורות" @@ -390,13 +401,13 @@ msgid "Size" msgstr "גודל" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "בשימוש" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -404,7 +415,7 @@ msgstr "יצירה" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -412,7 +423,7 @@ msgstr "עדכון אחרון" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -425,92 +436,15 @@ msgid_plural "%s tables" msgstr[0] "טבלה אחת (%s)" msgstr[1] "%s טבלאות" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "עליך לבחור לפחות עמודה אחת לתצוגה" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "עולה" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "יורד" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "סידור" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "הצגה" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "קריטריונים" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "הוספת/הסרת שורות של קריטריונים" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "הוספת/מחיקת עמודות" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "עדכון שאילתה" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "שימוש בטבלאות" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "או" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "וגם" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "הכנסה" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "מחיקה" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "שינוי" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "מעבר ל%sבונה החזותי%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "שאילתת SQL על מסד הנתונים %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "שליחת שאילתה" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -551,7 +485,7 @@ msgstr "המעקב פעיל." msgid "Tracking is not active." msgstr "המעקב אינו פעיל." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -579,20 +513,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s הוא מנוע האחסון כבררת המחדל של שרת MySQL זה." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "עם הנבחרים:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "סימון הכול" @@ -600,31 +535,32 @@ msgstr "סימון הכול" msgid "Check tables having overhead" msgstr "בדיקת טבלאות בעלות תקורה" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "יצוא" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "ריקון" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -668,17 +604,18 @@ msgstr "טבלאות במעקב" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "מסד נתונים" @@ -696,18 +633,26 @@ msgstr "עודכנה" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "מצב" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "פעולה" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "הצגה" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "מחיקת נתוני המעקב לטבלה זו" @@ -748,31 +693,31 @@ msgstr "יומן מסד נתונים" msgid "Bad type!" msgstr "הסוג שגוי!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "סוג הייצוא הנבחר חייב להישמר לקובץ!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "פרמטרים שגויים!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "אין מספיק מקום לשמירת הקובץ %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "הקובץ %s כבר קיים בשרת, נא לשנות את שם הקובץ או לסמן את אפשרות השכתוב." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "לשרת אין הרשאה לשמור את קובץ %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "השליפה נשמרה אל הקובץ %s." @@ -795,7 +740,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "פני השטח" @@ -868,7 +813,7 @@ msgstr "" "יש לבחור ב„גאומטריה מטקסט” מהעמודה „פונקציה“ ולהדביק את המחרוזת שלהלן לשדה " "„ערך“" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -877,20 +822,20 @@ msgstr "" "כפי הנראה ניסית להוריד קובץ גדול מדי. נא לפנות ל%sתיעוד%s לקבלת דרכים לעקיפת " "הגבלה זו." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "הצגת סימנייה" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "הסימנייה נמחקה." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "לא ניתן לקרוא את הקובץ" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -900,7 +845,7 @@ msgstr "" "ניסית לטעון קובץ עם דחיסה שאינה נתמכת (%s). או שהתמיכה בדחיסה לא הוטמעה או " "שבוטלה בהגדרות שלך." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -910,26 +855,26 @@ msgstr "" "המרבי המותר בתצורת ה־PHP שלך. ניתן לעיין ב[a@./Documentation." "html#faq1_16@Documentation]שו״ת 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "לא ניתן להמיר את קידוד התווים של הקובץ ללא ספרייה להמרת קידודי תווים" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "לא ניתן לטעון את תוספי הייבוא, נא לבדוק האם ההתקנה שלך תקינה!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "הסימנייה %s נוצרה" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "הייבוא הושלם בהצלחה, הופעלו %d שאילתות." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -937,7 +882,7 @@ msgstr "" "תום זמן ההמתנה של הסקריפט עבר, אם ברצונך לסיים את הייבוא נא לשלוח מחדש את " "אותו הקובץ והייבוא יימשך." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -945,8 +890,8 @@ msgstr "" "עם זאת, בהרצה האחרונה לא נותחו נתונים כלל, לרוב משמעות הדבר היא ש־phpMyAdmin " "לא יוכל להשלים יבוא זה אלמלא גבול זמן ההמתנה של ה־php יוגדל." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -963,7 +908,7 @@ msgstr "" "phpMyAdmin מתנהג בצורה יותר ידידותית עם דפדפן התומך במסגרות (frames-" "capable)." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "הוראות \"DROP DATABASE\" מנוטרלות." @@ -972,7 +917,7 @@ msgstr "הוראות \"DROP DATABASE\" מנוטרלות." msgid "Do you really want to execute \"%s\"?" msgstr "האם אכן ברצונך להפעיל את „%s”?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "פעולה זו עלולה להשמיד מסד נתונים שלם!" @@ -1030,16 +975,20 @@ msgstr "שם המארח ריק!" msgid "The user name is empty!" msgstr "שם המשתמש ריק!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "הססמה ריקה!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "הססמאות אינן זהות!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "הוספת משתמש" @@ -1059,9 +1008,9 @@ msgstr "סגירה" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1320,12 +1269,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "ללא" @@ -1511,10 +1461,10 @@ msgid "Explain output" msgstr "הסברת SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "זמן" @@ -1861,7 +1811,7 @@ msgstr "שאילתת SQL" msgid "No rows selected" msgstr "לא נבחרו שורות" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "שינוי" @@ -1870,8 +1820,8 @@ msgstr "שינוי" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d הוא לא מספר שורה תקין." @@ -1952,7 +1902,7 @@ msgstr "תוכן עניניים" msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "העתקה" @@ -2495,14 +2445,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "שגיאה" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "שאילתת SQL" @@ -2513,7 +2463,7 @@ msgstr "שאילתת SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2542,6 +2492,10 @@ msgstr "ללא קוד PHP" msgid "Create PHP Code" msgstr "ייצור קוד PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "שליחת שאילתה" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2569,7 +2523,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "מנועים" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2598,7 +2552,7 @@ msgstr "הוספת שדה חדש" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2607,7 +2561,7 @@ msgstr "התחלה" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2617,7 +2571,7 @@ msgstr "הקודם" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2627,7 +2581,7 @@ msgstr "הבא" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2650,16 +2604,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "מבנה" @@ -2667,21 +2622,20 @@ msgstr "מבנה" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "הכנסה" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "עיון" @@ -2702,21 +2656,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "הדפסה" @@ -2733,6 +2687,74 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "עולה" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "יורד" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "סידור" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "קריטריונים" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "הוספת/הסרת שורות של קריטריונים" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "הוספת/מחיקת עמודות" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "עדכון שאילתה" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "שימוש בטבלאות" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "או" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "וגם" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "הכנסה" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "מחיקה" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "שינוי" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "שאילתת SQL על מסד הנתונים %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "לפחות אחת מהמילים" @@ -2775,8 +2797,8 @@ msgstr[1] "%1$s תוצאות בטבלה %2$s" msgid "Delete the matches for the %s table?" msgstr "האם למחוק את התוצאות עבור הטבלה %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2811,74 +2833,74 @@ msgstr "בתוך הטבלאות:" msgid "Inside column:" msgstr "בתוך העמודה:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy msgid "Save edited data" msgstr "תיקיית בית של נתונים" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "שבת" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "מספר שדות" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "יום שני" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "מאוזן" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "מאוזן (headers מסובבים)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "ניצב" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "הרצת שאילתה מועדפת" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2892,113 +2914,113 @@ msgstr "" msgid "Options" msgstr "פעולות" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "טקסטים חלקיים" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "טקסטים מלאים" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "תצוגת יחסים" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy msgid "Relational display column" msgstr "תצוגת יחסים" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy msgid "Hide browser transformation" msgstr "שינויי צורה זמינים" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "השורה נמחקה" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "יכול להיות הערכה. ראה FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "בשאילתה" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "מראה שורות" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "סה\"כ" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "תצוגת הדפסה (עם טקסטים מלאים)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "מציג הערות עמודה" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "קישור לא נמצא" @@ -3120,8 +3142,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "מאגרי נתונים" @@ -3137,11 +3159,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3159,9 +3181,9 @@ msgstr "" msgid "Query" msgstr "שאילתה" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "הרשאות" @@ -3170,7 +3192,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3272,51 +3294,51 @@ msgstr "%s מובטל על שרת MySQL זה." msgid "This MySQL server does not support the %s storage engine." msgstr "שרת MySQL לא תומך במנוע אחסון %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "חפש במסד הנתונים" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "חפש במסד הנתונים" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "טבלה %s שונתה אל %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3325,7 +3347,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "פונקציה" @@ -3338,7 +3360,7 @@ msgstr "פעולות" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3383,7 +3405,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3743,7 +3765,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "טבלאות" @@ -3754,9 +3776,10 @@ msgstr "טבלאות" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "נתונים" @@ -3872,33 +3895,33 @@ msgid "Disabled" msgstr "מבוטל" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "מבנה" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4321,13 +4344,13 @@ msgstr "דחיסה" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "" @@ -4354,7 +4377,6 @@ msgstr "הורדת שדות עם" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "החלפת NULL ע\"י" @@ -4401,25 +4423,24 @@ msgstr "תבנית שם קובץ" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s טבלאות" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "כלול כותרת טבלה" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "כותרת טבלה" @@ -4428,14 +4449,14 @@ msgid "Continued table caption" msgstr "כותרת טבלה מומשך" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "מפתח תווית" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "סוג MIME" @@ -4477,7 +4498,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4490,7 +4511,7 @@ msgid "Use delayed inserts" msgstr "השתמש בהכנסות מעוכבות" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4507,7 +4528,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4517,7 +4538,7 @@ msgid "Export type" msgstr "סוג ייצוא" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4572,7 +4593,6 @@ msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4634,7 +4654,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4872,7 +4891,6 @@ msgid "Customize text input fields" msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5986,9 +6004,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "סיסמא" @@ -6155,7 +6175,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6177,19 +6196,16 @@ msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV עבור MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6245,27 +6261,27 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "השרת אינו מגיב" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6276,13 +6292,15 @@ msgid "Change password" msgstr "שינוי סיסמא" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "ללא סיסמא" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "הקלדה נוספת" @@ -6307,8 +6325,9 @@ msgstr "יצירת מאגר נתונים חדש" msgid "Create" msgstr "יצירה" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "ללא הרשאות" @@ -6319,12 +6338,12 @@ msgid "Create table" msgstr "יצירת עמוד חדש" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "שם" @@ -6489,7 +6508,7 @@ msgid "View output as text" msgstr "שמירה כקובץ" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6949,51 +6968,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "מבנה בלבד" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7065,11 +7084,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7323,7 +7342,7 @@ msgstr "תיעוד phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7435,84 +7454,84 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "שורות מסתיימות ע\"י" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "שדות מוקפים ע\"י" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "הורדת שדות עם" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "שורות מסתיימות ע\"י" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "החלפת NULL ע\"י" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "מהדורת Excel" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "הוצאת מידע עבור טבלה" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "נשלח" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7520,25 +7539,25 @@ msgstr "נשלח" msgid "Definition" msgstr "תיאור" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "מבנה טבלה עבור טבלה" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "מבנה בלבד" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7558,259 +7577,249 @@ msgstr "(מומשך)" msgid "Structure of table @TABLE@" msgstr "מבנה של טבלה __TABLE__" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy msgid "Object creation options" msgstr "לתבנית זאת אין אפשרויות" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "כותרת טבלה" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "מציג הערות עמודה" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "סוגי MIME זמינים" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "מארח" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "זמן ייצור" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "גרסת שרת" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "גרסת PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "ייצוא" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "מאוזן (headers מסובבים)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "קבצי ייבוא" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "הוספת הערה מותאמת אל פתיחה(\\n לשבירת שורות)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "משפטים" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "משפטים" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +msgid "Data creation options" +msgstr "לתבנית זאת אין אפשרויות" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "תהליכים" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "פונקציה" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "הגבלות לטבלה" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy msgid "Error reading data:" msgstr "מאפשר מחיקת מידע." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7879,6 +7888,10 @@ msgstr "שמות עמודה" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7934,6 +7947,10 @@ msgstr "תואם MySQL 4.0" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8120,11 +8137,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "ללא תיאור" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "ביטול הסימון הכולל" @@ -8144,9 +8162,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "שם משתמש" @@ -8182,34 +8201,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "כל משתמש" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "השתמש בשדה טקסט" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "כל שרת מארח" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "מקומי" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "מארח זה" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8223,7 +8251,7 @@ msgstr "ייצור סיסמא" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8261,8 +8289,8 @@ msgid "Edit event" msgstr "נשלח" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8350,7 +8378,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8495,25 +8524,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +msgid "Execution results of routine %s" +msgstr "מאפשר יצירת שגרות מאוחסנות." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -msgid "Execution results of routine %s" -msgstr "מאפשר יצירת שגרות מאוחסנות." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8666,29 +8695,29 @@ msgstr "לא נמצאו טבלאות במאגר נתונים." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "הטבלה \"%s\" לא קיימת!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "אנא הגדר נקודות ציון עבור טבלה %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8837,6 +8866,454 @@ msgstr "" msgid "Current Server" msgstr "שרת" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "ללא הרשאות." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "כלול כל ההרשאות חוץ מ- GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +#, fuzzy +msgid "Allows reading data." +msgstr "מאפשר מחיקת מידע." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +#, fuzzy +msgid "Allows changing data." +msgstr "מאפשר מחיקת מידע." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "מאפשר מחיקת מידע." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +#, fuzzy +msgid "Allows creating new databases and tables." +msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "מאפשר שינוי של מבני הטבלאות הקיימות." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "מאפשר יצירת טבלאות זמניות." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +#, fuzzy +msgid "Allows creating new views." +msgstr "מאפשר יצירת טבלאות חדשות." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "מאפשר יצירת שגרות מאוחסנות." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +#, fuzzy +msgid "Allows altering and dropping stored routines." +msgstr "מאפשר יצירת שגרות מאוחסנות." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +#, fuzzy +msgid "Allows executing stored routines." +msgstr "מאפשר יצירת שגרות מאוחסנות." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "ללא" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "גבולות משאבים" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "הרשאות ספציפיות-לטבלאות" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "הערה: שמות הרשאות MySQL מובטאות באנגלית" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "ניהול" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "הרשאות גלובליות" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "הרשאות ספציפיות למאגר נתונים" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "מאפשר יצירת טבלאות חדשות." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "מאפשר מחיקת טבלאות." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "מידע כניסה" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "אל תשנה את הסיסמא" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "הסיסמא עבור %s שונתה בהצלחה." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "אתה שללת הרשאות עבור %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "משתמש" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "הענקה" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +msgid "User has been added." +msgstr "שדה %s נמחק" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "כל דבר" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "עולמי" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "ספציפי למאגר הנתונים" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "תו כללי" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "לא נמצאו משתמשים." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "עריכת הרשאות" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "שלילה" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "ייצוא" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... שמירת הישן." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... מחיקת הישן מטבלאות המשתמשים." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "שינוי מידע כניסה / העתקת משתמש" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "הרשאות ספציפיות-לעמודה" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "הוספת הרשאות למאגר הנתונים הבא" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "הוספת הראשאות לטבלה הבאה" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "הסרת משתמשים שנבחרו" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "טוען מחדש הרשאות" + +#: libraries/server_privileges.lib.php:2606 +#, fuzzy +msgid "The selected users have been deleted successfully." +msgstr "%s מסדי נתונים נמחקו בהצלחה." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "אתה עדכנת הרשאות עבור %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "הרשאות" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "הרשאות" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "סקירת משתמשים" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של " +"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " +"ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "משתמש חדש נוסף." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -8888,11 +9365,11 @@ msgstr "לוח שנה" msgid "Columns" msgstr "שמות עמודה" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" @@ -9182,12 +9659,6 @@ msgstr "גרסת שרת" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "משתמש" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9740,444 +10211,20 @@ msgstr "" msgid "disabled" msgstr "מבוטל" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "כלול כל ההרשאות חוץ מ- GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "מאפשר שינוי של מבני הטבלאות הקיימות." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -#, fuzzy -msgid "Allows altering and dropping stored routines." -msgstr "מאפשר יצירת שגרות מאוחסנות." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -#, fuzzy -msgid "Allows creating new databases and tables." -msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "מאפשר יצירת שגרות מאוחסנות." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "מאפשר יצירת טבלאות חדשות." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "מאפשר יצירת טבלאות זמניות." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -#, fuzzy -msgid "Allows creating new views." -msgstr "מאפשר יצירת טבלאות חדשות." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "מאפשר מחיקת מידע." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "מאפשר מחיקת טבלאות." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -#, fuzzy -msgid "Allows executing stored routines." -msgstr "מאפשר יצירת שגרות מאוחסנות." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -#, fuzzy -msgid "Allows reading data." -msgstr "מאפשר מחיקת מידע." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -#, fuzzy -msgid "Allows changing data." -msgstr "מאפשר מחיקת מידע." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "ללא הרשאות." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "ללא" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "הרשאות ספציפיות-לטבלאות" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "הערה: שמות הרשאות MySQL מובטאות באנגלית" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "ניהול" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "הרשאות גלובליות" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "הרשאות ספציפיות למאגר נתונים" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "גבולות משאבים" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "מידע כניסה" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "אל תשנה את הסיסמא" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "לא נמצאו משתמשים." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "משתמש חדש נוסף." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "אתה עדכנת הרשאות עבור %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "אתה שללת הרשאות עבור %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "הסיסמא עבור %s שונתה בהצלחה." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "מוחק %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "טוען מחדש הרשאות" - -#: server_privileges.php:1518 -#, fuzzy -msgid "The selected users have been deleted successfully." -msgstr "%s מסדי נתונים נמחקו בהצלחה." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "עריכת הרשאות" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "שלילה" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "ייצוא" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "כל דבר" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "הרשאות" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "הרשאות" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "סקירת משתמשים" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "הענקה" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "הסרת משתמשים שנבחרו" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של " -"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " -"ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "הרשאות ספציפיות-לעמודה" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "הוספת הרשאות למאגר הנתונים הבא" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "הוספת הראשאות לטבלה הבאה" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "שינוי מידע כניסה / העתקת משתמש" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... שמירת הישן." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... מחיקת הישן מטבלאות המשתמשים." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "עולמי" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "ספציפי למאגר הנתונים" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "תו כללי" - -#: server_privileges.php:2590 -#, fuzzy -msgid "User has been added." -msgstr "שדה %s נמחק" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11776,41 +11823,41 @@ msgstr "" msgid "Wrong data" msgstr "אין מאגרי נתונים" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "האם אתה באמת רוצה " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "בדיקת תקינות SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "תוצאת SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "נוצר ע\"י" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "תווית" diff --git a/po/hi.po b/po/hi.po index 5bc57298fd..47c60c9761 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-19 08:56+0200\n" "Last-Translator: rajnikant sharma \n" "Language-Team: hindi \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "सभी दिखाएँ" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "ढूंढें" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "ढूंढें" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "जाएँ" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s डेटाबेस बनाया गया है." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " @@ -119,17 +122,17 @@ msgstr "डाटाबेस टिप्पणि: " msgid "Table comments" msgstr "टेबल टिप्पणि:" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "स्तम्भ" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "प्रकार/किस्म" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "शून्य" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "शून्य" msgid "Default" msgstr "तयशुदा" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "के लिए लिंक" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "टिप्पणी" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "नहीं" @@ -241,19 +247,22 @@ msgstr "नहीं" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "हाँ " @@ -261,8 +270,8 @@ msgstr "हाँ " msgid "View dump (schema) of database" msgstr "डेटाबेस का डंप (स्कीमा) नजारा" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "डाटाबेस में कोई टेबल नहीं।" @@ -278,76 +287,76 @@ msgstr "सभी को रद्द करें" msgid "The database name is empty!" msgstr "डेटाबेस का नाम खाली है" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "डेटाबेस %s का नाम बदल कर %s रखा गया है" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "डेटाबेस %s से %s में नकल किया गया है" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "डेटाबेस का नाम इसमें पुनर्नामकरण करें" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "डेटाबेस को हटा दे" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "डाटाबेस %s को ड्रोप कर दिया गया है।" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "डेटाबेस को ड्रप करे " -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "केवल संरचना" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "संरचना और डाटा" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "केवल डाटा" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s जोडें" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "शर्तें जोडें" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "नक़ल किये गए डाटाबेस पर जायें" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय msgid "Collation" msgstr "क्रम में करें" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -366,7 +375,7 @@ msgstr "" "phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " "%sयहाँ%s पर क्लिक करें." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें " @@ -376,16 +385,18 @@ msgstr "संबंधपरक स्कीमा को संपादित #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "टेबल " #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "रो" @@ -395,13 +406,13 @@ msgid "Size" msgstr "आकार" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "उपयोग में है" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -409,7 +420,7 @@ msgstr "रचना" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -417,7 +428,7 @@ msgstr "पिछला नवीनीकरण" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -430,93 +441,16 @@ msgid_plural "%s tables" msgstr[0] " %s टेबलें" msgstr[1] " %s टेबल" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "आपको कम से कम एक स्तंभ प्रदर्शित करने के लिए चयन करना है." -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "आरोही" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "अवरोही" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "सॉर्ट" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "दिखाओ" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "मापदंड" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "मापदंड रो जोडें/हटायें" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "कोलम जोडें/हटायें" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "क्वरी का नवीनीकरण करें" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "टेबल का उपयोग करो" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "अथवा" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "और" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "घुसाएं" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "हटाइए" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "संशोधन" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "दृश्य निर्माता" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "डेटाबेस %s पर SQL क्वरी:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "क्वरी भेजें" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "ट्रैकिंग सक्रिय है" msgid "Tracking is not active." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s इस MySQL सर्वर पर तयशुदा भंडारण इंजन है." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "चुने हुओं को:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "सभी को चेक करें" @@ -606,31 +541,32 @@ msgstr "सभी को चेक करें" msgid "Check tables having overhead" msgstr "ओवर्हेअद वाली तालुकाओं को चेक करें." -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "निर्यात" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "छपाई द्रश्य." -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "खाली" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "ट्रैक की गयी टेबलएं" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "डाटाबेस" @@ -702,18 +639,26 @@ msgstr "अद्यतन" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "स्थिति" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "कार्य" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "दिखाओ" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ" @@ -751,38 +696,37 @@ msgid "Database Log" msgstr "डेटाबेस का रोजनामचा" #: export.php:44 -#| msgid "Bar type" msgid "Bad type!" msgstr "बुरा प्रकार" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "चयनित निर्यात प्रकार को फाइल में संचित करने की आवश्यकता है!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Add index" msgid "Bad parameters!" msgstr "अनुक्रमणिका जोड़" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s फाइल को सेव करने के लिए अपर्याप्त जगह पायी गयी है." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "%s फाइल पहले से ही सर्वर पर मौजूद है, फ़ाइल नाम परिवर्तन अधिलेखित या विकल्प की जाँच करें." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "वेब सर्वर के पास फ़ाइल %s को सेव करने की अनुमति नहीं है." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "डंप को %s फाइल में सेव किया गया है." @@ -808,7 +752,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "ज्यामिति" @@ -834,7 +778,6 @@ msgstr "बिंदु %d" #: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 -#| msgid "Add index" msgid "Add a point" msgstr "एक बिंदु जोड़ें" @@ -853,12 +796,10 @@ msgid "Inner Ring" msgstr "आंतरिक वृत्त" #: gis_data_editor.php:241 -#| msgid "Add a new User" msgid "Add a linestring" msgstr "" #: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 -#| msgid "Add a new User" msgid "Add an inner ring" msgstr "नया आंतरिक वृत्त जोडें" @@ -867,12 +808,10 @@ msgid "Polygon" msgstr "बहुभुज" #: gis_data_editor.php:295 js/messages.php:331 -#| msgid "Add column" msgid "Add a polygon" msgstr "नया बहुभुज जोडें" #: gis_data_editor.php:299 -#| msgid "Add a new server" msgid "Add geometry" msgstr "ज्यामिति जोडें" @@ -886,7 +825,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -895,20 +834,20 @@ msgstr "" "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "दोकुमेंताशन%s पढ़ें." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "बुकमार्क प्रदर्शित किया जा रहा है." -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "यह बुकमार्क हटा दिया गया है" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "फाइल पढ़ी नहीं जा सकती. " -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -918,7 +857,7 @@ msgstr "" "आप असमर्थित सम्पीडन (%s) के साथ फाइल लोड करने का प्रयास कर रहे हैं. इसके लिए या तो " "समर्थन कार्यान्वित नहीं है या आपने विन्यास को अक्षम कर रखा है." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -928,35 +867,33 @@ msgstr "" "गया या फ़ाइल का आकार अधिकतम PHP विन्यास द्वारा अनुमति आकार के पार हो गई है. [a@./" "Documentation.html#faq1_16@Documentation] अकसर किये गए सवाल 1.16 [/ a] देखें." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" -msgstr "" -"अक्षर सेट रूपांतरण पुस्तकालय के बिना फ़ाइल के अक्षर सेट को परिवर्तित नहीं कर " -"सकते" +msgstr "अक्षर सेट रूपांतरण पुस्तकालय के बिना फ़ाइल के अक्षर सेट को परिवर्तित नहीं कर सकते" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "आयात प्लगइन्स नहीं लोड किये जा सके. कृपया अपनी संस्थापना जाँचें." -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "आयात सफलतापूर्वक समाप्त हो गया है,%d कुएरी चलाई गयी हैं." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" "स्क्रिप्ट मध्यांतर पारित की गयी है, आयात खत्म करने के लिए वही फाइल फिर से जमा करें." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -964,8 +901,8 @@ msgstr "" "पिछले भाग पर कोई डेटा विश्लेषित नहीं किया गया, इसका मतलब है की जब तक आप php समय " "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -980,17 +917,16 @@ msgstr "वापस" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin तख़्त-सक्षम ब्रोव्सेर के लिए ज्यादा दोस्ताना है." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" बयान अक्षम हैं." #: js/messages.php:30 #, php-format -#| msgid "Do you really want to " msgid "Do you really want to execute \"%s\"?" msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! " @@ -1055,16 +991,20 @@ msgstr "मेज़बान का नाम (hostname) खाली है!" msgid "The user name is empty!" msgstr "यूसर नाम खाली है!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "पासवर्ड खाली है" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "पासवर्ड मिलते झूलते नहीं हैं." -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "naya upyokta" @@ -1084,9 +1024,9 @@ msgstr "बंद" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1364,12 +1304,13 @@ msgstr "ग्रिड पर स्नैप" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "कोई नहीं" @@ -1562,10 +1503,10 @@ msgid "Explain output" msgstr "SQL की व्याख्या " #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "समय" @@ -1883,7 +1824,6 @@ msgid "Values for a new column" msgstr "\"%s\" काँलम के लिए मान " #: js/messages.php:275 -#| msgid "Enter each value in a separate field." msgid "Enter each value in a separate field" msgstr "हर एक मान अलग क्षेत्र में दर्ज करें" @@ -1910,7 +1850,7 @@ msgstr "क्वेरी बॉक्स दिखाएँ" msgid "No rows selected" msgstr "कोई चयनित रो नहीं" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "बदलिये" @@ -1921,8 +1861,8 @@ msgstr "बदलिये" msgid "Query execution time" msgstr "अधिकतम निष्पादन समय" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d वैध रो संख्या नहीं है" @@ -2001,7 +1941,7 @@ msgstr "सूचक का आकार डेटा" msgid "Ignore" msgstr "ध्यान न देना" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "अनुकृति" @@ -2497,14 +2437,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "त्रुटि" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL क्वरी" @@ -2515,7 +2455,7 @@ msgstr "SQL क्वरी" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2544,6 +2484,10 @@ msgstr "php कोड के बिना" msgid "Create PHP Code" msgstr "PHP Code बनाओ" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "क्वरी भेजें" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2568,7 +2512,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "इनलाइन" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "रूपरेखा" @@ -2597,7 +2541,7 @@ msgstr "नियमित कार्य" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2606,7 +2550,7 @@ msgstr "प्रारंभ" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2616,7 +2560,7 @@ msgstr "पिछला" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2626,7 +2570,7 @@ msgstr "अगला" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2651,16 +2595,17 @@ msgstr "चयन करने के लिए क्लिक करें." #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "संरचना" @@ -2668,21 +2613,20 @@ msgstr "संरचना" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "इनसर्ट" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "ब्राउज़" @@ -2703,21 +2647,21 @@ msgstr "अपने कंप्यूटर ब्राउज़ करें msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s; " -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "छापें" @@ -2734,6 +2678,74 @@ msgstr "" msgid "Font size" msgstr "फ़ॉन्ट का आकार" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "आरोही" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "अवरोही" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "सॉर्ट" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "मापदंड" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "मापदंड रो जोडें/हटायें" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "कोलम जोडें/हटायें" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "क्वरी का नवीनीकरण करें" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "टेबल का उपयोग करो" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "अथवा" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "और" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "घुसाएं" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "हटाइए" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "संशोधन" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "डेटाबेस %s पर SQL क्वरी:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "कोई भी एक शब्द" @@ -2776,8 +2788,8 @@ msgstr[1] "%s टेबल के अंदर %s मैच हैं." msgid "Delete the matches for the %s table?" msgstr "इस %s टेबल से मैच हटाएँ" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2812,74 +2824,74 @@ msgstr "टेबल में:" msgid "Inside column:" msgstr "काँलम के अंदर:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "निर्देशिका बचाना" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Textarea columns" msgid "Restore column order" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Textarea rows" msgid "Start row" msgstr "क्षेत्र रोयाँ" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows:" msgid "Number of rows" msgstr "रो की संख्या" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "More" msgid "Mode" msgstr "अधिक" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "समतल" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "खडा" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "कुंजी सॉर्ट" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2892,108 +2904,108 @@ msgstr "कुंजी सॉर्ट" msgid "Options" msgstr "विकल्प" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "आंशिक पाठ" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "पूर्ण पाठ" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "कुंजी संबंधपरक" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "संबंधपरक प्रदर्शन स्तंभ" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "द्विआधारी सामग्री दिखाने" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "BLOB सामग्री दिखाने" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "सामग्री दिखाने" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" "शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] देखें" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "रौ देखिये" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "कुल" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display Features" msgid "Display chart" msgstr "फीचरस दिखाओ" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "दृश्य बनाइये" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "लिंक नहीं मिला" @@ -3115,8 +3127,8 @@ msgid "" msgstr "सूचकांक %1$s और %2$s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "डाटाबेस" @@ -3132,11 +3144,11 @@ msgid "Tracking" msgstr "नज़र रखना" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "ट्रिगर" @@ -3154,9 +3166,9 @@ msgstr "डाटाबेस खाली लग रहा है" msgid "Query" msgstr "क्वरी" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "प्रिविलेज" @@ -3165,7 +3177,7 @@ msgid "Routines" msgstr "नियमित कार्य" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3271,55 +3283,55 @@ msgstr "%s इस MySQL सर्वर के लिए निष्क्र msgid "This MySQL server does not support the %s storage engine." msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show master status" msgid "unknown table status: " msgstr "मास्टर अवस्था" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "स्रोत डेटाबेस" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "विषयवस्तु %s नहीं मिला है!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "अमान्य डेटाबेस" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "अवैध टेबल नाम" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि." -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "टेबल %s का नाम बदल कर %s रखा गया है." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3328,7 +3340,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3340,7 +3352,7 @@ msgstr "ऑपरेटर" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3385,7 +3397,7 @@ msgid "Maximum rows to plot" msgstr "प्रदर्शित रो की अधिकतम संख्या" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें " @@ -3748,7 +3760,7 @@ msgstr "साझा" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "टेबल" @@ -3759,9 +3771,10 @@ msgstr "टेबल" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "डाटा" @@ -3884,32 +3897,32 @@ msgid "Disabled" msgstr "अक्षम" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "संरचना" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "डेटा" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "संरचना और डेटा" @@ -4324,13 +4337,13 @@ msgstr "संक्षिप्तीकरण" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "काँलम नाम प्रथम रो में" @@ -4353,7 +4366,6 @@ msgstr "कॉलम द्वारा बच" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "शून्य की जगह पर" @@ -4393,23 +4405,22 @@ msgstr "टेबल नाम टेम्पलेट" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "टेबल दुम्प करें" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "टैब शीर्षक में शामिल" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "टेबल शीर्षक" @@ -4418,14 +4429,14 @@ msgid "Continued table caption" msgstr "टेबल शीर्षक निरंतर" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "लेबल कुंजी" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME प्रकार" @@ -4462,7 +4473,7 @@ msgid "SQL compatibility mode" msgstr "SQL संगतता मोड" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4475,7 +4486,7 @@ msgid "Use delayed inserts" msgstr "विलंबित इनसर्टस" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "निष्क्रिय विदेशी कुंजी चेक" @@ -4492,7 +4503,7 @@ msgid "Syntax to use when inserting data" msgstr "डेटा दल्तें समय वाक्यविन्यास का उपयोग करें" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "क्वेरी के अधिकतम लंबाई" @@ -4501,7 +4512,7 @@ msgid "Export type" msgstr "निर्यात प्रकार" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "एक सौदे में बंद निर्यात" @@ -4556,7 +4567,6 @@ msgstr "डिफ़ॉल्ट विकल्प अनुकूलित" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4615,7 +4625,6 @@ msgid "Set import and export directories and compression options" msgstr "आयात और निर्यात निर्देशिका और संपीड़न विकल्प सेट करें" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4842,7 +4851,6 @@ msgid "Customize text input fields" msgstr "टेक्स्ट फ़ील्ड जानकारी को अनुकूलित करें" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! टेक्स्ट" @@ -5975,9 +5983,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "पासवर्ड" @@ -6140,7 +6150,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6162,19 +6171,16 @@ msgstr "डेटाबेस निर्यात विकल्प" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV for MX Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6232,27 +6238,27 @@ msgstr "%s विस्तार गायब है. कृपया अपन msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "सर्वर जवाब नहीं दे रहा" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "विवरण..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6263,13 +6269,15 @@ msgid "Change password" msgstr "पासव्रड बदलिये" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "पासवर्ड नहीं है" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "फिर से लिखें" @@ -6292,8 +6300,9 @@ msgstr "नया डाटाबेस बनाओ" msgid "Create" msgstr "बनाइये" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "कोइ प्रिविलेज नहीं" @@ -6303,12 +6312,12 @@ msgid "Create table" msgstr "टेबल बनायें" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "नाम" @@ -6442,7 +6451,7 @@ msgid "View output as text" msgstr "फ़ाइल के रूप में उत्पादन देख" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "प्रारूप" @@ -6902,58 +6911,58 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "चार्ट के लिए कोई डेटा नहीं मिला" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "डेटाबेस पर जायें" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s के लिए डेटा लापता" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "टेबल पर जायें" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "केवल संरचना" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" @@ -7023,11 +7032,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" @@ -7281,7 +7290,7 @@ msgstr "phpMyAdmin दस्तावेज़ीकरण" msgid "Reload navigation frame" msgstr "नेविगेशन फ्रेम पुनः लोड" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "इस प्रारूप के कोई विकल्प नहीं है" @@ -7395,78 +7404,78 @@ msgstr "कोई वैध प्रमाणीकरण कुंजी न msgid "Authenticating..." msgstr "सत्यापन." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "लाईन समाप्त होता है" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Column names" msgid "Columns enclosed with:" msgstr "कोलम के नाम" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Column names" msgid "Columns escaped with:" msgstr "कोलम के नाम" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "लाईन समाप्त होता है" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "घटना" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7474,24 +7483,24 @@ msgstr "घटना" msgid "Definition" msgstr "वर्णन" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "वीएव के लिए संरचना" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7509,108 +7518,97 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "केवल संरचना" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Display Features" msgid "Display comments" msgstr "फीचरस दिखाओ" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Display Features" msgid "Display MIME types" msgstr "फीचरस दिखाओ" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "होस्ट" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "समय पर बनाया" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "निर्यात सामग्री" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "Export as %s" msgid "Export table headers" msgstr "%s के रूप में निर्यात" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" @@ -7618,147 +7616,149 @@ msgstr "" "शीर्षक में कस्टम टिपण्णी जोडें (\n" " लाइनों को विभाजित करें)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Add constraints" msgid "Add statements:" msgstr "शर्तें जोडें" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "परिवर्तन के विकल्प" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "डाटा दुम्प करते वक़्त फ़ुन्क्तिओन का प्रयोग" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "डाटा डालते समय वाक्यविन्यास का उपयोग" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "प्रक्रियाओं" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "दुम्प टेबलओं के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "टेबल के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "टेबल के लिए MIME प्रकार" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "टेबल के लिए संबंध" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "डाटा पढने की अनुमति देता है" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "वस्तु सृजन विकल्प (सभी की सिफारिश)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "दृश्य" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "निर्यात सामग्री" @@ -7827,6 +7827,10 @@ msgstr "कोलम के नाम" msgid "This plugin does not support compressed imports!" msgstr "यह प्लगइन संकुचित आयात का समर्थन नहीं करता" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7883,6 +7887,10 @@ msgstr "SQL संगतता मोड" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8070,11 +8078,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "कोई विवरण नहीं" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "सभी को अनचेक करें" @@ -8094,9 +8103,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "यूसर नेम" @@ -8131,34 +8141,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "कोई भी यूसर" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "कोई भी होस्ट" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "इस होस्ट" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "होस्ट टेबल का उपयोग करें" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8172,7 +8191,7 @@ msgstr "पासवर्ड उत्पन्न" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8213,8 +8232,8 @@ msgid "Edit event" msgstr "सर्वर को संपादित करें" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" @@ -8303,7 +8322,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8452,26 +8472,26 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8642,29 +8662,29 @@ msgstr "डाटाबेस में कोई टेबल नहीं।" msgid "There are no events to display." msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "%s table(s)" msgid "The %s table doesn't exist!" msgstr "%s टेबल(s) मौजूद नहीं है" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8811,6 +8831,445 @@ msgstr "अज्ञात भाषा: %1$s." msgid "Current Server" msgstr "मौजूदा सर्वर" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "कोई प्रिविलेज नहीं" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "ेेोीाेेGRANT के अतिरिक्त सभी इंजन शामिल" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "डाटा पढने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "डेटा डालने और हटाने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "डेटा को बदलने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "डेटा को हटाने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "नया डेटाबेस और टेबल बनाने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "डेटाबेस और टेबल को हटाने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "सर्वर बन्द करने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "सभी यूसरओं प्रक्रियाओं को देखने की अनुमति" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "डेटा फ़ाइलों में आयात और निर्यात करने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "इस MySQL संस्करण में कोई प्रभाव नहीं है" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "सूचक बनाने और हटाने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "मौजूदा टेबल की संरचना में फेरबदल की अनुमति देता है" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "डेटाबेस की पूरी सूची तक पहुंचा देता है" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "सर्वर सेटिंग्स को पुन: लोड और सर्वर के कैश निस्तब्धता की अनुमति देता है" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "नए दृश्य बनाने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "घटना अनुसूचक के लिए घटना को स्थापित करने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "नया नियमित कार्यक्रम बनाने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "संग्रहित routines की फेरबदल और छोड़ने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "यूसर खातों बनाने, गिराना और नाम बदलने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "No" +msgctxt "None privileges" +msgid "None" +msgstr "नहीं" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "संसाधन सीमा" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "यूसर के समकालिक कनेक्शन की संख्या सिमित है" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "केवल टेबल के प्रिविलेज" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है " + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "एडमिनिस्ट्रेशन" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "वैश्विक प्रिविलेज" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "केवल डाटाबेस के प्रिविलेज" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "नया टेबल बनाने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "टेबल को हटाने की अनुमति देता है" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "प्रवेश जानकारी" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "पासवर्ड मत बदलिये" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s का पासवर्ड सफलतापूर्वक बदल गया" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "आपने %s के privileges वापस ले लिया " + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "यूसर के लिए डेटाबेस" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "एक ही नाम के साथ डेटाबेस बनाएँ और सभी विशेषाधिकारों को अनुदान" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "वाइल्डकार्ड नाम (यूसरनाम\\_%) पर सभी विशेषाधिकार अनुदान " + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr ""%s" डेटाबेस पर सभी विशेषाधिकारों का अनुदान करें" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "यूसर" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "अनुदान" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "द्रश्य %s रद्द दिया गया है." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "कोई" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "वैश्विक" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "डेटाबेस-विशेष" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "वाइल्डकार्ड" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "कोई यूसर नहीं।" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "प्रिविलेज एडिट करें" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "वापस लो" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "निर्यात" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... पुराने रखना" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "पुराने यूसर को टेबल से हटाना" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "केवल कोलम के प्रिविलेज" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "इन टेबल के लिये विशेषाधिकार जोडें" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "चयनित यूसर हटायें" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "विशेषाधिकार पुनः लोड" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "प्रिविलेज" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "प्रिविलेज" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "यूसर सिंहावलोकन" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "आपने नया यूसर बना लिया" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "स्रोत डेटाबेस" @@ -8859,11 +9318,11 @@ msgstr "स्पष्ट" msgid "Columns" msgstr "कोलम" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" @@ -9136,12 +9595,6 @@ msgstr "संस्करण दिखाएँ" msgid "Protocol version" msgstr "अधिक सेटिंग्स" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "यूसर" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -9679,435 +10132,20 @@ msgstr "" msgid "disabled" msgstr "अक्षम" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "ेेोीाेेGRANT के अतिरिक्त सभी इंजन शामिल" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "मौजूदा टेबल की संरचना में फेरबदल की अनुमति देता है" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "संग्रहित routines की फेरबदल और छोड़ने की अनुमति देता है" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "नया डेटाबेस और टेबल बनाने की अनुमति देता है" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "नया नियमित कार्यक्रम बनाने की अनुमति देता है" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "नया टेबल बनाने की अनुमति देता है" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "यूसर खातों बनाने, गिराना और नाम बदलने की अनुमति देता है" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "नए दृश्य बनाने की अनुमति देता है" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "डेटा को हटाने की अनुमति देता है" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "डेटाबेस और टेबल को हटाने की अनुमति देता है" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "टेबल को हटाने की अनुमति देता है" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "घटना अनुसूचक के लिए घटना को स्थापित करने की अनुमति देता है" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "डेटा फ़ाइलों में आयात और निर्यात करने की अनुमति देता है" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "सूचक बनाने और हटाने की अनुमति देता है" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "डेटा डालने और हटाने की अनुमति देता है" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "यूसर के समकालिक कनेक्शन की संख्या सिमित है" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "सभी यूसरओं प्रक्रियाओं को देखने की अनुमति" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "इस MySQL संस्करण में कोई प्रभाव नहीं है" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "सर्वर सेटिंग्स को पुन: लोड और सर्वर के कैश निस्तब्धता की अनुमति देता है" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "डाटा पढने की अनुमति देता है" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "डेटाबेस की पूरी सूची तक पहुंचा देता है" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "सर्वर बन्द करने की अनुमति देता है" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "डेटा को बदलने की अनुमति देता है" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "कोई प्रिविलेज नहीं" - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "No" -msgctxt "None privileges" -msgid "None" -msgstr "नहीं" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "केवल टेबल के प्रिविलेज" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है " - -#: server_privileges.php:724 -msgid "Administration" -msgstr "एडमिनिस्ट्रेशन" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "वैश्विक प्रिविलेज" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "केवल डाटाबेस के प्रिविलेज" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "संसाधन सीमा" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "प्रवेश जानकारी" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "पासवर्ड मत बदलिये" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "कोई यूसर नहीं।" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "%s यूसर पहले से मौजूद है" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "आपने नया यूसर बना लिया" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "आपने %s के privileges वापस ले लिया " - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s का पासवर्ड सफलतापूर्वक बदल गया" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "विशेषाधिकार पुनः लोड" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "चयनित यूसर को सफलतापूर्वक हटा दिया गया है" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "प्रिविलेज एडिट करें" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "वापस लो" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "निर्यात" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "कोई" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "प्रिविलेज" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "प्रिविलेज" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "यूसर सिंहावलोकन" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "अनुदान" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "चयनित यूसर हटायें" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "केवल कोलम के प्रिविलेज" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "इन टेबल के लिये विशेषाधिकार जोडें" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... पुराने रखना" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "पुराने यूसर को टेबल से हटाना" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "यूसर के लिए डेटाबेस" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "एक ही नाम के साथ डेटाबेस बनाएँ और सभी विशेषाधिकारों को अनुदान" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "वाइल्डकार्ड नाम (यूसरनाम\\_%) पर सभी विशेषाधिकार अनुदान " - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr ""%s" डेटाबेस पर सभी विशेषाधिकारों का अनुदान करें" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "वैश्विक" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "डेटाबेस-विशेष" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "वाइल्डकार्ड" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "द्रश्य %s रद्द दिया गया है." - #: server_replication.php:82 msgid "Unknown error" msgstr "अज्ञात त्रुटि" @@ -11711,39 +11749,39 @@ msgstr "" msgid "Wrong data" msgstr "कोइ डाटाबेस नहिं" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "क्या आप सचमुच चाहते है की" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "PHP कोड की तरह दिखाएँ" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "SQL मान्य" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQLपरिणाम" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "द्वारा उत्पन्न" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "लेबल" diff --git a/po/hr.po b/po/hr.po index 25a07fc00c..efeb91a527 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: croatian \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Prikaži sve" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Traži" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Traži" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Kreni" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza podataka %1$s uspješno je izrađena." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Komentar baze podataka: " @@ -121,17 +124,17 @@ msgstr "Komentar baze podataka: " msgid "Table comments" msgstr "Komentari tablice" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -145,34 +148,34 @@ msgstr "Nazivi stupaca" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Vrsta" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -181,13 +184,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -195,10 +198,10 @@ msgstr "Null" msgid "Default" msgstr "Zadano" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -207,10 +210,10 @@ msgstr "Povezano s" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -221,18 +224,21 @@ msgstr "Komentari" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ne" @@ -245,19 +251,22 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Da" @@ -265,8 +274,8 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Prikaži ispis (shemu) baze podataka" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "U bazi podataka nisu pronađene tablice." @@ -282,79 +291,79 @@ msgstr "Ukloni sav odabir" msgid "The database name is empty!" msgstr "Naziv baze podataka je prazan!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Baza podataka %s preimenovana je u %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Baza podataka %s kopirana je u %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Baza podataka %s je odbačena." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nema baza podataka" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopiraj bazu podataka u" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Samo strukturu" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Strukturu i podatke" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Samo podatke" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Dodaj prisile" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu podataka" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -364,7 +373,7 @@ msgstr "Prebaci se na kopiranu bazu podataka" msgid "Collation" msgstr "Uspoređivanje" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -376,7 +385,7 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -388,16 +397,18 @@ msgstr "Shema relacija" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tablica" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Redaka" @@ -407,13 +418,13 @@ msgid "Size" msgstr "Veličina" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "u upotrebi" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -421,7 +432,7 @@ msgstr "Izrada" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -429,7 +440,7 @@ msgstr "Posljednje ažuriranje" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -443,97 +454,16 @@ msgid_plural "%s tables" msgstr[0] "%s tablica" msgstr[1] "%s tablica" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Morate odabrati najmanje jedan stupac za prikazivanje" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Uzlazno" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Silazno" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Presloži" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Prikaži" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriterij" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Dodaj/Izbriši redak kriterija" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Dodaj/Izbriši stupce polja" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Ažuriraj upit" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Upotrijebi tablice" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Ili" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "I" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Uredi" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Prebaci se na kopiranu tablicu" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL upit nad bazom podataka %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Podnesi upit" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -576,7 +506,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -605,20 +535,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "S odabirom:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Označi sve" @@ -626,31 +557,32 @@ msgstr "Označi sve" msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Isprazni" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -700,17 +632,18 @@ msgstr "Provjeri tablicu" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Baza podataka" @@ -730,18 +663,26 @@ msgstr "Ažurirano" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Stanje" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Aktivnost" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Prikaži" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -789,22 +730,22 @@ msgstr "Baza podataka" msgid "Bad type!" msgstr "Vrsta upita" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Odabrana vrsta izvoza mora biti spremljena u datoteku!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Routines" msgid "Bad parameters!" msgstr "Rutine" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nema dovoljno prostora za spremanje datoteke %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -812,12 +753,12 @@ msgstr "" "Datoteka %s već postoji na poslužitelju. Promijenite naziv ili označite " "opciju za prepisivanje." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web poslužitelj nema dopuštenja za spremanje datoteke %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Izbacivanje je spremljeno u datoteku %s." @@ -841,7 +782,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometrija" @@ -923,7 +864,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -932,20 +873,20 @@ msgstr "" "Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " "%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Prikazivanje oznake" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Favorit je izbrisan." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -956,7 +897,7 @@ msgstr "" "Takva podrška još nije implementirana ili je onemogućena u vašoj " "konfiguraciji." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -966,26 +907,26 @@ msgstr "" "veličina datoteke prelazi najveću dopuštenu veličinu od strane vaše PHP " "konfiguracije. Pogledajte ČPP 1.16." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Izrađen je favorit %s" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvoz je uspješno dovršen. Izvršeno upita: %d ." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -993,7 +934,7 @@ msgstr "" "Vrijeme za skriptu je isteklo. Ako želite završiti uvoz, ponovo podnesite " "istu datoteku i uvoz će nastaviti." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1002,8 +943,8 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti završiti ovaj uvoz sve dok ne " "povećate vremenska ograničenja unutar php." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -1020,7 +961,7 @@ msgstr "" "phpMyAdmin je jednostavniji za upotrebu s preglednikom koji podržava " "okvire." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" izjave su onemogućene." @@ -1030,7 +971,7 @@ msgstr "\"DROP DATABASE\" izjave su onemogućene." msgid "Do you really want to execute \"%s\"?" msgstr "Želite li zaista " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!" @@ -1097,16 +1038,20 @@ msgstr "Naziv računala je prazan!" msgid "The user name is empty!" msgstr "Korisničko ime je prazno!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1132,9 +1077,9 @@ msgstr "Zatvori" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1410,12 +1355,13 @@ msgstr "Poravnaj s mrežom" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "bez kompresije" @@ -1604,10 +1550,10 @@ msgid "Explain output" msgstr "Objasni SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Vrijeme" @@ -1960,7 +1906,7 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Promijeni" @@ -1969,8 +1915,8 @@ msgstr "Promijeni" msgid "Query execution time" msgstr "Vrijeme izvršavanja upita" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d nije valjani broj retka." @@ -2051,7 +1997,7 @@ msgstr "Veličina pokazatelja podataka" msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopiraj" @@ -2600,14 +2546,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Pogreška" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL upit" @@ -2618,7 +2564,7 @@ msgstr "SQL upit" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2647,6 +2593,10 @@ msgstr "Bez PHP koda" msgid "Create PHP Code" msgstr "Izradi PHP kod" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Podnesi upit" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2673,7 +2623,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Pogoni" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Izrada profila" @@ -2702,7 +2652,7 @@ msgstr "Rutine" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2711,7 +2661,7 @@ msgstr "Na vrh stranice" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2721,7 +2671,7 @@ msgstr "Prethodni" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2731,7 +2681,7 @@ msgstr "Sljedeće" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2754,16 +2704,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Strukturu" @@ -2771,21 +2722,20 @@ msgstr "Strukturu" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Umetni" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Pretraživanje" @@ -2807,21 +2757,21 @@ msgstr "Pretraži računalo" msgid "Select from the web server upload directory %s:" msgstr "mapa učitavanja web poslužitelja" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Izvrši" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Ispiši" @@ -2838,6 +2788,78 @@ msgstr "" msgid "Font size" msgstr "Veličina fonta" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Uzlazno" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Silazno" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Presloži" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriterij" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Dodaj/Izbriši redak kriterija" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Dodaj/Izbriši stupce polja" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Ažuriraj upit" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Upotrijebi tablice" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Ili" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "I" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Uredi" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL upit nad bazom podataka %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "najmanje jedna riječ" @@ -2881,8 +2903,8 @@ msgstr[1] "%s poklapanja unutar tablice %s" msgid "Delete the matches for the %s table?" msgstr "Izbacivanje podataka za tablicu" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2923,74 +2945,74 @@ msgstr "Unutar tablica:" msgid "Inside column:" msgstr "Unutar polja:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy msgid "Save edited data" msgstr "Osnovna mapa podataka" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Sub" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Broj polja" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Pon" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "vodoravno" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "vodoravno (okrenuta zaglavlja)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "uspravno" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Izvrši favorizirani upit" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Presloži po ključu" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -3003,114 +3025,114 @@ msgstr "Presloži po ključu" msgid "Options" msgstr "Opcije" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Djelomični tekstovi" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Potpuni tekstovi" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Polje za prikaz relacija" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pretvaranje preglednika" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Redak je izbrisan" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Eliminiraj" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Može biti približno. Pogledajte ČPP 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "unutar upita" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Prikazivanje redaka" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Prikaz ispisa (s potpunim tekstovima)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Veza nije pronađena" @@ -3235,8 +3257,8 @@ msgstr "" "Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Baze podataka" @@ -3252,11 +3274,11 @@ msgid "Tracking" msgstr "Praćenje" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Okidači" @@ -3274,9 +3296,9 @@ msgstr "Baza podataka izgleda praznom!" msgid "Query" msgstr "Upit" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegije" @@ -3285,7 +3307,7 @@ msgid "Routines" msgstr "Rutine" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Događaji" @@ -3392,54 +3414,54 @@ msgstr "%s je onemogućen za ovaj MySQL poslužitelj." msgid "This MySQL server does not support the %s storage engine." msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Prikaži stanje potčinjenog" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Traži u bazi podataka" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nije pronađena!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Neispravna baza podataka" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Neispravan naziv tablice" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tablica %s preimenovana je u %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3448,7 +3470,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3460,7 +3482,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3505,7 +3527,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" @@ -3867,7 +3889,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tablice" @@ -3878,9 +3900,10 @@ msgstr "Tablice" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Podaci" @@ -4011,33 +4034,33 @@ msgid "Disabled" msgstr "Onemogućeno" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Strukturu" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "Podatci" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4462,13 +4485,13 @@ msgstr "Kompresija" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4497,7 +4520,6 @@ msgstr "Polja izostavljena po" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL zamijeni s" @@ -4544,25 +4566,24 @@ msgstr "Predložak naziva datoteka" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s tablica" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Uključi naslov tablice" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Naslov tablice" @@ -4571,14 +4592,14 @@ msgid "Continued table caption" msgstr "Nastavljeni naslov tablice" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Ključ oznake" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME vrsta" @@ -4620,7 +4641,7 @@ msgid "SQL compatibility mode" msgstr "Način rada SQL kompatibilnosti" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4633,7 +4654,7 @@ msgid "Use delayed inserts" msgstr "Upotrijebi odgođena umetanja" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Onemogući provjere stranih znakova" @@ -4650,7 +4671,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Najveća duljina izrađenog upita" @@ -4660,7 +4681,7 @@ msgid "Export type" msgstr "Vrsta izvoza" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Izvoz uključi u transakciju" @@ -4715,7 +4736,6 @@ msgstr "Opcije izvoza baze podataka" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4779,7 +4799,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -5019,7 +5038,6 @@ msgid "Customize text input fields" msgstr "Opcije izvoza baze podataka" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! tekst" @@ -6153,9 +6171,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Lozinka" @@ -6322,7 +6342,6 @@ msgstr "CSV upotrebom LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Otvori izračunsku tablicu dokumenta" @@ -6346,19 +6365,16 @@ msgstr "Opcije izvoza baze podataka" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Otvori tekst dokumenta" @@ -6414,7 +6430,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6423,21 +6439,21 @@ msgid "" msgstr "" "(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Poslužitelj ne odgovara" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detalji..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6450,13 +6466,15 @@ msgid "Change password" msgstr "Promijeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Bez lozinke" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Ponovite" @@ -6481,8 +6499,9 @@ msgstr "Izradi novu bazu podataka" msgid "Create" msgstr "Izradi" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Bez privilegija" @@ -6492,12 +6511,12 @@ msgid "Create table" msgstr "Izradi tablicu" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Naziv" @@ -6670,7 +6689,7 @@ msgid "View output as text" msgstr "Spremi kao datoteku" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7195,51 +7214,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Uredi postavke za %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo strukturu" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" @@ -7316,11 +7335,11 @@ msgstr "" "Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, " "odnosno s tipkama CTRL+Strelice za premještanje bilo kamo" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" @@ -7572,7 +7591,7 @@ msgstr "phpMyAdmin dokumentacija" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7687,83 +7706,83 @@ msgstr "" msgid "Authenticating..." msgstr "Autentifikacija..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Redovi završeni s" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Polja obuhvaćena po" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Polja izostavljena po" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Redovi završeni s" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "NULL zamijeni s" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel izdanje" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Opcije izvoza baze podataka" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Izbacivanje podataka za tablicu" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Događaj" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7771,24 +7790,24 @@ msgstr "Događaj" msgid "Definition" msgstr "Opis" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tablična struktura za tablicu" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktura za pregledavanje" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Unutarnja struktura za pregledavanje" @@ -7804,262 +7823,253 @@ msgstr "(nastavljeno)" msgid "Structure of table @TABLE@" msgstr "Struktura tablice @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Opcije preoblikovanja" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Naslov tablice" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Onemogući provjere stranih znakova" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Prikazivanje stupca komentara" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Raspoložive MIME vrste" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Računalo" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Vrijeme generiranja" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Verzija poslužitelja" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP verzija" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy msgid "Export table names" msgstr "Vrsta izvoza" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "vodoravno (okrenuta zaglavlja)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Generira izvještaj koji sadrži podatke samo jedne tablice)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Naslov izvještaja" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP niz" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Dodaj prilagođeni komentar u zaglavlje (\"\\n\" razdvaja retke)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Izjave" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Izjave" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Opcije preoblikovanja" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Postupci" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funkcije" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Ograničenja za tablicu" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME VRSTE ZA TABLICU" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABLICE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Dopušta čitanje podataka." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Prikaz" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 #, fuzzy msgid "Export contents" msgstr "Vrsta izvoza" @@ -8130,6 +8140,10 @@ msgstr "Nazivi stupaca" msgid "This plugin does not support compressed imports!" msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -8186,6 +8200,10 @@ msgstr "Način rada SQL kompatibilnosti" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8454,11 +8472,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "bez opisa" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Ukloni sve oznake" @@ -8478,9 +8497,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Korisničko ime" @@ -8518,34 +8538,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Upotrijebi tekstualno polje" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Bilo koje računalo" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Ovo računalo" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Upotrijebi tablicu poslužitelja" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8559,7 +8588,7 @@ msgstr "Generiraj lozinku" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8600,8 +8629,8 @@ msgid "Edit event" msgstr "Web poslužitelj" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8691,7 +8720,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Novo" @@ -8837,7 +8867,13 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Dopušta pokretanje pohranjenih rutina." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8845,19 +8881,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Dopušta pokretanje pohranjenih rutina." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -9020,29 +9050,29 @@ msgstr "U bazi podataka nisu pronađene tablice." msgid "There are no events to display." msgstr "Provjeri tablicu" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tablica \"%s\" ne postoji!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Konfigurirajte koordinate tablice %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9192,6 +9222,465 @@ msgstr "Nepoznati jezik: %1$s." msgid "Current Server" msgstr "Poslužitelj" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Bez privilegija." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Obuhvaća sve privilegije osim GRANT (Podari)." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Dopušta čitanje podataka." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Dopušta umetanje i zamjenu podataka." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Dopušta mijenjanje podataka." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Dopušta brisanje podataka." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Dopušta izradu novih baze podataka i tablice." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Dopušta odbacivanje baza podataka i tablica." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene " +"pohrane poslužitelja." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Dopušta gašenje poslužitelja." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Omogućuje pregledavanje procesa za sve korisnike" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Dopušta uvoz i izvoz podataka iz datoteka." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nema učinka u ovoj verziji MySQL-a." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Dopušta izradu i odbacivanje indeksa." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Dopušta izmjenu strukture postojećih tablice." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Daje pristup cjelokupnom popisu baza podataka." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Dopušta povezivanje čak i kad je dostignut najveći broj veza. Potrebno za " +"većinu administrativnih operacija poput postavljanja općih varijabli ili " +"eliminiranje grana drugih korisnika." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Dopušta izradu privremenih tablica." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Dopušta zaključavanje tablica u trenutnoj grani." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Potrebno za replikacijske potčinjene." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Dopušta izradu novih prikaza." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Omogućuje postavljanje događaja za planer" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Omogućuje izradu i uklanjanje okidača" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Dopušta izvođenje upita SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Dopušta izradu pohranjenih rutina." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Dopušta pokretanje pohranjenih rutina." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "bez kompresije" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ograničenja resursa" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Napomena: Postavljanje ovih opcija na vrijednost 0 (nula) uklanja " +"ograničenje." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Ograničava broj upita koje korisnik može poslati poslužitelju, po satu." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Ograničava broj naredbi koje korisnik može pokrenuti, a čija je namjena " +"mijenjanje bilo koje tablice ili baze podataka, po satu." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Ograničava broj novih povezivanja koje korisnik može otvoriti, po satu." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Privilegije specifične za tablicu" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administracija" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Opće privilegije" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Privilegije specifične za bazu podataka" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Dopušta izradu novih tablica." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Dopušta odbacivanje tablica." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "_Podaci prijave" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Ne mijenjaj lozinku" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Lozinka za %s uspješno je promijenjena." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Opozvali ste privilegije za %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Baza podataka za korisnika" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Izradi bazu podataka istog naziva i podari sve privilegije" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Provjeri privilegije za bazu podataka \"%s\"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Korisnici koji imaju pristup u \"%s\"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Korisnik" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Podarivanje" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Index %s je ispušten" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Bilo koji" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "opće" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "specifično za bazu podataka" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "džoker" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Korisnici nisu pronađeni." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Uredi privilegije" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Opozovi" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Izvoz" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... zadržati staru." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... izbriši starog iz korisničkih tablica." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... opozovi sve aktivne privilegije iz stare i potom je izbriši." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Promjena podataka prijave / Kopiranje korisnika" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Izradi novog korisnika s istim privilegijama i..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Privilegije specifične za stupac" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Dodaj privilegije za sljedeće baze podataka" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Kako bi se mogli upotrebljavati u doslovnom smislu, džokerima \\_ i \\% mora " +"prethoditi znak \\" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Dodaj privilegije za sljedeću tablicu" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Ukloni odabrane korisnike" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Nema odabranih korisnika za uklanjanje!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Ponovno učitavanje privilegija" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Odabrani korisnici uspješno su izbrisani." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Ažurirali ste privilegije za %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privilegije" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privilegije" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Pregled korisnika" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL " +"tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica " +"može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " +"slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Odabrani korisnik nije pronađen u tablici privilegija." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Dodali ste novog korisnika." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9244,11 +9733,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Nazivi stupaca" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" @@ -9553,12 +10042,6 @@ msgstr "Verzija poslužitelja" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Korisnik" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -10118,455 +10601,20 @@ msgstr "Licenca" msgid "disabled" msgstr "Onemogućeno" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Obuhvaća sve privilegije osim GRANT (Podari)." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Dopušta izmjenu strukture postojećih tablice." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Dopušta izradu novih baze podataka i tablice." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Dopušta izradu pohranjenih rutina." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Dopušta izradu novih tablica." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Dopušta izradu privremenih tablica." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Dopušta izradu novih prikaza." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Dopušta brisanje podataka." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Dopušta odbacivanje baza podataka i tablica." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Dopušta odbacivanje tablica." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Omogućuje postavljanje događaja za planer" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Dopušta pokretanje pohranjenih rutina." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Dopušta uvoz i izvoz podataka iz datoteka." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Dopušta izradu i odbacivanje indeksa." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Dopušta umetanje i zamjenu podataka." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Dopušta zaključavanje tablica u trenutnoj grani." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Ograničava broj novih povezivanja koje korisnik može otvoriti, po satu." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Ograničava broj upita koje korisnik može poslati poslužitelju, po satu." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Ograničava broj naredbi koje korisnik može pokrenuti, a čija je namjena " -"mijenjanje bilo koje tablice ili baze podataka, po satu." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Omogućuje pregledavanje procesa za sve korisnike" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nema učinka u ovoj verziji MySQL-a." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene " -"pohrane poslužitelja." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Potrebno za replikacijske potčinjene." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Dopušta čitanje podataka." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Daje pristup cjelokupnom popisu baza podataka." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Dopušta izvođenje upita SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Dopušta gašenje poslužitelja." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Dopušta povezivanje čak i kad je dostignut najveći broj veza. Potrebno za " -"većinu administrativnih operacija poput postavljanja općih varijabli ili " -"eliminiranje grana drugih korisnika." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Omogućuje izradu i uklanjanje okidača" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Dopušta mijenjanje podataka." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Bez privilegija." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "bez kompresije" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Privilegije specifične za tablicu" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administracija" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Opće privilegije" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Privilegije specifične za bazu podataka" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ograničenja resursa" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Napomena: Postavljanje ovih opcija na vrijednost 0 (nula) uklanja " -"ograničenje." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "_Podaci prijave" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Ne mijenjaj lozinku" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Korisnici nisu pronađeni." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Dodali ste novog korisnika." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Ažurirali ste privilegije za %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Opozvali ste privilegije za %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Lozinka za %s uspješno je promijenjena." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Brisanje %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Nema odabranih korisnika za uklanjanje!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Ponovno učitavanje privilegija" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Odabrani korisnici uspješno su izbrisani." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Uredi privilegije" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Opozovi" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Izvoz" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Bilo koji" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilegije" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilegije" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Pregled korisnika" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Podarivanje" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Ukloni odabrane korisnike" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL " -"tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica " -"može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " -"slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Odabrani korisnik nije pronađen u tablici privilegija." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Privilegije specifične za stupac" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Dodaj privilegije za sljedeće baze podataka" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Kako bi se mogli upotrebljavati u doslovnom smislu, džokerima \\_ i \\% mora " -"prethoditi znak \\" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Dodaj privilegije za sljedeću tablicu" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Promjena podataka prijave / Kopiranje korisnika" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Izradi novog korisnika s istim privilegijama i..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... zadržati staru." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... izbriši starog iz korisničkih tablica." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... opozovi sve aktivne privilegije iz stare i potom je izbriši." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Baza podataka za korisnika" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Izradi bazu podataka istog naziva i podari sve privilegije" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Provjeri privilegije za bazu podataka \"%s\"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Korisnici koji imaju pristup u \"%s\"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "opće" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "specifično za bazu podataka" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "džoker" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Index %s je ispušten" - #: server_replication.php:82 msgid "Unknown error" msgstr "Nepoznata greška" @@ -12305,41 +12353,41 @@ msgstr "" msgid "Wrong data" msgstr "Nema baza podataka" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Želite li zaista " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Prikazivanje kao PHP koda" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjera valjanosti SQL-a" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL rezultat" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Generirano s" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Oznaka" @@ -14190,6 +14238,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "najv. uzastopnih veza" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP niz" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/hu.po b/po/hu.po index 5baf58c91f..251efdb9e9 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-19 09:42+0200\n" "Last-Translator: Akos Eros \n" "Language-Team: hungarian \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Összes megjelenítése" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Keresés" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Keresés" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Indítás" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "A(z) %1$s adatbázis elkészült." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Megjegyzés az adatbázishoz: " @@ -120,17 +123,17 @@ msgstr "Megjegyzés az adatbázishoz: " msgid "Table comments" msgstr "Tábla megjegyzése" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Oszlop" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Típus" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Nulla" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Nulla" msgid "Default" msgstr "Alapértelmezett" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Hivatkozás" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Megjegyzések" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nem" @@ -242,19 +248,22 @@ msgstr "Nem" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Igen" @@ -262,8 +271,8 @@ msgstr "Igen" msgid "View dump (schema) of database" msgstr "Adatbázis kiírás (vázlat) megtekintése" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Nem található tábla az adatbázisban." @@ -279,76 +288,76 @@ msgstr "Minden kijelölés törlése" msgid "The database name is empty!" msgstr "Üres az adatbázis neve!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "A(z) %s adatbázis átnevezése %s névre megtörtént" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Adatbázis átnevezése" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Adatbázis eltávolítása" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "A(z) %s adatbázis eldobása megtörtént." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Adatbázis eldobása (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Adatbázis másolása" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Csak a szerkezet" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Szerkezet és adatok" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Csak az adatok" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE másolás előtt" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s hozzáadása" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Megszorítás hozzáadása" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "A másolt adatbázisra váltás" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -358,7 +367,7 @@ msgstr "A másolt adatbázisra váltás" msgid "Collation" msgstr "Illesztés" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -367,7 +376,7 @@ msgstr "" "A phpMyAdmin konfigurációs tárolója deaktiválva lett. Ha szeretné megtudni, " "hogy miért, kattintson %side%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Kapcsolati séma szerkesztése, exportálása" @@ -377,16 +386,18 @@ msgstr "Kapcsolati séma szerkesztése, exportálása" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tábla" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Sorok" @@ -396,13 +407,13 @@ msgid "Size" msgstr "Méret" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "használatban" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -410,7 +421,7 @@ msgstr "Létrehozás" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -418,7 +429,7 @@ msgstr "Utolsó frissítés" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,92 +442,15 @@ msgid_plural "%s tables" msgstr[0] "%s tábla" msgstr[1] "%s táblák" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Ki kell legalább egy megjelenítendő oszlopot választania" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Növekvő" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Csökkenő" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Rendezés" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Megjelenítés" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Feltételek" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Feltételsor hozzáadása/törlése" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Oszlopok hozzáadása/törlése" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Lekérdezés frissítése" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Felhasználandó táblák" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Vagy" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "És" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Beszúrás" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Törlés" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Módosítás" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Átváltás a %svizuális tervezőre%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-lekérdezés a(z) %s adatbázison:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Lekérdezés indítása" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "Nyomkövetés aktív." msgid "Tracking is not active." msgstr "Nyomkövetés inaktív." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -587,20 +521,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Mind kijelölése" @@ -608,31 +543,32 @@ msgstr "Mind kijelölése" msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportálás" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Kiürítés" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -676,17 +612,18 @@ msgstr "Nyomon követett táblák" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Adatbázis" @@ -704,18 +641,26 @@ msgstr "frissítve" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Állapot" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Művelet" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Megjelenítés" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Tábla nyomkövetési adatainak törlése" @@ -756,20 +701,20 @@ msgstr "Adatbázis Log" msgid "Bad type!" msgstr "Rossz típus!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Fájlban kell menteni a kiválasztott exportálási típust!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Rossz paraméterek!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Kevés a hely a(z) %s fájl mentéséhez." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -777,12 +722,12 @@ msgstr "" "Már létezik %s fájl a szerveren, változtassa meg a fájlnevet, vagy állítsa " "be a felülírási opciót!" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "A webszerver számára nem engedélyezett a(z) %s fájl mentése." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." @@ -805,7 +750,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometria" @@ -880,7 +825,7 @@ msgstr "" "Válassza a \"GeomFromText\"-et a \"Függvény\" oszlopból és illessze be az " "alábbi karakterláncot az \"Érték\" mezőbe" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -889,20 +834,20 @@ msgstr "" "Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " "%sdokumentációban%s a korlátozás feloldása végett." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Könyvjelző megjelenítése" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "A könyvjelző törlése megtörtént." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Nem lehetett beolvasni a fájlt" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -912,7 +857,7 @@ msgstr "" "Ön nem támogatott tömörítésű (%s) fájlt kísérelt meg betölteni. Vagy nem " "valósították meg a támogatását, vagy letiltják a beállítások." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -922,31 +867,31 @@ msgstr "" "vagy a fájlméret túllépte a PHP beállításokban engedélyezett legnagyobb " "méretet. Lásd [a@./Documentation.html#faq1_16@Documentation]GYIK 1.16.[/a].." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Nem konvertálható a fájl karakterkészlete a karakterkészlet konvertáló " "könyvtár nélkül" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nem lehetett betölteni az importáló beépülő modulokat. Kérjük, ellenőrizze a " "telepítését!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Az importálás sikeresen befejeződött, %d lekérdezés került végrehajtásra." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -954,7 +899,7 @@ msgstr "" "Script időtúllépés történt, ha be akarja fejezni az importálást, akkor " "küldje újra ugyanazt a fájlt és az importálás folytatódni fog." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -963,8 +908,8 @@ msgstr "" "jelenti, hogy a phpMyAdmin nem tudja befejezni ezt az importálást, ha Ön nem " "növeli meg a PHP időkorlátozását." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -979,7 +924,7 @@ msgstr "Vissza" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "A phpMyAdmin keretkezelő böngészőben használhatóbb." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "A \"DROP DATABASE\" utasítást letiltották." @@ -989,7 +934,7 @@ msgstr "A \"DROP DATABASE\" utasítást letiltották." msgid "Do you really want to execute \"%s\"?" msgstr "Valóban a következőt akarja " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!" @@ -1047,16 +992,20 @@ msgstr "A hosztnév üres!" msgid "The user name is empty!" msgstr "Üres a felhasználónév!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Felhasználó hozzáadása" @@ -1076,9 +1025,9 @@ msgstr "Bezárás" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1324,12 +1273,13 @@ msgstr "Diagram hozzáadása" msgid "Please add at least one variable to the series" msgstr "Legalább egy változót adjon meg a sorozathoz" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Nincs" @@ -1506,10 +1456,10 @@ msgid "Explain output" msgstr "A kimenet magyarázata" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Idő" @@ -1813,7 +1763,7 @@ msgstr "SQL-lekérdezési panelek mutatása" msgid "No rows selected" msgstr "Nem jelölte ki a sort" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Módosítás" @@ -1822,8 +1772,8 @@ msgstr "Módosítás" msgid "Query execution time" msgstr "A lekérdezés végrehajtási ideje" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "A(z) %d érvénytelen sorszám." @@ -1900,7 +1850,7 @@ msgstr "Adatmutató mérete" msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Másolás" @@ -2384,14 +2334,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Hiba" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-lekérdezés" @@ -2402,7 +2352,7 @@ msgstr "SQL-lekérdezés" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2431,6 +2381,10 @@ msgstr "PHP kód nélkül" msgid "Create PHP Code" msgstr "PHP-kód létrehozása" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Lekérdezés indítása" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2455,7 +2409,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Belső" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Adatgyűjtés" @@ -2482,7 +2436,7 @@ msgstr "Hiányzó paraméter:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2491,7 +2445,7 @@ msgstr "A tetejére" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2499,7 +2453,7 @@ msgstr "Előző" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2507,7 +2461,7 @@ msgstr "Következő" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2532,16 +2486,17 @@ msgstr "Kattintson a kijelöléshez." #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Szerkezet" @@ -2549,21 +2504,20 @@ msgstr "Szerkezet" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Beszúrás" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Tartalom" @@ -2584,21 +2538,21 @@ msgstr "Számítógép tallózása:" msgid "Select from the web server upload directory %s:" msgstr "Válasszon a szerver feltöltési könyvtárából %s :" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Nincsenek feltöltendő fájlok" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Végrehajtás" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Nyomtatás" @@ -2615,6 +2569,74 @@ msgstr "" msgid "Font size" msgstr "Betűméret" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Növekvő" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Csökkenő" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Rendezés" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Feltételek" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Feltételsor hozzáadása/törlése" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Oszlopok hozzáadása/törlése" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Lekérdezés frissítése" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Felhasználandó táblák" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Vagy" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "És" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Beszúrás" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Törlés" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Módosítás" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-lekérdezés a(z) %s adatbázison:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "legalább az egyik szó" @@ -2657,8 +2679,8 @@ msgstr[1] "%s találat a(z) %s táblában" msgid "Delete the matches for the %s table?" msgstr "Törli a találatokat a %s táblában?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2693,69 +2715,69 @@ msgstr "Belső táblák:" msgid "Inside column:" msgstr "Mezőben:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "A módosított adatok mentése" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Textarea columns" msgid "Restore column order" msgstr "Szövegterület oszlopai" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Indítás" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Sorok száma" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Mód" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "vízszintesen" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "vízszintesen (elforgatott fejlécek)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "függőlegesen" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute every" msgid "Headers every %s rows" msgstr "Végrehajtás minden" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Kulcs szerinti rendezés" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2768,64 +2790,64 @@ msgstr "Kulcs szerinti rendezés" msgid "Options" msgstr "Beállítások" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Részleges szövegek" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Teljes szövegek" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relációs kulcs" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relációs megjelenítési mező" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Bináris tartalom megjelenítése" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "BLOB-tartalom megjelenítése" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Bináris tartalom megjelenítése HEX-ként" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Böngésző átalakítása" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "A sor törlése megtörtént" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Leállít" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2833,44 +2855,44 @@ msgstr "" "Becsült érték lehet. Lásd [a@./Documentation.html#faq3_11@Documentation]GyIK " "3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "lekérdezésben" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Megjelenített sorok:" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "összesen" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Nyomtatási nézet (teljes szöveggel)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Diagram megjelenítése" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Nézet létrehozása" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Nem található a hivatkozás" @@ -2998,8 +3020,8 @@ msgstr "" "eltávolítható." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Adatbázisok" @@ -3015,11 +3037,11 @@ msgid "Tracking" msgstr "Követés" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Eseményindítók" @@ -3037,9 +3059,9 @@ msgstr "Üresnek tűnik az adatbázis!" msgid "Query" msgstr "Lekérdezés" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Jogok" @@ -3048,7 +3070,7 @@ msgid "Routines" msgstr "Eljárások" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Események" @@ -3149,53 +3171,53 @@ msgstr "%s letiltott ezen a MySQL szerveren." msgid "This MySQL server does not support the %s storage engine." msgstr "Ez a MySQL szerver nem támogatja a(z) %s tárolómotort." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "ismeretlen táblaállapot: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Forrás adatbázis" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Nem található a(z) %s téma!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Érvénytelen adatbázis" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Érvénytelen táblanév" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "A(z) %s tábla átnevezése %s névre megtörtént" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3204,7 +3226,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Függvény" @@ -3216,7 +3238,7 @@ msgstr "Kezelő" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3259,7 +3281,7 @@ msgid "Maximum rows to plot" msgstr "A megjelenítendő sorok száma" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" @@ -3622,7 +3644,7 @@ msgstr "megosztott" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Táblák" @@ -3633,9 +3655,10 @@ msgstr "Táblák" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Adatok" @@ -3755,32 +3778,32 @@ msgid "Disabled" msgstr "Letiltott" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "szerkezet" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "adat" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "szerkezet és adatok" @@ -4204,13 +4227,13 @@ msgstr "Tömörítés" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "A mezőneveket tegye az első sorba" @@ -4233,7 +4256,6 @@ msgstr "Mező escape karakter" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL cseréje ezzel:" @@ -4273,23 +4295,22 @@ msgstr "Táblanév-sablon" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Tábla kiírása" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Tartalmazza a táblacímet" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Táblacím" @@ -4298,14 +4319,14 @@ msgid "Continued table caption" msgstr "Táblacím folytatása" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Feliratkulcs" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-típus" @@ -4342,7 +4363,7 @@ msgid "SQL compatibility mode" msgstr "SQL kompatibilitási mód" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE beállítások:" @@ -4355,7 +4376,7 @@ msgid "Use delayed inserts" msgstr "Késleltetett beszúrások használata" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Az idegen kulcsok ellenőrzésének letiltása" @@ -4372,7 +4393,7 @@ msgid "Syntax to use when inserting data" msgstr "Adat beillesztésére vonatkozó szintaxis" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "A létrehozott lekérdezés hossza legfeljebb" @@ -4381,7 +4402,7 @@ msgid "Export type" msgstr "Exportálás típusa" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Az exportálás befoglalása egy tranzakcióban" @@ -4436,7 +4457,6 @@ msgstr "Alapértelmezett beállítások testreszabása" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4497,7 +4517,6 @@ msgstr "" "beállítása" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4731,7 +4750,6 @@ msgid "Customize text input fields" msgstr "Szöveges beviteli mezők testreszabása" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! szöveg" @@ -5952,9 +5970,11 @@ msgstr "Szükséges az SQL Validator engedélyezése" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Jelszó" @@ -6124,7 +6144,6 @@ msgstr "CSV a LOAD DATA használatával" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document munkafüzet" @@ -6146,19 +6165,16 @@ msgstr "Adatbázis exportálási beállításai" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excel CSV adat" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document szöveges dokumentum" @@ -6221,7 +6237,7 @@ msgstr "A %s kiterjesztés hiányzik. Kérem ellenőrizze a PHP beállításokat msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6229,19 +6245,19 @@ msgstr "" "A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően " "beállítotva)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "A kiszolgáló nem válaszol." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Részletek..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6254,13 +6270,15 @@ msgid "Change password" msgstr "Jelszó megváltoztatása" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Nincs jelszó" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Újraírás" @@ -6281,8 +6299,9 @@ msgstr "Adatbázis létrehozása" msgid "Create" msgstr "Létrehozás" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Nincs jog" @@ -6292,12 +6311,12 @@ msgid "Create table" msgstr "Tábla létrehozása" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Név" @@ -6437,7 +6456,7 @@ msgid "View output as text" msgstr "A kimenet megtekintése szövegként" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Formátum:" @@ -6951,53 +6970,53 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Nem található adat a grafikonhoz" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ugrás az adatbázishoz" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s adatai hiányoznak" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to table: %s" msgstr "Ugrás az adatbázishoz" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "%s szerkezete" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7068,11 +7087,11 @@ msgstr "" "A TAB billentyűvel értékről értékre lépkedhet, ill. a CTRL+nyilakkal bárhová " "léphet." -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" @@ -7320,7 +7339,7 @@ msgstr "phpMyAdmin dokumentáció" msgid "Reload navigation frame" msgstr "A navigációs keret újratöltése" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Ennek a formátumnak nincsenek beállításai" @@ -7437,70 +7456,70 @@ msgstr "Nem történt meg érvényes hitelesítő kulcs csatlakoztatása" msgid "Authenticating..." msgstr "Hitelesítés..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Oszlopok elválasztása ezzel:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Oszlopok körbezárása ezzel:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Oszlopok escape-elése ezzel:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Sorok végződése ezzel:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "NULL cseréje ezzel:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "A kocsi vissza/új sor karakterek eltávolítása az oszlopokból" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel verzió:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Adatkiírási beállítások" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "A tábla adatainak kiíratása" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Esemény" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7508,24 +7527,24 @@ msgstr "Esemény" msgid "Definition" msgstr "Leírás" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tábla szerkezet:" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Nézet szerkezete" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "A nézet helyettes szerkezete" @@ -7541,100 +7560,89 @@ msgstr "(folytatás)" msgid "Structure of table @TABLE@" msgstr "@TABLE@ tábla szerkezete" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Objektum-létrehozási beállítások" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Táblacím (folytatólagos)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Az idegen kulcsok ellenőrzésének letiltása" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Megjegyzések megjelenítése" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "MIME-típusok megjelenítése" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Hoszt" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Létrehozás ideje" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Szerver verzió" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP verzió" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki tábla" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "Tartalom exportálása" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "vízszintesen (elforgatott fejlécek)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Egyetlen táblázat adatait tartalmazó jelentést generál)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "A jelentés címe:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP tömb" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7642,12 +7650,12 @@ msgstr "" "Megjegyzések megjelenítése (olyan információk, mint az exportálás " "időbélyege, a PHP verziója és a szerver verziója)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "További egyéni megjegyzés hozzáadása a fejléchez (a \\n töri a sorokat):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7655,25 +7663,25 @@ msgstr "" "Tartalmazza azokat az időbélyegeket, amikor az adatbázis létrejött, utoljára " "frissült és utoljára ellenőrizve lett" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Adatbázis rendszer vagy régebbi MySQL szerver a kimenet kompatibilitásának " "maximalizálása ezzel:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "%s utasítások hozzáadása" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Utasítások hozzáadása:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7681,32 +7689,39 @@ msgstr "" "Tábla és oszlopnevek idézőjelek közé rakása (Védi az oszlop és tábla " "neveket a speciális karakterektől vagy a kulcsszavaktól)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Objektum-létrehozási beállítások" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Az INSERT utasítás helyett használjon:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED utasítások" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE utasítások" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Adatkiíráskor használt függvények:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7716,7 +7731,7 @@ msgstr "" "      Példa: INSERT INTO tbl_name (col_A,col_B,col_C) " "VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7726,7 +7741,7 @@ msgstr "" "  Példa: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7734,7 +7749,7 @@ msgstr "" "mindkettő a fentiek közül
      Példa: INSERT " "INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7742,7 +7757,7 @@ msgstr "" "egyik sem a fentiek közül
      Példa: INSERT " "INTO tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7750,7 +7765,7 @@ msgstr "" "Bináris oszlopok kiírása hexadecimális átírással (például, \"abc\" " "helyett 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7758,50 +7773,45 @@ msgstr "" "A TIMESTAMP oszlopok kiírása UTC-ben (engedélyezi a TIMESTAMP oszlopok " "kiírását és újratölti a különböző időzónában lévő szerverek között)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Eljárások" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Függvények" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Megkötések a kiírt táblákhoz" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Megkötések a táblához" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "Tábla MIME-típusok" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "TÁBLA KAPCSOLATAI" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Hiba az adatolvasás közben:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Objektum-létrehozási beállítások (mindegyik javasolt)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Nézetek" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Tartalom exportálása" @@ -7870,6 +7880,10 @@ msgstr "Oszlopnevek" msgid "This plugin does not support compressed imports!" msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki tábla" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7926,6 +7940,10 @@ msgstr "SQL kompatibilitási mód:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne használja az AUTO_INCREMENT-et nulla értékekhez" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8186,11 +8204,12 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Jelentkezzen be újra a phpMyAdminba a frissített beállítófájl betöltéséhez." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "nincs leírás" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Kijelölés törlése" @@ -8211,9 +8230,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Felhasználónév" @@ -8249,34 +8269,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Bármilyen felhasználó" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Szöveges mező használata" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Bármilyen hoszt" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Helyi" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Ez a hoszt" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Hoszt-tábla használata" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8292,7 +8321,7 @@ msgstr "Jelszó generálása" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8328,8 +8357,8 @@ msgid "Edit event" msgstr "Esemény módosítása" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Hiba a kérés feldolgozásában" @@ -8411,7 +8440,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Új" @@ -8553,26 +8583,26 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Engedélyezi a tárolt eljárások végrehajtását." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Engedélyezi a tárolt eljárások végrehajtását." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Eljárás paraméterei" @@ -8720,28 +8750,28 @@ msgstr "Nem található %1$s nevű esemény a(z) %2$s adatbázisban" msgid "There are no events to display." msgstr "Nincsen megjeleníthető esemény." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "A(z) \"%s\" tábla nem létezik!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Állítsa be a(z) %s tábla koordinátáit" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "A(z) \"%s\" adatbázis sémája - %s. oldal" @@ -8880,6 +8910,461 @@ msgstr "Ismeretlen nyelv: %1$s." msgid "Current Server" msgstr "Jelenlegi kiszolgáló" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Nincsenek jogok." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "A GRANT kivételével minden jogot tartalmaz." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Engedélyezi az adatok olvasását." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Engedélyezi az adatok beírását és megváltoztatását." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Engedélyezi az adatok megváltoztatását." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Engedélyezi az adatok törlését." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Engedélyezi új adatbázisok és táblák készítését." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Engedélyezi az adatbázisok és táblák eldobását." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Engedélyezi a szerver beállításainak újratöltését, és a szerver " +"gyorsítótárának törlését." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Engedélyezi a szerver leállítását." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nem valósult meg ebben a MySQL verzióban" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Engedélyezi indexek készítését és törlését." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Hozzáférést ad az adatbázisok teljes listájához." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Akkor is engedélyezi a kapcsolódást, ha a kapcsolatok száma elérte a " +"maximumot. A legfontosabb adminisztrációs műveletekhez szükséges, mint a " +"globális változók beállítása, vagy más felhasználók folyamatainak " +"megszüntetése." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Engedélyezi ideiglenes táblák készítését." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "A kisegítő helyek másolásához szükséges." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő " +"helyek." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Engedélyezi új nézetek létrehozását." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Eseményindítók létrehozásának és eldobásának engedélyezése" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Engedélyezi tárolt eljárások létrehozását." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" +"Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Engedélyezi a tárolt eljárások végrehajtását." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Nincs" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Erőforrás-korlátozások" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Korlátozza a felhasználó által a kiszolgálóra óránként küldhető lekérdezések " +"számát." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Korlátozza a felhasználó által óránként végrehajtható, bármelyik táblát vagy " +"adatbázist módosító parancsok számát." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Korlátozza a felhasználó által óránként megnyitható új kapcsolatok számát." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Táblaspecifikus jogok" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Megjegyzés: a MySQL jognevek az angolból származnak." + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Adminisztráció" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globális jogok" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Adatbázis-specifikus jogok" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Engedélyezi új táblák készítését." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Engedélyezi a táblák eldobását." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"A privilégium táblák újratöltése nélkül engedélyezi a felhasználók és jogok " +"hozzáadását." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Bejelentkezési adatok" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Nincs jelszó megváltoztatás" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s jelszavának megváltoztatása sikerült." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "%s jogainak visszavonása megtörtént" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Adatbázis a felhasználó számára" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Felhasználó" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Engedélyezés" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "A felhasználó hozzáadása kész." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Bármi" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globális" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "adatbázis-specifikus" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "karakterhelyettesítő" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Nem található felhasználó." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Jogok szerkesztése" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Visszavonás" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Exportálás" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... a régiek megőrzése." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... a régiek törlése a felhasználói táblákból." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... az összes aktív jog visszaállítása a régiekből, majd törlés." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Oszlopspecifikus jogok" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Jogok hozzáadása a következő adatbázison" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"A _ és a % karakterhelyettesítőt \\ jellel kell lezárni, hogy " +"szövegkonstansként lehessen őket használni" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Jogok hozzáadása a következő táblán:" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "A kijelölt felhasználók törlése" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "A felhasználók összes jogának visszavonása, majd törlése." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Nincs törlésre kijelölt felhasználó!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "A jogok újratöltése" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "A kiválasztott felhasználók törlése sikerült." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Ön frissítette %s jogait." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Jogok" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Jogok" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Felhasználók áttekintése" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL " +"privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által " +"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " +"%stöltse be újra a jogokat%s a folytatás előtt." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Az új felhasználó hozzáadása megtörtént." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Forrás adatbázis" @@ -8926,11 +9411,11 @@ msgstr "Törlés" msgid "Columns" msgstr "Oszlopok" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" "A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára " @@ -9216,12 +9701,6 @@ msgstr "Szoftver verzió" msgid "Protocol version" msgstr "Protokoll verzió" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Felhasználó" - #: main.php:217 msgid "Server charset" msgstr "A kiszolgáló karakterkódolása" @@ -9767,451 +10246,20 @@ msgstr "Licenc" msgid "disabled" msgstr "letiltott" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "A GRANT kivételével minden jogot tartalmaz." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Engedélyezi új adatbázisok és táblák készítését." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Engedélyezi tárolt eljárások létrehozását." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Engedélyezi új táblák készítését." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Engedélyezi ideiglenes táblák készítését." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" -"Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Engedélyezi új nézetek létrehozását." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Engedélyezi az adatok törlését." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Engedélyezi az adatbázisok és táblák eldobását." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Engedélyezi a táblák eldobását." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Engedélyezi a tárolt eljárások végrehajtását." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"A privilégium táblák újratöltése nélkül engedélyezi a felhasználók és jogok " -"hozzáadását." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Engedélyezi indexek készítését és törlését." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Engedélyezi az adatok beírását és megváltoztatását." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Korlátozza a felhasználó által óránként megnyitható új kapcsolatok számát." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Korlátozza a felhasználó által a kiszolgálóra óránként küldhető lekérdezések " -"számát." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Korlátozza a felhasználó által óránként végrehajtható, bármelyik táblát vagy " -"adatbázist módosító parancsok számát." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nem valósult meg ebben a MySQL verzióban" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Engedélyezi a szerver beállításainak újratöltését, és a szerver " -"gyorsítótárának törlését." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő " -"helyek." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "A kisegítő helyek másolásához szükséges." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Engedélyezi az adatok olvasását." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Hozzáférést ad az adatbázisok teljes listájához." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Engedélyezi a szerver leállítását." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Akkor is engedélyezi a kapcsolódást, ha a kapcsolatok száma elérte a " -"maximumot. A legfontosabb adminisztrációs műveletekhez szükséges, mint a " -"globális változók beállítása, vagy más felhasználók folyamatainak " -"megszüntetése." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Eseményindítók létrehozásának és eldobásának engedélyezése" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Engedélyezi az adatok megváltoztatását." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Nincsenek jogok." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Nincs" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Táblaspecifikus jogok" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Megjegyzés: a MySQL jognevek az angolból származnak." - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Adminisztráció" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globális jogok" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Adatbázis-specifikus jogok" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Erőforrás-korlátozások" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Bejelentkezési adatok" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Nincs jelszó megváltoztatás" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Nem található felhasználó." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "%s felhasználó már létezik!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Az új felhasználó hozzáadása megtörtént." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Ön frissítette %s jogait." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "%s jogainak visszavonása megtörtént" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s jelszavának megváltoztatása sikerült." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s törlése" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Nincs törlésre kijelölt felhasználó!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "A jogok újratöltése" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "A kiválasztott felhasználók törlése sikerült." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Jogok szerkesztése" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Visszavonás" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Exportálás" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Bármi" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Jogok" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Jogok" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Felhasználók áttekintése" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Engedélyezés" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "A kijelölt felhasználók törlése" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "A felhasználók összes jogának visszavonása, majd törlése." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL " -"privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által " -"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " -"%stöltse be újra a jogokat%s a folytatás előtt." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Oszlopspecifikus jogok" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Jogok hozzáadása a következő adatbázison" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"A _ és a % karakterhelyettesítőt \\ jellel kell lezárni, hogy " -"szövegkonstansként lehessen őket használni" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Jogok hozzáadása a következő táblán:" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... a régiek megőrzése." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... a régiek törlése a felhasználói táblákból." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... az összes aktív jog visszaállítása a régiekből, majd törlés." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Adatbázis a felhasználó számára" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globális" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "adatbázis-specifikus" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "karakterhelyettesítő" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "A felhasználó hozzáadása kész." - #: server_replication.php:82 msgid "Unknown error" msgstr "Ismeretlen hiba" @@ -11989,39 +12037,39 @@ msgstr "" msgid "Wrong data" msgstr "Hibás adat" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Valóban a következőt akarja " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Megjelenítés PHP kódként" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Érvényes SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-eredmény" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Készítette" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Név" @@ -13835,6 +13883,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Max. egyidejű kapcsolatok száma" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP tömb" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/hy.po b/po/hy.po index 1e6b5b07f1..3cd1db3f66 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-06-18 16:41+0200\n" "Last-Translator: Hamlet Muradyan \n" "Language-Team: none\n" @@ -19,7 +19,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Ցույց տալ բոլորը" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Որոնում" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Որոնում" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "OK" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s տվյալների բազան ստեղծված է։" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Տվյալների բազայի մեկնաբանությունը՝ " @@ -121,17 +124,17 @@ msgstr "Տվյալների բազայի մեկնաբանությունը՝ " msgid "Table comments" msgstr "Աղյուսակի մեկնաբանությունը" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Սյուն" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Տեսակ" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Null" msgid "Default" msgstr "Լռելյան" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Կապեր" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Մեկնաբանություններ" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ոչ" @@ -243,19 +249,22 @@ msgstr "Ոչ" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Այո" @@ -263,8 +272,8 @@ msgstr "Այո" msgid "View dump (schema) of database" msgstr "Ցուցադրել տվյալների բազայի dump-ը (սխեման)" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Տվյալների բազայում աղյուսակներ չկան։" @@ -280,74 +289,74 @@ msgstr "Հանել նշումը" msgid "The database name is empty!" msgstr "Տվյալների բազայի անունն նշված չէ" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s տվյալների բազան վերանված է %2$s-ի" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s տվյալների բազան պատճենված է %2$s-ում" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Վերնվանել տվյալների բազան" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Հեռացնել տվյալների բազան" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s տվյալների բազան հեռացված է։" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Հեռացնել տվյալների բազան (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Պատճենել տվյալների բազան" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Միայն կառուղվածքը" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Կառուցվածքն ու տվյալները" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Միայն տվյալները" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Պատճենելուց առաջ ստեղծել տվյալների բազա (CREATE DATABASE)" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Ավելացնել %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Ավելացնել AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Ավելացնել սահմանափակում" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Անցնել պատճենված տվյալների բազային" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,14 +366,14 @@ msgstr "Անցնել պատճենված տվյալների բազային" msgid "Collation" msgstr "Համեմատումը" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "" @@ -374,16 +383,18 @@ msgstr "" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Աղյուսակ" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Տողեր" @@ -393,13 +404,13 @@ msgid "Size" msgstr "Ծավալը" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "օգտագործվում է" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -407,7 +418,7 @@ msgstr "Ստեղծում" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -415,7 +426,7 @@ msgstr "Վերջին թարմացումը" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -427,92 +438,15 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s աղյուսակ" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Աճման կարգով" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Նվազման կարգով" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Դասավորել" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Ցուցադրել" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Չափորոշիչ" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Լրացնել հարցումը" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Օգտագործել աղյուսակներ" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Կամ" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Եվ" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Տեղադրել" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Հեռացնել" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Փոփոխել" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Կատարել հարցումը" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -553,7 +487,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -581,20 +515,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Նշվածները՝" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Նշել բոլորը" @@ -602,31 +537,32 @@ msgstr "Նշել բոլորը" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Արտահանում" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Դատարկել" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -670,17 +606,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Տվյալների բազա" @@ -698,18 +635,26 @@ msgstr "Թարմացված է" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Վիճակը" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Գործողություն" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Ցուցադրել" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -750,31 +695,31 @@ msgstr "" msgid "Bad type!" msgstr "Սխալ տեսակ" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Սխալ պարամետրեր" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -797,7 +742,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -868,27 +813,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -896,46 +841,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -950,7 +895,7 @@ msgstr "" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -959,7 +904,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1017,16 +962,20 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "" @@ -1046,9 +995,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1290,12 +1239,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "" @@ -1465,10 +1415,10 @@ msgid "Explain output" msgstr "" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "" @@ -1754,7 +1704,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "" @@ -1763,8 +1713,8 @@ msgstr "" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1835,7 +1785,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2308,14 +2258,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "" @@ -2326,7 +2276,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2355,6 +2305,10 @@ msgstr "" msgid "Create PHP Code" msgstr "" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Կատարել հարցումը" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2379,7 +2333,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2406,14 +2360,14 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2421,7 +2375,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2429,7 +2383,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "" @@ -2450,16 +2404,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "" @@ -2467,21 +2422,20 @@ msgstr "" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Թերթել" @@ -2502,21 +2456,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "" @@ -2533,6 +2487,74 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Աճման կարգով" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Նվազման կարգով" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Դասավորել" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Չափորոշիչ" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Լրացնել հարցումը" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Օգտագործել աղյուսակներ" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Կամ" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Եվ" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Տեղադրել" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Հեռացնել" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Փոփոխել" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "բառերից ցանկանցածը" @@ -2571,8 +2593,8 @@ msgstr[0] "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2607,64 +2629,64 @@ msgstr "Աղյուսակներ՝" msgid "Inside column:" msgstr "Սյուներ՝" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2677,103 +2699,103 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "" @@ -2891,8 +2913,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "" @@ -2908,11 +2930,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -2930,9 +2952,9 @@ msgstr "" msgid "Query" msgstr "" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "" @@ -2941,7 +2963,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3037,50 +3059,50 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3089,7 +3111,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3101,7 +3123,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3140,7 +3162,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3487,7 +3509,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "" @@ -3498,9 +3520,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "" @@ -3614,32 +3637,32 @@ msgid "Disabled" msgstr "" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "" @@ -4037,13 +4060,13 @@ msgstr "" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "" @@ -4066,7 +4089,6 @@ msgstr "" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4106,23 +4128,22 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4131,14 +4152,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "" @@ -4175,7 +4196,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4188,7 +4209,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4205,7 +4226,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4214,7 +4235,7 @@ msgid "Export type" msgstr "" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4267,7 +4288,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "" @@ -4326,7 +4346,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "" @@ -4539,7 +4558,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5605,9 +5623,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5769,7 +5789,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -5791,19 +5810,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -5859,25 +5875,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -5888,13 +5904,15 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "" @@ -5915,8 +5933,9 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "" @@ -5926,12 +5945,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "" @@ -6065,7 +6084,7 @@ msgid "View output as text" msgstr "" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "" @@ -6515,50 +6534,50 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6627,11 +6646,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6877,7 +6896,7 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -6984,93 +7003,93 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7086,238 +7105,227 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +msgid "Data creation options" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7384,6 +7392,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7437,6 +7449,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7620,11 +7636,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Հանել նշումը" @@ -7644,9 +7661,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -7681,34 +7699,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7722,7 +7749,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7758,8 +7785,8 @@ msgid "Edit event" msgstr "" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -7835,7 +7862,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -7963,25 +7991,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8110,28 +8138,28 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8266,6 +8294,432 @@ msgstr "" msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8312,11 +8766,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8566,12 +9020,6 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "" - #: main.php:217 msgid "Server charset" msgstr "" @@ -9059,422 +9507,20 @@ msgstr "" msgid "disabled" msgstr "" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11018,37 +11064,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" diff --git a/po/id.po b/po/id.po index c3853cefc7..e744867cdc 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-03-27 16:57+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: indonesian \n" @@ -16,7 +16,8 @@ msgstr "" "X-Poedit-Basepath: ../../..\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Tampilkan semua" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Cari" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Cari" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Kirim" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Basis data %1$s telah dibuat." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Komentar basis data: " @@ -121,17 +124,17 @@ msgstr "Komentar basis data: " msgid "Table comments" msgstr "Komentar tabel" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Kolom" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Jenis" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Kosong" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Kosong" msgid "Default" msgstr "Bawaan" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Tautan ke" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Komentar" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Tidak" @@ -243,19 +249,22 @@ msgstr "Tidak" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ya" @@ -263,8 +272,8 @@ msgstr "Ya" msgid "View dump (schema) of database" msgstr "Tampilkan dump (skema) basis data" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Tidak ada tabel dalam basis data." @@ -280,56 +289,56 @@ msgstr "Lepas Semua" msgid "The database name is empty!" msgstr "Nama basis data kosong!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Nama basis data %s telah diubah menjadi %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Basis data %s telah disalin ke %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Ubah nama basis data menjadi" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Hapus basis data" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Basis data %s telah dihapus." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Hapus basis data (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Salin basis data ke" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Struktur saja" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Data saja" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE sebelum menyalin" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format @@ -337,20 +346,20 @@ msgid "Add %s" msgstr "Tambahkan %s" # Imperative verb -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Tambahkan batasan" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Pindah ke basis data hasil penyalinan" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -360,7 +369,7 @@ msgstr "Pindah ke basis data hasil penyalinan" msgid "Collation" msgstr "Penyortiran" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -369,7 +378,7 @@ msgstr "" "Penyimpanan konfigurasi phpMyAdmin telah dinonaktifkan. Untuk mencari tahu " "mengapa klik %sdi sini%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Edit atau ekspor skema relasional" @@ -379,16 +388,18 @@ msgstr "Edit atau ekspor skema relasional" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Baris" @@ -398,13 +409,13 @@ msgid "Size" msgstr "Ukuran" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "sedang digunakan" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -412,7 +423,7 @@ msgstr "Pembuatan" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -420,7 +431,7 @@ msgstr "Pembaruan terakhir" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -432,92 +443,15 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tabel" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Anda harus memiliih paling tidak satu kolom untuk ditampilkan" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Menaik" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Menurun" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Urutan" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Tampilkan" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriteria" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Tambahkan/Hapus baris kriteria" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Tambahkan/Hapus kolom" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Perbarui Kueri" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Gunakan Tabel" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Atau" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Dan" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Tambahkan" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Hapus" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Ubah" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Alihkan ke %spembangun visual%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Kueri SQL pada basis data %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Kirim Kueri" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -558,7 +492,7 @@ msgstr "Pelacakan aktif" msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -588,20 +522,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s adalah mesin penyimpanan utama pada server MySQL ini." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Dengan pilihan:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Pilih Semua" @@ -609,32 +544,33 @@ msgstr "Pilih Semua" msgid "Check tables having overhead" msgstr "Pilih tabel berbeban tambahan" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspor" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Tampilan cetak" # Imperative menu -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Kosongkan" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -678,17 +614,18 @@ msgstr "Tabel yang dilacak" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Basis data" @@ -706,18 +643,26 @@ msgstr "Diperbarui" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Tindakan" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Tampilkan" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Hapus pelacakan data untuk tabel ini" @@ -758,20 +703,20 @@ msgstr "Log Basis Data" msgid "Bad type!" msgstr "Penulisan yang buruk!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Jenis ekspor yang diipilih harus disimpan dalam berkas!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Pembatasan yang buruk!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Tidak cukup ruang untuk menyimpan %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -779,12 +724,12 @@ msgstr "" "Berkas %s sudah ada pada server. Ganti nama berkas atau centang opsi " "overwrite." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Server web tidak memiliki hak akses untuk menyimpan berkas %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (Skema) disimpan pada berkas %s." @@ -807,7 +752,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometri" @@ -880,7 +825,7 @@ msgstr "" "Pilih \"GeomFromText\" dari kolom \"Fungsi\" dan rekatkan string di bawahnya " "ke dalam isian \"Value\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -889,20 +834,20 @@ msgstr "" "Anda mungkin mencoba mengunggah berkas yang terlalu besar. Harap lihat " "%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Tampilkan markah" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Markah telah dihapus." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Gagal membaca berkas" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -912,7 +857,7 @@ msgstr "" "Anda mencoba untuk memuat berkas dengan kompresi yang tidak didukung (%s). " "Dukungan belum diimplementasi atau tidak aktif di dalam konfigurasi Anda." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -923,27 +868,27 @@ msgstr "" "konfigurasi PHP Anda. Lihat [a@./Documentation.html#faq1_16@Documentation]" "FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Tidak dapat mengubah set karakter berkas tanpa pustaka konversi set karakter" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Tidak dapat memuat plugin import, harap periksa instalasi Anda!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Markah %s dibuat" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Impor telah berhasil menyelesaikan,%d kueri dieksekusi." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -951,7 +896,7 @@ msgstr "" "Script sudah melewati timeout, jika Anda ingin menyelesaikan proses impor, " "harap kirim ulang arsip yang sama dan proses impor akan berlanjut." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -960,8 +905,8 @@ msgstr "" "phpMyAdmin tidak bisa menyelesaikan proses impor kecuali Anda menambah batas " "waktu eksekusi php." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -978,7 +923,7 @@ msgstr "" "Lebih mudah untuk menggunakan phpMyAdmin dengan browser yang mendukung " "frame." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Perintah \"DROP DATABASE\" dinonaktifkan." @@ -988,7 +933,7 @@ msgstr "Perintah \"DROP DATABASE\" dinonaktifkan." msgid "Do you really want to execute \"%s\"?" msgstr "Benarkah Anda ingin untuk " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Anda akan MENGHAPUS seluruh basis data!" @@ -1046,16 +991,20 @@ msgstr "Nama inang kosong!" msgid "The user name is empty!" msgstr "Nama pengguna kosong!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Kata sandi kosong!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Kata sandi tidak sama!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Tambahkan pengguna" @@ -1075,9 +1024,9 @@ msgstr "Tutup" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1323,12 +1272,13 @@ msgstr "Tambahkan bagan pada grid" msgid "Please add at least one variable to the series" msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Tidak ada" @@ -1515,10 +1465,10 @@ msgid "Explain output" msgstr "Jelaskan hasil" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Waktu" @@ -1825,7 +1775,7 @@ msgstr "Tampilkan kotak kueri" msgid "No rows selected" msgstr "Tidak ada baris yang dipilih" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Ubah" @@ -1834,8 +1784,8 @@ msgstr "Ubah" msgid "Query execution time" msgstr "Waktu eksekusi kueri" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d bukanlah nomor baris yang berlaku." @@ -1910,7 +1860,7 @@ msgstr "Isi titk data" msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Salin" @@ -2402,14 +2352,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Galat" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Pencarian SQL" @@ -2420,7 +2370,7 @@ msgstr "Pencarian SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2449,6 +2399,10 @@ msgstr "Kode PHP tidak ditemukan" msgid "Create PHP Code" msgstr "Buat kode PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Kirim Kueri" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2473,7 +2427,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Edit di tempat" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profil" @@ -2500,14 +2454,14 @@ msgstr "Parameter yang hilang:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Awal" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2515,7 +2469,7 @@ msgstr "Sebelumnya" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2523,7 +2477,7 @@ msgstr "Berikutnya" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Akhir" @@ -2544,16 +2498,17 @@ msgstr "Klik untuk beralih" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" @@ -2561,21 +2516,20 @@ msgstr "Struktur" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Tambahkan" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Jelajahi" @@ -2596,21 +2550,21 @@ msgstr "Telusuri komputer Anda:" msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Tidak ada arsip untuk diunggah" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Eksekusi" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Cetak" @@ -2628,6 +2582,74 @@ msgstr "" msgid "Font size" msgstr "Ukuran huruf" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Menaik" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Menurun" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Urutan" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriteria" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Tambahkan/Hapus baris kriteria" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Tambahkan/Hapus kolom" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Perbarui Kueri" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Gunakan Tabel" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Atau" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Dan" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Tambahkan" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Hapus" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Ubah" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Kueri SQL pada basis data %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "paling tidak satu kata" @@ -2668,8 +2690,8 @@ msgstr[0] "%s cocok dalam tabel %s" msgid "Delete the matches for the %s table?" msgstr "Hapus yang cocok untuk %s tabel?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2704,65 +2726,65 @@ msgstr "Dalam tabel:" msgid "Inside column:" msgstr "Dalam kolom:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Simpan data yang diedit" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Pulihkan urutan kolom" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Baris mulai" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Jumlah baris" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Modus" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horisontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horisontal (judul diputar)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Judul setiap %s baris" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Urut berdasarkan kunci" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2775,62 +2797,62 @@ msgstr "Urut berdasarkan kunci" msgid "Options" msgstr "Opsi" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Teks parsial" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Teks penuh" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Kunci relasi" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Kolom tampilan relasi" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Tampilkan konten biner" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Tampilkan konten BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Tampilkan konten biner dalam HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Transformasi Browser" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Baris telah dihapus" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Tutup" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2838,44 +2860,44 @@ msgstr "" "Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." "html#faq3_11@Dokumentasi]FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "dalam susunan pemeriksaan" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Tampilan baris" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Pencarian dilakukan dalam %01.4f detik" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operasi hasil kueri" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Tampilan cetak (teks lengkap)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Tampilkan bagan" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Buat tampilan" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Tautan tidak ditemukan" @@ -3001,8 +3023,8 @@ msgstr "" "untuk dibuang." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Basis data" @@ -3018,11 +3040,11 @@ msgid "Tracking" msgstr "Pelacakan" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Trigger" @@ -3040,9 +3062,9 @@ msgstr "Basis data kelihatannya kosong!" msgid "Query" msgstr "Kueri" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Hak Akses" @@ -3051,7 +3073,7 @@ msgid "Routines" msgstr "Routine" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Event" @@ -3150,46 +3172,46 @@ msgstr "%s didinonaktifkan untuk server MySQL ini." msgid "This MySQL server does not support the %s storage engine." msgstr "Server MySQL ini tidak mendukung mesin penyimpanan %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "status tabel tidak diketahui:" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Basis data sumber" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s tidak ditemukan!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Basis data tidak valid" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Nama tabel tidak valid" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Galat sewaktu mengganti nama table %1$s menjadi %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Nama tabel %s telah diubah menjadi %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Tidak dapat menyimpan preferensi UI tabel" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3198,7 +3220,7 @@ msgstr "" "Gagal membersihkan tabel UI preferences (lihat $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3210,7 +3232,7 @@ msgstr "" "struktur tabel telah berubah." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Fungsi" @@ -3222,7 +3244,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3261,7 +3283,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" @@ -3622,7 +3644,7 @@ msgstr "dibagi" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabel" @@ -3633,9 +3655,10 @@ msgstr "Tabel" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Data" @@ -3758,32 +3781,32 @@ msgid "Disabled" msgstr "Tidak aktif" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "struktur" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "data" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "struktur dan data" @@ -4203,13 +4226,13 @@ msgstr "Kompresi" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Masukkan nama kolom pada baris pertama" @@ -4232,7 +4255,6 @@ msgstr "Kolom dikembalikan oleh" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Ganti NULL dengan" @@ -4272,23 +4294,22 @@ msgstr "Templat nama tabel" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Tabel dump" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Masukkan judul halaman tabel" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Judul halaman" @@ -4297,14 +4318,14 @@ msgid "Continued table caption" msgstr "Lanjutan dari judul halaman tabel" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Kunci nama" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Jenis MIME" @@ -4341,7 +4362,7 @@ msgid "SQL compatibility mode" msgstr "Modus kompatibilitas SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Opsi CREATE TABLE:" @@ -4354,7 +4375,7 @@ msgid "Use delayed inserts" msgstr "Gunakan perintah INSERT memperlambat" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Tanpa pemeriksaan kunci asing" @@ -4371,7 +4392,7 @@ msgid "Syntax to use when inserting data" msgstr "Sintaks yang digunakan sewaktu menambahkan data" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Panjang maksimum kueri yang dibuat" @@ -4380,7 +4401,7 @@ msgid "Export type" msgstr "Jenis ekspor" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Jalankan ekspor dalam transaksi" @@ -4433,7 +4454,6 @@ msgstr "Sesuaikan opsi bawaan" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "Data CSV" @@ -4492,7 +4512,6 @@ msgid "Set import and export directories and compression options" msgstr "Tetapkan opsi direktori dan kompresi impor dan ekspor" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4709,7 +4728,6 @@ msgid "Customize text input fields" msgstr "Sesuaikan isian masukan teks" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Teks Texy!" @@ -5804,9 +5822,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Kata Sandi" @@ -5968,7 +5988,6 @@ msgstr "CSV menggunakan LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" @@ -5990,19 +6009,16 @@ msgstr "Opsi ekspor basis data" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV untuk data MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Text" @@ -6060,7 +6076,7 @@ msgstr "Ekstensi %s tidak ditemukan. Harap periksa konfigurasi PHP Anda." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6068,19 +6084,19 @@ msgstr "" "Server tidak merespons (atau soket server lokal tidak dikonfigurasi dengan " "benar)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Server tidak merespons." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Harap periksa hak akses direktori basis data." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Rincian..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6092,13 +6108,15 @@ msgid "Change password" msgstr "Ubah Sandi" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Kata Sandi belum ditetapkan" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Ketik ulang" @@ -6119,8 +6137,9 @@ msgstr "Buat basis data" msgid "Create" msgstr "Buat" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Tidak Ada Hak Akses" @@ -6130,12 +6149,12 @@ msgid "Create table" msgstr "Buat tabel" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nama" @@ -6269,7 +6288,7 @@ msgid "View output as text" msgstr "Tampilkan hasil sebagai teks" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Format:" @@ -6749,52 +6768,52 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Data untuk visualisasi GIS tidak ditemukan." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memberikan hasil kosong (atau nol baris)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Tuju ke basis data" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Edit pengaturan %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Tuju ke tabel" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Struktur %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" @@ -6866,11 +6885,11 @@ msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Menampilkan kueri SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Nomor baris baru: %1$d" @@ -7118,7 +7137,7 @@ msgstr "Dokumentasi phpMyAdmin" msgid "Reload navigation frame" msgstr "Muat ulang bingkai navigasi" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Format ini tidak memiliki opsi" @@ -7234,93 +7253,93 @@ msgstr "Tidak ada kunci autentikasi yang terpasang" msgid "Authenticating..." msgstr "Mengautentikasi..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Kolom dipisahkan oleh:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Kolom diapit oleh:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Kolom dikembalikan oleh:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Baris diakhir dengan:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Ganti NULL dengan:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Versi Excel:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Opsi dump data" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Dumping data untuk tabel" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Event" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definisi" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struktur dari tabel" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktur untuk view" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7336,242 +7355,233 @@ msgstr "(dilanjutkan)" msgid "Structure of table @TABLE@" msgstr "Struktur tabel @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Opsi pembuatan objek" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Judul halaman (lanjutan)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Tampilkan hubungan kunci luar" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Tampilkan komentar" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Tampilkan jenis MIME" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Inang" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Waktu pembuatan" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versi Server" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Versi PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Tabel MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "Ekspor isi" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horisontal (judul diputar)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Judul laporan:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "Larik PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Menambahkan komentar judul kustom (\\n memotong baris)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Tambahkan statement %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Tambahkan statement:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Opsi pembuatan objek" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Alih-alih perintah INSERT, gunakan:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "perintah INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "perintah INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Fungsi yang digunakan sewaktu dump data:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Sintaks yang digunakan sewaktu menambah data:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Prosedur" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Fungsi" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Ketidakleluasaan untuk tabel" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "JENIS MIME UNTUK TABEL" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELASI UNTUK TABEL" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Galat pembacaan data:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "View" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Ekspor isi" @@ -7638,6 +7648,10 @@ msgstr "Nama kolom" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Tabel MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7693,6 +7707,10 @@ msgstr "Modus kompatibilitas SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7923,11 +7941,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "tidak ada deskripsi" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Lepas Semua" @@ -7947,9 +7966,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Nama pengguna" @@ -7984,34 +8004,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Tambahkan pengguna replikasi slave" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Setiap pengguna" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Gunakan text field" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Semua inang" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Inang Ini" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Gunakan Host Table" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8025,7 +8054,7 @@ msgstr "Menghasilkan kata sandi" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8061,8 +8090,8 @@ msgid "Edit event" msgstr "Edit event" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Galat sewaktu memproses permintaan." @@ -8138,7 +8167,8 @@ msgstr "Anda harus memasukkan jenis yang valid untuk event." msgid "You must provide an event definition." msgstr "Anda harus memasukkan definisi event." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Baru" @@ -8268,24 +8298,24 @@ msgstr "Anda harus memasukkan jenis hasil yang valid untuk routine." msgid "You must provide a routine definition." msgstr "Anda harus memasukkan definisi routine." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Hasil eksekusi routine %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Hasil eksekusi routine %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Jalankan routine" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Parameter routine" @@ -8416,28 +8446,28 @@ msgstr "Event dengan nama %1$s tidak ditemukan dalam basis data %2$s" msgid "There are no events to display." msgstr "Tidak ada event untuk ditampilkan." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabel %s tidak ditemukan!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Harap konfigurasikan koordinasi bagi tabel %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Skema basis data %s - Halaman %s" @@ -8574,6 +8604,463 @@ msgstr "Bahasa tidak dikenal: %1$s." msgid "Current Server" msgstr "Server Saat Ini" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Tanpa hak akses." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Mencakup semua hak akses selain GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Mengizinkan untuk baca data." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Mengizinkan untuk tambah dan ganti data." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Mengizinkan untuk ubah data." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Mengizinkan untuk menghapus data." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Mengizinkan untuk membuat basis data dan tabel baru." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Mengizinkan penghapusan basis data dan tabel." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Mengizinkan untuk memuat ulang pengaturan server dan membersihkan singgahan " +"server." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Mengizinkan untuk shut-down server." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Mengizinkan untuk melihat proses dari semua pengguna" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Mengizinkan mengimpor data dari dan mengekspor data ke berkas." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Tidak ada efek dalam versi MySQL yang digunakan." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Mengizinkan untuk mengubah struktur dari tabel yang ada." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Memberi akses ke seluruh daftar basis data." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Mengizinkan untuk tetap konek meskipun jumlah batas koneksi telah tercapai; " +"diperlukan untuk hampir semua operasi administratif seperti stelan variabel " +"global atau untuk menonaktifkan sebuah Thread yang dimiliki oleh pengguna " +"lain." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Mengizinkan untuk membuat tabel temporer." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Digunakan untuk replikasi dari slaves." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Mengizinkan untuk membuat view baru." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Mengizinkan penyiapan event untuk penjadwal event" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Mengizinkan untuk membuat dan menghapus trigger" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Mengizinkan untuk membuat routine tersimpan." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Mengizinkan untuk mengubah dan menghapus routine tersimpan." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Mengizinkan untuk membuat, menghapus, dan mengubah nama akun pengguna." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Mengizinkan eksekusi routine tersimpan." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Tidak ada" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Batas dari sumber" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas " +"yang telah ditentukan." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Membatasi jumlah kueri yang diperbolehkan untuk setiap pengguna dalam batas " +"waktu satu jam." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Membatasi jumlah perintah untuk merubah sebuah tabel atau basis data untuk " +"setiap pengguna dalam batas waktu satu jam." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " +"batas waktu satu jam." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Membatasi jumlah koneksi simultan yang dapat dibuat pengguna." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Hak akses khusus tabel" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Catatan: Nama hak akses MySQL dalam bahasa Inggris " + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administrasi" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Hak akses global" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Hak akses khusus basis data" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Mengizinkan untuk membuat tabel baru." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Mengizinkan untuk hapus tabel." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Mengizinkan untuk menambah pengguna dan hak akses tanpa harus memuat ulang " +"tabel hak akses." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Informasi Masuk" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Jangan ubah Kata Sandi" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Sukses mengubah Kata Sandi untuk %s ." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Anda telah mencabut hak akses untuk %s." + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Basis data untuk pengguna" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Buat basis data dengan nama yang sama dan beri semua hak" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Berikan semua hak untuk basis data "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Pengguna memiliki akses ke "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Pengguna" + +# Table column to indicate if the user able to grant a privilege +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Pemberi Izin" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Pengguna %s telah ditambahkan." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Semua" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "khusus basis data" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "wildcard" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Pengguna tidak ditemukan." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Edit Hak Akses" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Cabut" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Ekspor" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... mempertahankan yang lama." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... hapus yang lama dari User Table." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... cabut seluruh hak yang aktif, kemudian hapuskan yang lama." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... hapuskan yang lama dari tabel pengguna, kemudian muat ulang hak akses." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Ubah Informasi Masuk / Salin Pengguna" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Buat pengguna baru dengan hak akses yang sama dan ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Hak akses khusus kolom" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Tambahkan hak akses pada basis data berikut" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Wildcard _ dan % sebaiknya diakhiri dengan tanda \\ untuk mengunakannya " +"secara harfiah" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Tambahkan hak akses pada tabel berikut" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Hapus pengguna yang dipilih" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Cabut semua hak akses dari pengguna dan hapus setelahnya" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Hapus basis data yang memiliki nama yang sama dengan pengguna." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Memuat hak akses" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Sukses menghapus pengguna yang dipilih." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Anda telah memperbarui hak akses untuk %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Hak Akses" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Hak Akses" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Ikhtisar pengguna" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " +"tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " +"pengguna yang digunakan oleh Server pada saat ini bila tabel tsb. pernah " +"diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " +"melanjut." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Pengguna baru telah ditambahkan." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Basis data sumber" @@ -8620,11 +9107,11 @@ msgstr "Bersihkan" msgid "Columns" msgstr "Kolom" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Markahi kueri SQL ini" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses markah ini" @@ -8903,12 +9390,6 @@ msgstr "Versi perangkat lunak" msgid "Protocol version" msgstr "Versi protokol" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Pengguna" - #: main.php:217 msgid "Server charset" msgstr "Set karakter server" @@ -9424,453 +9905,20 @@ msgstr "Lisensi" msgid "disabled" msgstr "tidak aktif" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Mencakup semua hak akses selain GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Mengizinkan untuk mengubah struktur dari tabel yang ada." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Mengizinkan untuk mengubah dan menghapus routine tersimpan." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Mengizinkan untuk membuat basis data dan tabel baru." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Mengizinkan untuk membuat routine tersimpan." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Mengizinkan untuk membuat tabel baru." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Mengizinkan untuk membuat tabel temporer." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Mengizinkan untuk membuat, menghapus, dan mengubah nama akun pengguna." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Mengizinkan untuk membuat view baru." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Mengizinkan untuk menghapus data." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Mengizinkan penghapusan basis data dan tabel." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Mengizinkan untuk hapus tabel." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Mengizinkan penyiapan event untuk penjadwal event" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Mengizinkan eksekusi routine tersimpan." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Mengizinkan mengimpor data dari dan mengekspor data ke berkas." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Mengizinkan untuk menambah pengguna dan hak akses tanpa harus memuat ulang " -"tabel hak akses." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Mengizinkan untuk tambah dan ganti data." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " -"batas waktu satu jam." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Membatasi jumlah kueri yang diperbolehkan untuk setiap pengguna dalam batas " -"waktu satu jam." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Membatasi jumlah perintah untuk merubah sebuah tabel atau basis data untuk " -"setiap pengguna dalam batas waktu satu jam." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Membatasi jumlah koneksi simultan yang dapat dibuat pengguna." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Mengizinkan untuk melihat proses dari semua pengguna" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Tidak ada efek dalam versi MySQL yang digunakan." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Mengizinkan untuk memuat ulang pengaturan server dan membersihkan singgahan " -"server." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Digunakan untuk replikasi dari slaves." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Mengizinkan untuk baca data." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Memberi akses ke seluruh daftar basis data." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Mengizinkan untuk shut-down server." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Mengizinkan untuk tetap konek meskipun jumlah batas koneksi telah tercapai; " -"diperlukan untuk hampir semua operasi administratif seperti stelan variabel " -"global atau untuk menonaktifkan sebuah Thread yang dimiliki oleh pengguna " -"lain." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Mengizinkan untuk membuat dan menghapus trigger" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Mengizinkan untuk ubah data." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Tanpa hak akses." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Tidak ada" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Hak akses khusus tabel" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Catatan: Nama hak akses MySQL dalam bahasa Inggris " - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administrasi" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Hak akses global" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Hak akses khusus basis data" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Batas dari sumber" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas " -"yang telah ditentukan." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Informasi Masuk" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Jangan ubah Kata Sandi" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Pengguna tidak ditemukan." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Pengguna baru telah ditambahkan." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Anda telah memperbarui hak akses untuk %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Anda telah mencabut hak akses untuk %s." - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Sukses mengubah Kata Sandi untuk %s ." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Menghapus %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Memuat hak akses" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Sukses menghapus pengguna yang dipilih." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Hak akses berhasil dimuat ulang." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Edit Hak Akses" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Cabut" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Ekspor" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Semua" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Hak Akses" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Hak Akses" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Ikhtisar pengguna" - -# Table column to indicate if the user able to grant a privilege -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Pemberi Izin" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Hapus pengguna yang dipilih" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Cabut semua hak akses dari pengguna dan hapus setelahnya" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Hapus basis data yang memiliki nama yang sama dengan pengguna." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " -"tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " -"pengguna yang digunakan oleh Server pada saat ini bila tabel tsb. pernah " -"diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " -"melanjut." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Hak akses khusus kolom" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Tambahkan hak akses pada basis data berikut" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Wildcard _ dan % sebaiknya diakhiri dengan tanda \\ untuk mengunakannya " -"secara harfiah" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Tambahkan hak akses pada tabel berikut" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Ubah Informasi Masuk / Salin Pengguna" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Buat pengguna baru dengan hak akses yang sama dan ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... mempertahankan yang lama." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... hapus yang lama dari User Table." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... cabut seluruh hak yang aktif, kemudian hapuskan yang lama." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... hapuskan yang lama dari tabel pengguna, kemudian muat ulang hak akses." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Basis data untuk pengguna" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Buat basis data dengan nama yang sama dan beri semua hak" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Berikan semua hak untuk basis data "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Pengguna memiliki akses ke "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "khusus basis data" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "wildcard" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Pengguna %s telah ditambahkan." - #: server_replication.php:82 msgid "Unknown error" msgstr "Galat tidak dikenal" @@ -11476,39 +11524,39 @@ msgstr "Kunci harus terdiri dari huruf, angka, [em]dan[/em] karakter khusus." msgid "Wrong data" msgstr "Data salah" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Menggunakan markah \"%s\" sebagai kueri penjelajahan bawaan." -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Benarkah Anda ingin untuk " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Tampilkan sebagai kode PHP" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "SQL tervalidasi" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Hasil SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Diciptakan oleh" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Judul" @@ -13325,6 +13373,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Koneksi konkuren maks." +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "Larik PHP" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/it.po b/po/it.po index 19e6c42737..8dad6262ba 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-06-03 03:23+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Mostra tutti" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Cerca" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Esegui" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Il database %1$s è stato creato." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Commento del database: " @@ -121,17 +124,17 @@ msgstr "Commento del database: " msgid "Table comments" msgstr "Commenti alla tabella" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Campo" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tipo" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Null" msgid "Default" msgstr "Predefinito" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Collegamenti a" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Commenti" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "No" @@ -243,19 +249,22 @@ msgstr "No" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Sì" @@ -263,8 +272,8 @@ msgstr "Sì" msgid "View dump (schema) of database" msgstr "Visualizza dump (schema) del database" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Non ci sono tabelle nel database." @@ -280,74 +289,74 @@ msgstr "Deseleziona tutto" msgid "The database name is empty!" msgstr "Il nome del database è vuoto!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Il database %1$s è stato rinominato come %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Il database %1$s è stato copiato come %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Rinomina il database come" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Elimina il database" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Il database %s è stato eliminato." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Cancella il database (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Copia il database come" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Solo struttura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struttura e dati" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Solo dati" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prima di copiare" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Aggiungi %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Aggiungi vincoli" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Passa al database copiato" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "Passa al database copiato" msgid "Collation" msgstr "Codifica caratteri" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -366,7 +375,7 @@ msgstr "" "Le opzioni di configurazione dello storage di phpMyAdmin sono state " "disabilitate. Per scoprire la ragione, clicca %squi%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Modifica o esporta schema relazionale" @@ -376,16 +385,18 @@ msgstr "Modifica o esporta schema relazionale" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabella" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Righe" @@ -395,13 +406,13 @@ msgid "Size" msgstr "Dimensione" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "in uso" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -409,7 +420,7 @@ msgstr "Creazione" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -417,7 +428,7 @@ msgstr "Ultimo cambiamento" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -430,92 +441,15 @@ msgid_plural "%s tables" msgstr[0] "%s tabella" msgstr[1] "%s tabelle" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Devi scegliere almeno un campo da mostrare" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Crescente" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Decrescente" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Ordinamento" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Mostra" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Criterio" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Aggiungi/Cancella criterio di riga" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Aggiungi/Cancella campi" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Aggiorna Query" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Utilizza tabelle" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Oppure" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "E" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Aggiungi" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Elimina" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modifica" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Passa a %svisual builder%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-query sul database %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Invia Query" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -556,7 +490,7 @@ msgstr "Il tracking è attivo." msgid "Tracking is not active." msgstr "Il tracking non è attivo." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -586,20 +520,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Se selezionati:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Seleziona tutti" @@ -607,31 +542,32 @@ msgstr "Seleziona tutti" msgid "Check tables having overhead" msgstr "Controllo addizionale" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esporta" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Svuota" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -675,17 +611,18 @@ msgstr "Tabelle monitorate" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Database" @@ -703,18 +640,26 @@ msgstr "Aggiornato" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Stato" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Azione" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Mostra" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Cancella dati di tracciamento per questa tabella" @@ -755,21 +700,21 @@ msgstr "Log database" msgid "Bad type!" msgstr "Tipo errato!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" "Il tipo di esportazione selezionato necessita di essere salvato in un file!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Parametri errati!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spazio insufficiente per salvare il file %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -777,12 +722,12 @@ msgstr "" "Il file %s esiste già sul server, prego, cambia il nome del file o seleziona " "l'opzione di sovrascriittura." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Il server web non possiede i privilegi per salvare il file %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Il dump è stato salvato nel file %s." @@ -805,7 +750,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometria" @@ -878,7 +823,7 @@ msgstr "" "Seleziona \"GeomFromText\" nella colonna \"Funzione\" ed incolla la stringa " "sottostante nel campo \"Valore\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -888,20 +833,20 @@ msgstr "" "Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare " "questo limite." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Visualizzazione segnalibri" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Il bookmark è stato cancellato." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Il file non può essere letto" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -912,7 +857,7 @@ msgstr "" "supportato. Il supporto per questo tipo di compressione potrebbe non essere " "ancora stato implementato oppure è disabilitato nella tua configurazioni." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -923,30 +868,30 @@ msgstr "" "configurazione di PHP per l'upload di un file. Vedi [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Impossibile convertire il set di caratteri del file in assenza di una " "libreria di conversione dei caratteri installata" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Non è stato possibile caricare i plugin di importazione, controlla la tua " "installazione!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Segnalibro %s creato" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importazione eseguita con successo, %d query eseguite." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -954,7 +899,7 @@ msgstr "" "Superato il tempo limite per l'esecuzione dello script, se vuoi portare a " "termine l'importazione inoltra nuovamente il file ed il processo riprenderà." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -963,8 +908,8 @@ msgstr "" "evidenzia che il limite di tempo impostato nella configurazione è troppo " "basso per consentire a phpMyAdmin di terminare l'operazione." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -979,7 +924,7 @@ msgstr "Indietro" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funziona meglio con browser che supportano i frames." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "I comandi \"DROP DATABASE\" sono disabilitati." @@ -988,7 +933,7 @@ msgstr "I comandi \"DROP DATABASE\" sono disabilitati." msgid "Do you really want to execute \"%s\"?" msgstr "Sei sicuro di voler eseguire \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Stai per DISTRUGGERE COMPLETAMENTE un intera base di dati!" @@ -1046,16 +991,20 @@ msgstr "Il nome di host è vuoto!" msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "La password non coincide!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Aggiungi utente" @@ -1075,9 +1024,9 @@ msgstr "Chiudi" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1324,12 +1273,13 @@ msgstr "Aggiungi diagramma alla griglia" msgid "Please add at least one variable to the series" msgstr "Aggiungi almeno una variabile alla serie" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Nessuno" @@ -1518,10 +1468,10 @@ msgid "Explain output" msgstr "Spiega l'output" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Tempo" @@ -1826,7 +1776,7 @@ msgstr "Mostra riquadro query SQL" msgid "No rows selected" msgstr "Nessuna riga selezionata" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Modifica" @@ -1835,8 +1785,8 @@ msgstr "Modifica" msgid "Query execution time" msgstr "Tempo di esecuzione della query" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d non è un numero valido di righe." @@ -1913,7 +1863,7 @@ msgstr "Contenuto del punto" msgid "Ignore" msgstr "Ignora" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Copia" @@ -2401,14 +2351,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Errore" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Query SQL" @@ -2419,7 +2369,7 @@ msgstr "Query SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2448,6 +2398,10 @@ msgstr "Senza codice PHP" msgid "Create PHP Code" msgstr "Crea il codice PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Invia Query" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2472,7 +2426,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profiling" @@ -2499,14 +2453,14 @@ msgstr "Parametro mancante:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Inizio" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2514,7 +2468,7 @@ msgstr "Precedente" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2522,7 +2476,7 @@ msgstr "Prossima" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Ultima" @@ -2543,16 +2497,17 @@ msgstr "Clicca per alternare" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struttura" @@ -2560,21 +2515,20 @@ msgstr "Struttura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Inserisci" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Mostra" @@ -2595,21 +2549,21 @@ msgstr "Cerca sul tuo computer:" msgid "Select from the web server upload directory %s:" msgstr "Selezionare dalla cartella di upload del server web %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Nessun file da caricare" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Esegui" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Stampa" @@ -2628,6 +2582,74 @@ msgstr "" msgid "Font size" msgstr "Dimensione font" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Crescente" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Decrescente" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Ordinamento" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Criterio" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Aggiungi/Cancella criterio di riga" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Aggiungi/Cancella campi" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Aggiorna Query" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Utilizza tabelle" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Oppure" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "E" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Aggiungi" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Elimina" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modifica" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-query sul database %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "almeno una delle parole" @@ -2670,8 +2692,8 @@ msgstr[1] "%1$s corrispondenze nella tabella %2$s" msgid "Delete the matches for the %s table?" msgstr "Eliminare le corrispondenze relative alla tabella %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2706,65 +2728,65 @@ msgstr "Nelle tabelle:" msgid "Inside column:" msgstr "All'interno del campo:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Salva i dati modificati" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Ripristina l'ordine dei campi" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Riga iniziale" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Numero di righe" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Modalità" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "orizzontale" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "orizzontale (headers ruotati)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "verticale" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Intestazioni ogni %s righe" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Ordina per chiave" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2777,60 +2799,60 @@ msgstr "Ordina per chiave" msgid "Options" msgstr "Opzioni" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Testi parziali" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Testi completi" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Chiave relazionale" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Campo di visualizzazione relazionale" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Mostra contenuti binari" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Mostra contenuti BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Mostra contenuti binari come esadecimali" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Nascondi le trasformazioni del browser" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "La riga è stata cancellata" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Rimuovi" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2838,44 +2860,44 @@ msgstr "" "Può essere approssimato. Vedi [a@./Documentation.html#faq3_11@Documentation]" "FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "nella query" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Mostrando le righe" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "totale" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Vista stampa (con full text)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Mostra diagramma" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Visualizzare dati GIS" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Crea vista" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Link non trovato" @@ -2998,8 +3020,8 @@ msgstr "" "possibilmente, essere rimosso." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Database" @@ -3015,11 +3037,11 @@ msgid "Tracking" msgstr "Tracking" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggers" @@ -3037,9 +3059,9 @@ msgstr "Il database sembra essere vuoto!" msgid "Query" msgstr "Query da esempio" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegi" @@ -3048,7 +3070,7 @@ msgid "Routines" msgstr "Routines" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Eventi" @@ -3146,44 +3168,44 @@ msgstr "%s è stato disabilitato su questo server MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Questo server MySQL non supporta il motore di memorizzazione %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "stato della tabella sconosciuto: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Database di origine `%s` non é stato trovato!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Tema `%s` non é stato trovato!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Database non valido" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Nome tabella non valido" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Errore nel rinominare la tabella %1$s in %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La tabella %1$s è stata rinominata %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" "Impossibile salvare la tabella delle preferenze per l'interfaccia utente" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3192,7 +3214,7 @@ msgstr "" "Impossibile ripulire la tabella delle preferenze UI (v. $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3204,7 +3226,7 @@ msgstr "" "della tabella è cambiata." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funzione" @@ -3216,7 +3238,7 @@ msgstr "Operatore" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3255,7 +3277,7 @@ msgid "Maximum rows to plot" msgstr "Massimo numero di righe da visualizzare" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" @@ -3614,7 +3636,7 @@ msgstr "condiviso" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabelle" @@ -3625,9 +3647,10 @@ msgstr "Tabelle" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Dati" @@ -3746,32 +3769,32 @@ msgid "Disabled" msgstr "Disabilitata" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "struttura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "dati" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "struttura e dati" @@ -4201,13 +4224,13 @@ msgstr "Compressione" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Metti i nomi dei campi nel primo rigo" @@ -4230,7 +4253,6 @@ msgstr "Campi prefissati da" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Sostituisci NULL con" @@ -4270,23 +4292,22 @@ msgstr "Modello per nomi delle tabelle" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Dump delle tabelle" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Includi sottotitolo della tabella" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Sottotitolo della tabella" @@ -4295,14 +4316,14 @@ msgid "Continued table caption" msgstr "Sottotitolo della tabella, continuato" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Chiave etichetta" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Tipo MIME" @@ -4339,7 +4360,7 @@ msgid "SQL compatibility mode" msgstr "Modalità di compatibilità SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "opzioni di CREATE TABLE:" @@ -4352,7 +4373,7 @@ msgid "Use delayed inserts" msgstr "Usa inserimenti ritardati" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Disabilita i controlli sulle chiavi straniere" @@ -4369,7 +4390,7 @@ msgid "Syntax to use when inserting data" msgstr "Sintassi da utilizzare nell'inserimento dei dati" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Lunghezza massima di una query creata" @@ -4378,7 +4399,7 @@ msgid "Export type" msgstr "Tipo di esportazione" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Includi esportazione in una transazione" @@ -4434,7 +4455,6 @@ msgstr "Personalizza le opzioni predefinite" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4495,7 +4515,6 @@ msgstr "" "l'importazione" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4730,7 +4749,6 @@ msgstr "Personalizza le opzioni dei campi di input" # I think "Texy" is a mistake because on KB "y" is close to "t" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Testo! testo" @@ -5952,9 +5970,11 @@ msgstr "Richiede l'abilitazione del validatore SQL" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Password" @@ -6137,7 +6157,6 @@ msgstr "CSV usando LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Foglio di calcolo nel formato Open Document" @@ -6159,19 +6178,16 @@ msgstr "Opzioni di esportazione per database" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV per dati MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Testo nel formato Open Document" @@ -6235,7 +6251,7 @@ msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP." msgid "possible deep recursion attack" msgstr "possibile attacco di ricorsione in profondità" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6243,19 +6259,19 @@ msgstr "" "Il server non risponde (o il socket del server locale MySQL non è " "correttamente configurato)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Il server non risponde." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Controllate i privilegi della cartella che contiene il database." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Dettagli..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6267,13 +6283,15 @@ msgid "Change password" msgstr "Cambia password" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Nessuna Password" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Reinserisci" @@ -6294,8 +6312,9 @@ msgstr "Crea un nuovo database" msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Nessun Privilegio" @@ -6305,12 +6324,12 @@ msgid "Create table" msgstr "Crea tabelle" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nome" @@ -6450,7 +6469,7 @@ msgid "View output as text" msgstr "Salva l'output come testo" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Formato:" @@ -6971,51 +6990,51 @@ msgstr "Il Blog The PrimeBase XT Blog di Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Nessun data trovato per la visualizzazione GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Visualizza i contenuti della struttura facendo click sul suo nome" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Modificare ogni impostazione cliccando sul corrispondente link \"Opzioni\"" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Modifica la struttura seguendo il link \"Struttura\"" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Vai al database: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Modifica impostazioni per %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Vai alla tabella: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Struttura di %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Vai alla visualizzazione: %s" @@ -7087,11 +7106,11 @@ msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Visualizzo la query SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" @@ -7337,7 +7356,7 @@ msgstr "Documentazione di phpMyAdmin" msgid "Reload navigation frame" msgstr "Ricarica la frame di navigazione" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Questo formato non ha opzioni" @@ -7453,95 +7472,95 @@ msgstr "Nessuna chiave di autentificazione valida inserita" msgid "Authenticating..." msgstr "Autenticazione..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Campi terminati con:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Campi limitati da:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Campi prefissati con:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Linee terminate con:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Sostituisci NULL con:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" "Rimuovi i caratteri di ritorno a capo/avanzamento riga (CR/LF) dall'interno " "dei campi" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Edizione Excel:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Opzioni del dump dei dati" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Dump dei dati per la tabella" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Evento" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definizione" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struttura della tabella" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struttura per la vista" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Struttura stand-in per le viste" @@ -7557,96 +7576,85 @@ msgstr "(continua)" msgid "Structure of table @TABLE@" msgstr "Struttura della tabella @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Opzioni di creazione dell'oggetto" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Sottotitolo della tabella (continuato)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Visualizza le relazioni delle chiavi esterne" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Visualizza commenti" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Mostra tipi MIME" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Host" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Generato il" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versione del server" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Versione PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Tabella MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Esporta nomi delle tabelle" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "orizzontale (headers ruotati)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Genera un report contenete i dati di una singola tabella)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Titolo del report:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "Array PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7654,13 +7662,13 @@ msgstr "" "Visualizza commenti(include informazioni come l'orario dell'esportazione, " "versione di PHP, e la versione del server)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Aggiunge un commento personalizzato al header (\n" " per tornare a capo):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7668,25 +7676,25 @@ msgstr "" "Includi l'orario della creazione, ultimo aggiornamento, ed ultimo controllo " "del database" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Sistema di database o server MySQL un po' vecchio per massimizzare la " "compatibilitá con:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Aggiungi l'istruzione %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Aggiungi istruzioni:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7695,32 +7703,39 @@ msgstr "" "nomi dei campi e tabelle che contengono caratteri speciali or parole chiave)" "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Opzioni di creazione dell'oggetto" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Svuota la tabella prima dell'inserimento" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Invece delle istruzioni INSERT, usa:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "Istruzioni INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "Istruzioni INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Funzione da utilizzare per il dumping dei dati:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "La sintassi da utilizza per gli inserimenti dei dati:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7730,7 +7745,7 @@ msgstr "" "      Ad esempio: INSERT INTO tbl_name (col_A,col_B," "col_C) VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7740,7 +7755,7 @@ msgstr "" "      Ad esempio: INSERT INTO tbl_name VALUES (1,2,3), " "(4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7748,7 +7763,7 @@ msgstr "" "emtrambi i precedenti
      Ad esempio: INSERT " "INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7756,7 +7771,7 @@ msgstr "" "nessuno dei precedenti
      Ad esempio: INSERT " "INTO tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7764,7 +7779,7 @@ msgstr "" "Esegui il dump dei campi nella notazione esadecimale (ad esempio, \"abc\" " "diventa 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7772,50 +7787,45 @@ msgstr "" "Esegui il dump dei campi TIMESTAMP in UTC (abilita il dump e la ricarica " "dei campi TIMESTAMP tra server in diversi fusi orari)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedure" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funzioni" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Limiti per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Limiti per la tabella" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Si è verificato un errore durante la lettura dei dati:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Opzioni di creazione degli oggetti (sono tutte consigliate)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Viste" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Esporta contenuti" @@ -7890,6 +7900,10 @@ msgstr "Nomi dei campi" msgid "This plugin does not support compressed imports!" msgstr "Questo plugin non supporta importazioni di dati compressi!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Tabella MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7950,6 +7964,10 @@ msgstr "Modalitá di compatibilità SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non usare AUTO_INCREMENT per il valori zero" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8196,11 +8214,12 @@ msgstr "" "Rieffettua il login in phpMyAdmin per caricare il file della configurazione " "aggiornato." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "nessuna descrizione" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Deseleziona tutti" @@ -8222,9 +8241,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Nome utente" @@ -8261,34 +8281,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Aggiungi un utente per replicazione slave" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Qualsiasi utente" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Utilizza campo text" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Qualsiasi host" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Locale" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Questo Host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Utilizza la Tabella dell'Host" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8304,7 +8333,7 @@ msgstr "Genera Password" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8343,8 +8372,8 @@ msgid "Edit event" msgstr "Modifica evento" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Errore nel processare la richiesta" @@ -8420,7 +8449,8 @@ msgstr "È necessario fornire un valido tipo per l'evento." msgid "You must provide an event definition." msgstr "È necessario fornire una definizione per l'evento." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Nuovo" @@ -8557,7 +8587,12 @@ msgstr "È necessario fornire un valido tipo del risultato." msgid "You must provide a routine definition." msgstr "È necessario fornire una definizione per la routine." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Risultato di esecuzione della routine %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8568,18 +8603,13 @@ msgstr[1] "" "%d righe influenzate dall'ultima istruzione eseguita all'interno della " "procedura" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Risultato di esecuzione della routine %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Esegui routine" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Parametri della routine" @@ -8710,28 +8740,28 @@ msgstr "Non é stata trovato alcun evento con nome %1$s nel database %2$s" msgid "There are no events to display." msgstr "Non ci sono eventi da visualizzare." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "La tabella %s non esiste!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prego, configurare le coordinate per la tabella %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema del database %s - Pagina %s" @@ -8868,6 +8898,454 @@ msgstr "Lingua non conosciuta : %1$s." msgid "Current Server" msgstr "Server corrente" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Nessun privilegio." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Comprende tutti i privilegi tranne GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Permette di leggere i dati." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Permette di inserire e sovrascrivere dati." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Permette di cambiare i dati." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Permette di cancellare dati." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Permette di creare nuove tabelle e nuovi databases." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Permette di eliminare databases e tabelle." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Permette di ricaricare i parametri del server e di resettare la cache del " +"server." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Permette di chiudere il server." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Permette di vedere i processi di tutti gli utenti" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Permette di importare dati da e esportare dati in file." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Non ha alcun effetto in questa versione di MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Permette di creare ed eliminare gli indici." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Permette di alterare la struttura di tabelle esistenti." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Accorda l'accesso alla lista completa dei databases." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Permette altre connessioni, anche se è stato raggiunto il massimo numero di " +"connessioni; necessario per molte operazioni di amministrazione come il " +"settaggio di variabili globali o la cancellazione dei threads di altri " +"utenti." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Permette di creare tabelle temporanee." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Permette di bloccare le tabelle per il thread corrente." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Necessario per la replicazione degli slaves." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Consente ad un utente di domandare dove sono i master / slave." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Permette la creazione di nuove viste." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Permette di impostare gli eventi per lo scheduler" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Permette di creare e di eliminare i triggers" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Permette la creazione di routines memorizzate." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Permette di creare, cancellare e rinominare gli account utente." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Permette l'esecuzione di routines memorizzate." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Nessun" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Limiti di risorse" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "N.B.: 0 (zero) significa nessun limite." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Limita il numero di query che un utente può mandare al server in un'ora." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Limita il numero di comandi che possono cambiare una tabella o un database " +"che un utente può eseguire in un'ora." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Limita il numero di nuove connessioni che un utente può aprire in un'ora." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limite di connessioni simultanee che un utente può fare." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Privilegi relativi alle tabelle" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Nota: i nomi dei privilegi di MySQL sono in Inglese" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Amministrazione" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Privilegi globali" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Privilegi specifici al database" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Permette di creare nuove tabelle." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Permette di eliminare tabelle." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei " +"privilegi." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Informazioni di Login" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Non cambiare la password" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "La password per l'utente %s è cambiata con successo." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Hai revocato i privilegi per %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Database per l'utente" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Garantisci tutti i privilegi per il database "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Utenti che hanno accesso a "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Utente" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Grant" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "L'utente é stato aggiunto." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Qualsiasi" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globale" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "specifico del database" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "wildcard" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Nessun utente trovato." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Modifica Privilegi" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Revoca" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Esporta tutto" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... mantieni quello vecchio." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... cancella quello vecchio dalla tabella degli utenti." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +"... revoca tutti i privilegi attivi da quello vecchio e in seguito " +"cancellalo." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... cancella quello vecchio dalla tabella degli utenti e in seguito ricarica " +"i privilegi." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Cambia le Informazioni di Login / Copia Utente" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Crea un nuovo utente con gli stessi privilegi e ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Privilegi relativi ai campi" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Aggiungi privilegi sul seguente database" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"I caratteri jolly _ e % dovrebbero essere preceduti da un \\ per l'utilizzo " +"letterale" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Aggiungi privilegi sulla seguente tabella" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Rimuove gli utenti selezionati" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Elimina i databases gli stessi nomi degli utenti." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Nessun utente selezionato per la cancellazione!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Caricamento dei privilegi in corso" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Gli utenti selezionati sono stati cancellati con successo." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Hai aggiornato i permessi per %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Privilegi per tutti gli utenti" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Privilegi per %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Vista d'insieme degli utenti" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella " +"dei privilegi di MySQL. Il contenuto di questa tabella può differire dai " +"privilegi usati dal server se sono stati fatti cambiamenti manuali. In " +"questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Hai aggiunto un nuovo utente." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Database di origine" @@ -8914,11 +9392,11 @@ msgstr "Cancella" msgid "Columns" msgstr "Campi" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" @@ -9203,12 +9681,6 @@ msgstr "Versione software" msgid "Protocol version" msgstr "Versione protocollo" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Utente" - #: main.php:217 msgid "Server charset" msgstr "Codifica caratteri del server" @@ -9736,444 +10208,20 @@ msgstr "Licenza" msgid "disabled" msgstr "disabilitato" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Comprende tutti i privilegi tranne GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Permette di alterare la struttura di tabelle esistenti." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Permette di creare nuove tabelle e nuovi databases." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Permette la creazione di routines memorizzate." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Permette di creare nuove tabelle." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Permette di creare tabelle temporanee." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Permette di creare, cancellare e rinominare gli account utente." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Permette la creazione di nuove viste." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Permette di cancellare dati." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Permette di eliminare databases e tabelle." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Permette di eliminare tabelle." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Permette di impostare gli eventi per lo scheduler" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Permette l'esecuzione di routines memorizzate." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Permette di importare dati da e esportare dati in file." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei " -"privilegi." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Permette di creare ed eliminare gli indici." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Permette di inserire e sovrascrivere dati." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Permette di bloccare le tabelle per il thread corrente." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Limita il numero di nuove connessioni che un utente può aprire in un'ora." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Limita il numero di query che un utente può mandare al server in un'ora." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Limita il numero di comandi che possono cambiare una tabella o un database " -"che un utente può eseguire in un'ora." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limite di connessioni simultanee che un utente può fare." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Permette di vedere i processi di tutti gli utenti" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Non ha alcun effetto in questa versione di MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Permette di ricaricare i parametri del server e di resettare la cache del " -"server." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Consente ad un utente di domandare dove sono i master / slave." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Necessario per la replicazione degli slaves." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Permette di leggere i dati." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Accorda l'accesso alla lista completa dei databases." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Permette di chiudere il server." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Permette altre connessioni, anche se è stato raggiunto il massimo numero di " -"connessioni; necessario per molte operazioni di amministrazione come il " -"settaggio di variabili globali o la cancellazione dei threads di altri " -"utenti." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Permette di creare e di eliminare i triggers" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Permette di cambiare i dati." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Nessun privilegio." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Nessun" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Privilegi relativi alle tabelle" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Nota: i nomi dei privilegi di MySQL sono in Inglese" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Amministrazione" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Privilegi globali" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Privilegi specifici al database" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Limiti di risorse" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "N.B.: 0 (zero) significa nessun limite." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Informazioni di Login" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Non cambiare la password" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Nessun utente trovato." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "L'utente %s esiste già!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Hai aggiunto un nuovo utente." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Hai aggiornato i permessi per %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Hai revocato i privilegi per %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "La password per l'utente %s è cambiata con successo." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Cancellazione in corso di %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Nessun utente selezionato per la cancellazione!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Caricamento dei privilegi in corso" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Gli utenti selezionati sono stati cancellati con successo." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Modifica Privilegi" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Revoca" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Esporta tutto" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Qualsiasi" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Privilegi per tutti gli utenti" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Privilegi per %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Vista d'insieme degli utenti" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Rimuove gli utenti selezionati" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Elimina i databases gli stessi nomi degli utenti." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella " -"dei privilegi di MySQL. Il contenuto di questa tabella può differire dai " -"privilegi usati dal server se sono stati fatti cambiamenti manuali. In " -"questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Privilegi relativi ai campi" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Aggiungi privilegi sul seguente database" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"I caratteri jolly _ e % dovrebbero essere preceduti da un \\ per l'utilizzo " -"letterale" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Aggiungi privilegi sulla seguente tabella" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Cambia le Informazioni di Login / Copia Utente" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Crea un nuovo utente con gli stessi privilegi e ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... mantieni quello vecchio." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... cancella quello vecchio dalla tabella degli utenti." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -"... revoca tutti i privilegi attivi da quello vecchio e in seguito " -"cancellalo." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... cancella quello vecchio dalla tabella degli utenti e in seguito ricarica " -"i privilegi." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Database per l'utente" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Garantisci tutti i privilegi per il database "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Utenti che hanno accesso a "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globale" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "specifico del database" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "wildcard" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "L'utente é stato aggiunto." - #: server_replication.php:82 msgid "Unknown error" msgstr "Errore sconosciuto" @@ -11995,37 +12043,37 @@ msgstr "" msgid "Wrong data" msgstr "Dati errati" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Sei sicuro di voler eseguire la seguente query?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Visualizzo comel codice PHP" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "SQL Validato" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Risultato SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Generato da" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etichetta" @@ -13939,6 +13987,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert è impostato a 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "Array PHP" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/ja.po b/po/ja.po index eee96fc931..3eb11169cb 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-06-02 11:09+0200\n" "Last-Translator: Yuichiro Takahashi \n" "Language-Team: japanese \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "すべて表示" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "検索" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "検索" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "実行" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "データベース %1$s を作成しました。" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "データベースのコメント: " @@ -120,17 +123,17 @@ msgstr "データベースのコメント: " msgid "Table comments" msgstr "テーブルのコメント" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "カラム" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "データ型" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "NULL" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "NULL" msgid "Default" msgstr "デフォルト値" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "リンク先" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "コメント" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "いいえ" @@ -242,19 +248,22 @@ msgstr "いいえ" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "はい" @@ -262,8 +271,8 @@ msgstr "はい" msgid "View dump (schema) of database" msgstr "データベースのダンプ (スキーマ) 表示" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "このデータベースにはテーブルがありません。" @@ -279,74 +288,74 @@ msgstr "全選択解除" msgid "The database name is empty!" msgstr "データベース名が空です!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "データベース %1$s の名称を %2$s に変更しました" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "データベース %1$s を %2$s にコピーしました" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "データベース名の変更" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "データベースの削除" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "データベース %s を削除しました。" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "データベースを削除する (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "データベースのコピー先" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "構造のみ" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "構造とデータ" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "データのみ" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "コピーの前に CREATE DATABASE する" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s を追加する" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "制約を追加する" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "コピーしたデータベースに切り替える" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "コピーしたデータベースに切り替える" msgid "Collation" msgstr "照合順序" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "phpMyAdmin 環境保管領域が無効になっています。理由については%sこちら%sをご覧く" "ださい。" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "リレーショナルスキーマを編集またはエクスポートする" @@ -375,16 +384,18 @@ msgstr "リレーショナルスキーマを編集またはエクスポートす #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "テーブル" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "行" @@ -394,13 +405,13 @@ msgid "Size" msgstr "サイズ" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "使用中" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "作成日時" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "最終更新" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -428,92 +439,15 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s テーブル" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "最低 1 つは表示するカラムを選択してください" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "昇順" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "降順" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "ソート" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "表示" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "条件" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "条件行を追加・削除する" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "カラムを追加・削除する" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "クエリを更新する" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "利用するテーブル" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "または" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "および" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "挿入" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "削除" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "修正" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sビジュアル・クエリ・ビルダ%sに切り替える" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "データベース %s のSQL:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "クエリを実行する" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -554,7 +488,7 @@ msgstr "SQL コマンドの追跡はアクティブです。" msgid "Tracking is not active." msgstr "SQL コマンドの追跡は非アクティブです。" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -582,20 +516,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです。" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "チェックしたものを:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "すべてチェックする" @@ -603,31 +538,32 @@ msgstr "すべてチェックする" msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認する" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "エクスポート" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "空にする" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -671,17 +607,18 @@ msgstr "SQL コマンドを追跡しているテーブル" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "データベース" @@ -699,18 +636,26 @@ msgstr "更新日時" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "状態" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "操作" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "表示" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "このテーブルに対しての追跡データを削除する" @@ -751,20 +696,20 @@ msgstr "データベースのログです" msgid "Bad type!" msgstr "エクスポート形式が正しくありません!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "この形式のエクスポートはファイルに保存する必要があります!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "パラメータが正しくありません!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "空き容量不足でファイル %s を保存できません。" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -772,12 +717,12 @@ msgstr "" "サーバ上に既存のファイル %s があります。ファイル名を変更するか、上書きオプ" "ションを有効にしてください。" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "このウェブサーバにはファイル %s を保存する権限がありません。" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "ダンプをファイル %s に保存しました。" @@ -800,7 +745,7 @@ msgid "SRID" msgstr "空間参照識別子" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "幾何データ" @@ -873,7 +818,7 @@ msgstr "" "「関数」の項目で「GeomFromText」を選択して、下の文字列を「値」の項目に貼り付" "けてください" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -882,20 +827,20 @@ msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください。" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "表示中のブックマーク" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "ブックマークを削除しました。" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "ファイルを読み込めませんでした" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -905,7 +850,7 @@ msgstr "" "サポートされていない圧縮形式 (%s) のファイルを読み込もうとしました。この形式" "はサポートされていないか設定で無効にされています。" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -915,29 +860,29 @@ msgstr "" "ファイルサイズが PHP の設定で許可された最大値を超えています。[a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a] をご覧ください。" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "文字セット変換ライブラリがないので、ファイルの文字セットが変換できません" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "インポートプラグインが読み込めません。正しくインストールされているか確認して" "ください!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "ブックマーク %s を作成しました" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "インポートは正常に終了しました。%d 個のクエリを実行しました。" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -945,7 +890,7 @@ msgstr "" "スクリプトがタイムアウトしました。インポートを完了させたいのであれば同じファ" "イルを再送信すればインポートが再開されます。" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -953,8 +898,8 @@ msgstr "" "ただし、最後に実行したときはまったくデータを解析できませんでした。通常、PHP " "の時間制限を伸ばさない限りこのデータのインポートはできません。" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -969,7 +914,7 @@ msgstr "戻る" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin はフレーム対応ブラウザでの利用をお勧めします。" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "DROP DATABASE 文は無効にされています。" @@ -978,7 +923,7 @@ msgstr "DROP DATABASE 文は無効にされています。" msgid "Do you really want to execute \"%s\"?" msgstr "「%s」を本当に実行しますか?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "データベースを完全に削除しようとしています!" @@ -1036,16 +981,20 @@ msgstr "ホスト名が空です!" msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "ユーザを追加する" @@ -1065,9 +1014,9 @@ msgstr "閉じる" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1312,12 +1261,13 @@ msgstr "モニタリンググラフを追加する" msgid "Please add at least one variable to the series" msgstr "少なくとも1つの系列を追加してください" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "なし" @@ -1501,10 +1451,10 @@ msgid "Explain output" msgstr "EXPLAIN の結果" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "時間" @@ -1799,7 +1749,7 @@ msgstr "クエリボックスを表示" msgid "No rows selected" msgstr "行が選択されていません" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "変更" @@ -1808,8 +1758,8 @@ msgstr "変更" msgid "Query execution time" msgstr "クエリの実行時間" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d は不正な行番号です。" @@ -1882,7 +1832,7 @@ msgstr "プロット点におけるデータ内容" msgid "Ignore" msgstr "無視" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "コピー" @@ -2367,14 +2317,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "エラー" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "実行した SQL" @@ -2385,7 +2335,7 @@ msgstr "実行した SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2414,6 +2364,10 @@ msgstr "PHP コードを省略" msgid "Create PHP Code" msgstr "PHP コードの作成" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "クエリを実行する" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2438,7 +2392,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "インライン" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "プロファイリング" @@ -2465,14 +2419,14 @@ msgstr "パラメータがありません:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "先頭" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2480,7 +2434,7 @@ msgstr "前へ" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2488,7 +2442,7 @@ msgstr "次へ" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "最後" @@ -2509,16 +2463,17 @@ msgstr "クリックでオン/オフ切り替え" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "構造" @@ -2526,21 +2481,20 @@ msgstr "構造" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "挿入" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "表示" @@ -2561,21 +2515,21 @@ msgstr "アップロードファイル:" msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "アップロードファイルがありません" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "実行" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "印刷" @@ -2594,6 +2548,74 @@ msgstr "" msgid "Font size" msgstr "フォントサイズ" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "昇順" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "降順" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "ソート" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "条件" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "条件行を追加・削除する" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "カラムを追加・削除する" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "クエリを更新する" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "利用するテーブル" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "または" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "および" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "挿入" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "削除" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "修正" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "データベース %s のSQL:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "いずれかの単語を含む" @@ -2634,8 +2656,8 @@ msgstr[0] "%1$s 件 (テーブル %2$s)" msgid "Delete the matches for the %s table?" msgstr "テーブル %s に対して条件に一致したものを削除しますか?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2670,65 +2692,65 @@ msgstr "検索するテーブル:" msgid "Inside column:" msgstr "検索するカラム:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "変更したデータを保存する" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "カラムの順番を元に戻す" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "開始行" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "表示行数" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "モード" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "水平" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "水平 (縦ヘッダ)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "垂直" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "%s 行毎にヘッダを表示" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "キーでソート" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2741,103 +2763,103 @@ msgstr "キーでソート" msgid "Options" msgstr "オプション" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "部分テキスト" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "全文" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "リレーションキー" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "リレーション表示カラム" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "バイナリの内容を表示する" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "BLOB の内容を表示する" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "バイナリの内容を 16 進数で表示する" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "ブラウザ変換機能を隠す" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "空間データをテキストで表示" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "空間データをバイナリで表示" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "行を削除しました" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "停止" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "行/クエリ" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "行の表示" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "合計" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "印刷用画面 (全テキストを含む)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "グラフで表示する" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "空間情報のデータを視覚化する" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "ビューを作成する" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "リンク先が見つかりません" @@ -2963,8 +2985,8 @@ msgstr "" "れません。" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "データベース" @@ -2980,11 +3002,11 @@ msgid "Tracking" msgstr "SQL コマンドの追跡" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "トリガ" @@ -3002,9 +3024,9 @@ msgstr "データベースが空のようです!" msgid "Query" msgstr "クエリ" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "特権" @@ -3013,7 +3035,7 @@ msgid "Routines" msgstr "ルーチン" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "イベント" @@ -3106,43 +3128,43 @@ msgstr "%s は無効になっています。" msgid "This MySQL server does not support the %s storage engine." msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません。" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "不明なテーブルステータス: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "元にするデータベース `%s` が見つかりません!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "対象先のデータベース `%s` が見つかりません!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "不正なデータベースです" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "テーブル名が不正です" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "テーブル名を %1$s から %2$s に変更するときにエラーが発生しました" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "テーブル %1$s の名称を %2$s に変更しました。" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "テーブルに対する環境設定が保存できません" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3151,7 +3173,7 @@ msgstr "" "テーブルに対する環境設定のクリーンアップに失敗しました (参照 $cfg['Servers']" "[$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3162,7 +3184,7 @@ msgstr "" "とはないでしょう。テーブル構造を変更されたのであれば確認してみてください。" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "関数" @@ -3174,7 +3196,7 @@ msgstr "演算子" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3213,7 +3235,7 @@ msgid "Maximum rows to plot" msgstr "プロットする結果の最大数" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "参照されている値を表示する" @@ -3611,7 +3633,7 @@ msgstr "共有" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "テーブル" @@ -3622,9 +3644,10 @@ msgstr "テーブル" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "データ" @@ -3742,32 +3765,32 @@ msgid "Disabled" msgstr "無効" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "構造" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "データ" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "構造とデータ" @@ -4186,13 +4209,13 @@ msgstr "圧縮" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "1 行目にカラム名を追加する" @@ -4215,7 +4238,6 @@ msgstr "カラムのエスケープ記号" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL の代替文字列" @@ -4255,23 +4277,22 @@ msgstr "テーブル名のテンプレート" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "ダンプするテーブル" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "テーブルのキャプションを含める" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "テーブルのキャプション" @@ -4280,14 +4301,14 @@ msgid "Continued table caption" msgstr "テーブルのキャプション (続き)" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "ラベルキー" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME タイプ" @@ -4324,7 +4345,7 @@ msgid "SQL compatibility mode" msgstr "SQL 互換モード" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE オプション" @@ -4337,7 +4358,7 @@ msgid "Use delayed inserts" msgstr "遅延インサートを使用する" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "外部キーのチェックを無効にする" @@ -4354,7 +4375,7 @@ msgid "Syntax to use when inserting data" msgstr "データを挿入するときに使う構文" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "作成するクエリの最大長" @@ -4363,7 +4384,7 @@ msgid "Export type" msgstr "エクスポート形式" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "エクスポートをトランザクションで囲む" @@ -4419,7 +4440,6 @@ msgstr "デフォルトオプションの詳細設定" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4479,7 +4499,6 @@ msgstr "" "インポートとエクスポートのディレクトリおよび圧縮オプションを設定してください" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4707,7 +4726,6 @@ msgid "Customize text input fields" msgstr "テキスト入力項目の詳細設定" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! テキスト" @@ -5886,9 +5904,11 @@ msgstr "SQL 検証を有効にするには必要です。" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "パスワード" @@ -6069,7 +6089,6 @@ msgstr "LOAD DATA 文を使用した CSV の読み込み" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document スプレッドシート" @@ -6091,19 +6110,16 @@ msgstr "データベースエクスポートオプション" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excel 用の CSV" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document テキスト" @@ -6159,7 +6175,7 @@ msgstr "%s 拡張がありません。PHP の設定をチェックしてみて msgid "possible deep recursion attack" msgstr "深い再帰的な攻撃を受けている可能性があります" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6167,20 +6183,20 @@ msgstr "" "サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま" "せん)。" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "サーバが応答しません。" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" "データベースを含んでいるディレクトリのパーミッションを確認してください。" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "詳細..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6192,13 +6208,15 @@ msgid "Change password" msgstr "パスワードを変更する" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "パスワード無し" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "もう一度入力してください" @@ -6219,8 +6237,9 @@ msgstr "データベースを作成する" msgid "Create" msgstr "作成" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "特権なし" @@ -6230,12 +6249,12 @@ msgid "Create table" msgstr "テーブルを作成" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "名前" @@ -6375,7 +6394,7 @@ msgid "View output as text" msgstr "出力をテキストで表示する" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "フォーマット:" @@ -6883,52 +6902,52 @@ msgstr "Paul McCullagh 氏による PrimeBase XT ブログ" msgid "No data found for GIS visualization." msgstr "視覚化できる空間情報がありません。" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした (行数 0)。" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "以下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "名前をクリックすることで構造内容を表示します。" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "「オプション」のリンクをクリックすることで対応する設定の変更が行えます。" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "データベース %s に移動" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "%s に対する設定の変更を行います" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "テーブル %s に移動" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "%s の構造" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "ビュー %s に移動" @@ -6999,11 +7018,11 @@ msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" @@ -7249,7 +7268,7 @@ msgstr "phpMyAdmin のドキュメント" msgid "Reload navigation frame" msgstr "ナビゲーションフレームの再読み込み" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "この書式にはオプションはありません" @@ -7364,93 +7383,93 @@ msgstr "有効な認証キーが接続されていません" msgid "Authenticating..." msgstr "認証中..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "カラムの区切り記号:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "カラム囲み記号:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "カラムのエスケープ記号:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "行の終端記号:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "NULL の代替文字列:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "カラム内の改行/復帰文字を削除する" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel のエディション:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "データのダンプオプション" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "テーブルのデータのダンプ" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "イベント" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "定義" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "テーブルの構造" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "ビュー用の構造" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "ビュー用の代替構造" @@ -7466,94 +7485,83 @@ msgstr "(続き)" msgid "Structure of table @TABLE@" msgstr "テーブル @TABLE@ の構造" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "生成オプション" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "テーブルのキャプション (続き)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "外部キーリレーションシップを表示する" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "コメントを表示する" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "MIME タイプを表示する" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "ホスト" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "生成日時" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "サーバのバージョン" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP のバージョン" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki テーブル" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "テーブル名をエクスポートする" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "カラム名をエクスポートする" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(1 つのテーブルのデータを含むレポートを生成します)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "レポートのタイトル:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP 配列" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7561,33 +7569,33 @@ msgstr "" "コメントの表示(エクスポート日時、PHP や サーバ のバージョンなどの情報が含" "まれます)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "ヘッダに追加する独自コメント (\\n で改行):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "データベースの作成日時、最終更新日時、最終検査日時を含める" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "他のデータベースシステムまたは古い MySQL サーバとの互換性:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "%s コマンドを追加する" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "追加コマンド:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7595,32 +7603,39 @@ msgstr "" "逆クォートでテーブルやカラムの名前を囲む (特殊な文字やキーワードを含むカラ" "ム名やテーブル名を保護します)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "生成オプション" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "挿入前にテーブルを空にする" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "INSERT 文の代わりに以下を使う" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED 文" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE 文" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "データをダンプするときに使うコマンド:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "データを挿入するときに使う構文" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7630,7 +7645,7 @@ msgstr "" "  例: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7639,7 +7654,7 @@ msgstr "" "すべての INSERT 文を複数行挿入で行う
      " "例: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7647,7 +7662,7 @@ msgstr "" "上の両方を行う
      例: INSERT INTO tbl_name " "(col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7655,13 +7670,13 @@ msgstr "" "上のどちらでもない
      例: INSERT INTO tbl_name " "VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "16 進表記でバイナリカラムをダンプする (例:\"abc\" を 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7669,50 +7684,45 @@ msgstr "" "TIMESTAMP のカラムを UTC (協定世界時) でダンプする (ダンプするサーバと読み" "込ませるサーバのタイムゾーンが異なる場合に有効です)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "プロシージャ" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "関数" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "テーブルの制約" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "テーブルに含まれている MIME タイプ" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "テーブルのリレーション" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "データ読み込みエラー:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "生成オプション (すべて推奨)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "ビュー" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "内容をエクスポートする" @@ -7786,6 +7796,10 @@ msgstr "カラム名" msgid "This plugin does not support compressed imports!" msgstr "このプラグインでは圧縮されたファイルのインポートはできません!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki テーブル" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7844,6 +7858,10 @@ msgstr "SQL 互換モード:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8079,11 +8097,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "更新した設定ファイルを読み込むために phpMyAdmin にログインし直します。" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "説明がありません" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "すべてのチェックを外す" @@ -8105,9 +8124,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "ユーザ名" @@ -8144,34 +8164,43 @@ msgstr "" msgid "Add slave replication user" msgstr "スレーブレプリケーションのユーザ追加" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "すべてのユーザ" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "テキスト入力項目の値を利用する" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "すべてのホスト" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "ローカル" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "このホスト" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "ホストテーブルを使う" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8187,7 +8216,7 @@ msgstr "パスワードを生成する" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8223,8 +8252,8 @@ msgid "Edit event" msgstr "イベントを編集する" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "要求処理中でのエラー" @@ -8300,7 +8329,8 @@ msgstr "有効な種別イベントを指定してください。" msgid "You must provide an event definition." msgstr "イベントの定義は必須です。" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "新規作成" @@ -8434,24 +8464,24 @@ msgstr "ルーチンに対して、有効な返り値の種類を指定してく msgid "You must provide a routine definition." msgstr "ルーチンの定義は必須です。" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "ルーチン %s の実行結果" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "プロシージャ内の最後のステートメントは %d 行の変更を行いました" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "ルーチン %s の実行結果" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "ルーチンを実行する" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "ルーチンのパラメータ" @@ -8580,28 +8610,28 @@ msgstr "データベース %2$s に %1$s という名前のイベントはあり msgid "There are no events to display." msgstr "表示できるイベントがありません。" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "%s テーブルは存在しません!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "テーブル %s の座標を設定してください" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "データベース %s のスキーマ - ページ %s" @@ -8738,6 +8768,442 @@ msgstr "言語ファイルが登録されていません: %1$s。" msgid "Current Server" msgstr "カレントサーバ" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "特権はありません。" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "GRANT 以外のすべての特権を付与する" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "データの読み込みを許可する" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "データの挿入、置換を許可する" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "データの修正を許可する" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "データの削除を許可する" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "新しいデータベースやテーブルの作成を許可する" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "データベースとテーブルの削除を許可する" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "サーバ設定の再読み込み、サーバキャッシュのフラッシュを許可する" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "サーバのシャットダウンを許可する" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "全ユーザのプロセスを閲覧できるようにする" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "データのインポート、エクスポートを許可する" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "このバージョンの MySQL では無効です。" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "インデックスの作成、削除を許可する" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "既存のテーブル構造の変更を許可する" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "データベース総一覧へのアクセスを許可する" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"最大接続数に達しているときでも接続を許可する。グローバル変数の設定や他のユー" +"ザのスレッドを停止するといった管理操作をする場合はたいていこの設定が必要にな" +"ります。" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "一時テーブルの作成を許可する" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "現在のスレッドのテーブルロックを許可する" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "レプリケーションスレーブでは有効にする必要があります。" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "スレーブ/マスタの照会を許可する" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "新しいビューの作成を許可する" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "イベントスケジューラにイベントを設定できるようにする" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "トリガの作成・削除を許可する" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "SHOW CREATE VIEW クエリの実行を許可する" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "ストアドルーチンの作成を許可する" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "ストアドルーチンの修正と削除を許可する" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "ユーザアカウントの作成・削除・名前の変更を許可する" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "ストアドルーチンの実行を許可する" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "なし" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "リソースの制限" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します。" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "単位時間内にサーバに送信可能なクエリ数を制限する" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "単位時間内に可能な新規接続回数を制限する" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "ユーザの同時接続数を制限する" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "テーブル固有の特権" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "注意: MySQL の特権名は英語で表示されます" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "管理" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "グローバル特権" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "データベースに固有の特権" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "新しいテーブルの作成を許可する" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "テーブルの削除を許可する" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "特権テーブルの再読み込みなしでユーザ・特権の追加を許可する" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "ログイン情報" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "パスワードは変更しない" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s のパスワードは正しく変更されました。" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "%s の特権を取り消しました" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "ユーザ専用データベース" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "同名のデータベースを作成してすべての特権を与える" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "データベース "%s" への全ての特権を与える" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr ""%s" にアクセスできるユーザ" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "ユーザ" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "権限委譲" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "ビュー %s を破棄しました。" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "すべて" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "グローバル" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "データベース固有" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "ワイルドカード" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "ユーザが存在しません。" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "特権を編集" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "取り消し" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "すべてエクスポート" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "元のユーザも残す" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "ユーザテーブルから元のユーザを削除する" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "元のユーザの特権をすべて無効にしてから削除する" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "ユーザテーブルから元のユーザを削除し、特権の再読み込みをする" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "ログイン情報の変更 / ユーザの複製" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "同じ特権を持つ新しいユーザを作る" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "このカラムに固有の特権" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "データベースに特権を追加" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"_ や % というワイルドカードを文字として使用するときは \\ でエスケープしてくだ" +"さい。" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "テーブルに特権を追加" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "選択したユーザを削除する" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "特権をすべて取り消してユーザを削除する" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "ユーザと同名のデータベースを削除する" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "削除するユーザが選択されていません!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "特権を再読み込みしています" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "選択されたユーザは正常に削除されました。" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "%s の特権を更新しました。" + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "すべてのユーザに対する特権" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "%s に対する特権" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "ユーザ概略" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" +"作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" +"特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" +"込み%s をしてください。" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "特権テーブルには選択したユーザがいません。" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "新しいユーザを追加しました。" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "元にするデータベース" @@ -8784,11 +9250,11 @@ msgstr "クリア" msgid "Columns" msgstr "カラム" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" @@ -9066,12 +9532,6 @@ msgstr "ソフトウェアバージョン" msgid "Protocol version" msgstr "プロトコルバージョン" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "ユーザ" - #: main.php:217 msgid "Server charset" msgstr "サーバの文字セット" @@ -9595,432 +10055,20 @@ msgstr "ライセンス" msgid "disabled" msgstr "無効" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "GRANT 以外のすべての特権を付与する" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "既存のテーブル構造の変更を許可する" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "ストアドルーチンの修正と削除を許可する" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "新しいデータベースやテーブルの作成を許可する" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "ストアドルーチンの作成を許可する" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "新しいテーブルの作成を許可する" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "一時テーブルの作成を許可する" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "ユーザアカウントの作成・削除・名前の変更を許可する" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "新しいビューの作成を許可する" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "データの削除を許可する" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "データベースとテーブルの削除を許可する" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "テーブルの削除を許可する" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "イベントスケジューラにイベントを設定できるようにする" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "ストアドルーチンの実行を許可する" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "データのインポート、エクスポートを許可する" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "特権テーブルの再読み込みなしでユーザ・特権の追加を許可する" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "インデックスの作成、削除を許可する" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "データの挿入、置換を許可する" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "現在のスレッドのテーブルロックを許可する" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "単位時間内に可能な新規接続回数を制限する" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "単位時間内にサーバに送信可能なクエリ数を制限する" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "ユーザの同時接続数を制限する" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "全ユーザのプロセスを閲覧できるようにする" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "このバージョンの MySQL では無効です。" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "サーバ設定の再読み込み、サーバキャッシュのフラッシュを許可する" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "スレーブ/マスタの照会を許可する" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "レプリケーションスレーブでは有効にする必要があります。" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "データの読み込みを許可する" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "データベース総一覧へのアクセスを許可する" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "SHOW CREATE VIEW クエリの実行を許可する" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "サーバのシャットダウンを許可する" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"最大接続数に達しているときでも接続を許可する。グローバル変数の設定や他のユー" -"ザのスレッドを停止するといった管理操作をする場合はたいていこの設定が必要にな" -"ります。" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "トリガの作成・削除を許可する" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "データの修正を許可する" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "特権はありません。" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "なし" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "テーブル固有の特権" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "注意: MySQL の特権名は英語で表示されます" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "管理" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "グローバル特権" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "データベースに固有の特権" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "リソースの制限" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します。" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "ログイン情報" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "パスワードは変更しない" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "ユーザが存在しません。" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "ユーザ %s は既に存在します!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "新しいユーザを追加しました。" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "%s の特権を更新しました。" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "%s の特権を取り消しました" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s のパスワードは正しく変更されました。" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s を削除中です" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "削除するユーザが選択されていません!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "特権を再読み込みしています" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "選択されたユーザは正常に削除されました。" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "特権を正常に再読み込みしました。" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "特権を編集" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "取り消し" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "すべてエクスポート" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "すべて" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "すべてのユーザに対する特権" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "%s に対する特権" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "ユーザ概略" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "権限委譲" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "選択したユーザを削除する" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "特権をすべて取り消してユーザを削除する" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "ユーザと同名のデータベースを削除する" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" -"作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" -"特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" -"込み%s をしてください。" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "特権テーブルには選択したユーザがいません。" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "このカラムに固有の特権" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "データベースに特権を追加" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"_ や % というワイルドカードを文字として使用するときは \\ でエスケープしてくだ" -"さい。" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "テーブルに特権を追加" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "ログイン情報の変更 / ユーザの複製" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "同じ特権を持つ新しいユーザを作る" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "元のユーザも残す" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "ユーザテーブルから元のユーザを削除する" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "元のユーザの特権をすべて無効にしてから削除する" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "ユーザテーブルから元のユーザを削除し、特権の再読み込みをする" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "ユーザ専用データベース" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "同名のデータベースを作成してすべての特権を与える" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "データベース "%s" への全ての特権を与える" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr ""%s" にアクセスできるユーザ" - -#: server_privileges.php:2544 -msgid "global" -msgstr "グローバル" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "データベース固有" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "ワイルドカード" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "ビュー %s を破棄しました。" - #: server_replication.php:82 msgid "Unknown error" msgstr "不明なエラーです" @@ -11778,37 +11826,37 @@ msgstr "キーは文字、数字[em]それと[/em]特殊文字を含める必要 msgid "Wrong data" msgstr "データが正しくありません" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。" -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "以下のクエリを本当に実行しますか?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "PHP コードとして表示" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "検証した SQL 文" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL の結果" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "生成環境" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "ラベル" @@ -13710,6 +13758,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert は 0 に設定されています。" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP 配列" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/ka.po b/po/ka.po index 904fae6a80..4c35728777 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:15+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: georgian \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "ყველაფრის ჩვენება" @@ -37,16 +38,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "ძებნა" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -56,24 +57,26 @@ msgstr "ძებნა" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "გადასვლა" @@ -107,7 +110,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "მონაცემთა ბაზა '%1$s' წარმატებით შეიქმნა" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "კომენტარი მონაცემთა ბაზაში: " @@ -117,17 +120,17 @@ msgstr "კომენტარი მონაცემთა ბაზაშ msgid "Table comments" msgstr "ცხრილის კომენტარები" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -139,34 +142,34 @@ msgstr "სვეტები" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "ტიპი" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -175,13 +178,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -189,10 +192,10 @@ msgstr "Null" msgid "Default" msgstr "სტანდარტული" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -201,10 +204,10 @@ msgstr "Links to" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -215,18 +218,21 @@ msgstr "კომენტარები" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "არა" @@ -239,19 +245,22 @@ msgstr "არა" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "დიახ" @@ -259,8 +268,8 @@ msgstr "დიახ" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "" @@ -276,77 +285,77 @@ msgstr "მონიშნვის მოხსნა" msgid "The database name is empty!" msgstr "მონაცემთა ბაზა ცარიელია!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Table %s has been renamed to %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Table %s has been renamed to %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "მონაცემთა ბაზები არაა" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "მხოლოდ მონაცემები" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,14 +365,14 @@ msgstr "" msgid "Collation" msgstr "კოლაცია" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "" @@ -373,16 +382,18 @@ msgstr "" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "ცხრილი" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "სტრიქონები" @@ -392,13 +403,13 @@ msgid "Size" msgstr "ზომა" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "in use" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -406,7 +417,7 @@ msgstr "შეიქმნა" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -414,7 +425,7 @@ msgstr "უკანასკნელი განახლება" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -426,94 +437,15 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "ზრდადობით" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "კლებადობით" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "დალაგება" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "ჩვენება" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "კრიტერიუმი" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "ველის სვეტების დამატება/წაშლა" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "მოთხოვნის განახლება" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "გამოიყენე ცხრილები" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "ან" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "და" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "შეცვლა" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "მოთხოვნის გაგზავნა" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -556,7 +488,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -584,20 +516,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "ყველას შემოწმება" @@ -605,31 +538,32 @@ msgstr "ყველას შემოწმება" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ექსპორტი" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "ცარიელი" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -677,17 +611,18 @@ msgstr "ნანახი ცხრილები" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "მონაცემთა ბაზა" @@ -706,18 +641,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "სტატუსი" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "მოქმედება" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "ჩვენება" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -760,31 +703,31 @@ msgstr "მონაცემთა ბაზა" msgid "Bad type!" msgstr "არასწორი ტიპი!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "შეუსაბამობაა პარამეტრებში!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -808,7 +751,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -881,27 +824,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -909,46 +852,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -963,7 +906,7 @@ msgstr "უკან" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -973,7 +916,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "ნამდვილად გსურთ " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1042,16 +985,20 @@ msgstr "ჰოსტის სახელის ველი ცარიელ msgid "The user name is empty!" msgstr "მომხმარებლის სახელის ველი ცარიელია!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "პაროლის ველი ცარიელია!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "პაროლებში შეუსაბამობაა!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "მომხმარებლის დამატება" @@ -1075,9 +1022,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1351,12 +1298,13 @@ msgstr "Snap to grid" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "არაა" @@ -1546,10 +1494,10 @@ msgid "Explain output" msgstr "SQL-ის ახსნა" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "დრო" @@ -1908,7 +1856,7 @@ msgstr "SQL Query box" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "შეცვლა" @@ -1919,8 +1867,8 @@ msgstr "შეცვლა" msgid "Query execution time" msgstr "Maximum execution time" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -2003,7 +1951,7 @@ msgstr "Data pointer size" msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "ასლი" @@ -2552,14 +2500,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "შეცდომა" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL მოთხოვნა" @@ -2570,7 +2518,7 @@ msgstr "SQL მოთხოვნა" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2601,6 +2549,10 @@ msgstr "PHP კოდის გარეშე" msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "მოთხოვნის გაგზავნა" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2627,7 +2579,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ძრავები" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profiling" @@ -2656,7 +2608,7 @@ msgstr "Routines" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2665,7 +2617,7 @@ msgstr "დასაწყისი" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2675,7 +2627,7 @@ msgstr "წინა" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2685,7 +2637,7 @@ msgstr "შემდეგი" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2708,16 +2660,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "სტრუქტურა" @@ -2725,21 +2678,20 @@ msgstr "სტრუქტურა" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "ჩასმა" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "არჩევა" @@ -2761,21 +2713,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "დაბეჭდვა" @@ -2792,6 +2744,76 @@ msgstr "" msgid "Font size" msgstr "შრიფტის ზომა" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "ზრდადობით" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "კლებადობით" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "დალაგება" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "კრიტერიუმი" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "ველის სვეტების დამატება/წაშლა" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "მოთხოვნის განახლება" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "გამოიყენე ცხრილები" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "ან" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "და" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "შეცვლა" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "ერთი სიტყვა მაინც" @@ -2834,8 +2856,8 @@ msgstr[1] "%s match(es) inside table %s" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2874,75 +2896,75 @@ msgstr "ცხრილ(ებ)ში:" msgid "Inside column:" msgstr "სვეტში:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "დირექტორიის შენახვა" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "CHAR textarea columns" msgid "Restore column order" msgstr "CHAR textarea columns" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Startup" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "ველების რაოდენობა" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "ორშ" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "ჰორიზონტალური" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "ვერტიკალური" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "ჩანიშნული მოთხოვნის გაშვება" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2955,68 +2977,68 @@ msgstr "Sort by key" msgid "Options" msgstr "პარამეტრები" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Full Texts" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relational display field" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "აჩვენეთ ორობით შინაარსი როგორც HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -3024,47 +3046,47 @@ msgstr "" "შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation." "html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "მოთხოვნაში" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "სულ" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF სქემის ჩვენება" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Create relation" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" @@ -3182,8 +3204,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "მონაცემთა ბაზები" @@ -3199,11 +3221,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "ტრიგერები" @@ -3221,9 +3243,9 @@ msgstr "" msgid "Query" msgstr "მოთხოვნა" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "პრივილეგიები" @@ -3232,7 +3254,7 @@ msgid "Routines" msgstr "Routines" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "მოვლენები" @@ -3341,53 +3363,53 @@ msgstr "%s გათიშულია ამ MySQL სერვერზე." msgid "This MySQL server does not support the %s storage engine." msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Show slave status" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "არასწორი მონაცემთა ბაზა" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "ცხრილის არასწორი სახელი" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Table %s has been renamed to %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3396,7 +3418,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "ფუნქცია" @@ -3408,7 +3430,7 @@ msgstr "ოპერატორი" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3455,7 +3477,7 @@ msgid "Maximum rows to plot" msgstr "Maximum number of rows to display" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3816,7 +3838,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "ცხრილები" @@ -3827,9 +3849,10 @@ msgstr "ცხრილები" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "მონაცემები" @@ -3953,33 +3976,33 @@ msgid "Disabled" msgstr "გათიშულია" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "სტრუქტურა" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4416,13 +4439,13 @@ msgstr "შეკუმშვა" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4451,7 +4474,6 @@ msgstr "Fields escaped by" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4495,25 +4517,24 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s table(s)" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4522,14 +4543,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Label key" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-ის ტიპი" @@ -4570,7 +4591,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4583,7 +4604,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4600,7 +4621,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4610,7 +4631,7 @@ msgid "Export type" msgstr "Export type" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4665,7 +4686,6 @@ msgstr "Customize default export options" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4726,7 +4746,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4971,7 +4990,6 @@ msgid "Customize text input fields" msgstr "Customize export options" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! text" @@ -6149,9 +6167,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "პაროლი" @@ -6326,7 +6346,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" @@ -6350,19 +6369,16 @@ msgstr "მონაცემთა ბაზის ექსპორტის #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV MS Excel-თვის" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Text" @@ -6420,7 +6436,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6428,21 +6444,21 @@ msgid "" "configured)." msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "სერვერი არ პასუხობს" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "დეტალები..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6453,13 +6469,15 @@ msgid "Change password" msgstr "პაროლის შეცვლა" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "პაროლი არაა" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Re-type" @@ -6484,8 +6502,9 @@ msgstr "ახალი მონაცემთა ბაზის შექმ msgid "Create" msgstr "შექმნა" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "პრივილეგიები არაა" @@ -6495,12 +6514,12 @@ msgid "Create table" msgstr "ცხრილის შექმნა" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "სახელი" @@ -6674,7 +6693,7 @@ msgid "View output as text" msgstr "ფაილის სახის შენახვა" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7150,52 +7169,52 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Missing data for %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "მხოლოდ სტრუქტურა" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" @@ -7269,11 +7288,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" @@ -7528,7 +7547,7 @@ msgstr "phpMyAdmin-ის დოკუმენტაცია" msgid "Reload navigation frame" msgstr "Customize navigation frame" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7639,84 +7658,84 @@ msgstr "" msgid "Authenticating..." msgstr "ავთენტიფიკაცია..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Lines terminated by" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Fields enclosed by" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Fields escaped by" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Lines terminated by" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Replace NULL by" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel edition" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy #| msgid "Databases display options" msgid "Data dump options" msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "მოვლენა" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7724,24 +7743,24 @@ msgstr "მოვლენა" msgid "Definition" msgstr "აღწერილობა" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "სტრუქტურა ხედისათვის" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7761,261 +7780,252 @@ msgstr "(გაგრძელება)" msgid "Structure of table @TABLE@" msgstr "Structure of table __TABLE__" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "გარდაქმნის პარამეტრები" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Table caption" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Disable foreign key checks" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Displaying Column Comments" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "MIME-ის ხელმისაწვდომი ტიპები" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "ჰოსტი" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "დაგენერირების დრო" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "სერვერის ვერსია" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP-ის ვერსია" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy msgid "Export table names" msgstr "Export defaults" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy msgid "Export table headers" msgstr "Export defaults" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Report title" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Add custom comment into header (\\n splits lines)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Statements" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Statements" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "გარდაქმნის პარამეტრები" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "პროცედურები" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "ფუნქციები" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Allows reading data." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "ხედო" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 #, fuzzy msgid "Export contents" msgstr "Export defaults" @@ -8086,6 +8096,10 @@ msgstr "სვეტების სახელები" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." @@ -8144,6 +8158,10 @@ msgstr "SQL compatibility mode" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8403,11 +8421,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "მონიშნვის მოხსნა ყველასთვის" @@ -8428,9 +8447,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "მომხმარებლის სახელი" @@ -8468,34 +8488,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "ნებისმიერი მომხმარებელი" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "ნებისმიერი ჰოსტი" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "ლოკალური" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "ეს ჰოსტი" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8509,7 +8538,7 @@ msgstr "პაროლის დაგენერირება" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8549,8 +8578,8 @@ msgid "Edit event" msgstr "სერვერის რედაქტირება" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8641,7 +8670,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8790,25 +8820,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 -#, php-format -msgid "%d row affected by the last statement inside the procedure" -msgid_plural "%d rows affected by the last statement inside the procedure" -msgstr[0] "" - -#: libraries/rte/rte_routines.lib.php:1302 +#: libraries/rte/rte_routines.lib.php:1279 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Allows executing stored routines." -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1343 +#, php-format +msgid "%d row affected by the last statement inside the procedure" +msgid_plural "%d rows affected by the last statement inside the procedure" +msgstr[0] "" + +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8978,29 +9008,29 @@ msgstr "No tables found in database." msgid "There are no events to display." msgstr "There are no configured servers" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "ცხრილი \"%s\" არ არსებობს!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9150,6 +9180,448 @@ msgstr "უცნობი ენა: %1$s." msgid "Current Server" msgstr "სერვერი" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "პრივილეგიები არაა." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "არაა" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "ადმინისტრირება" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "გლობალური პრივილეგიები" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "არ შეცვალო პაროლი" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "მონაცემთა ბაზა მომხმარებლისთვის" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" +"იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "მომხმარებელი" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Grant" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "View %s has been dropped" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "ნებისმიერი" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "გლობალულრი" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "wildcard" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "პრივილეგიების რედაქტირება" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Revoke" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "ექსპორტი" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... ძველის შენახვა." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " +"გადატვირთვა." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "პრივილეგიები" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "პრივილეგიები" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "მომხმარებლის მიმოხილვა" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9201,11 +9673,11 @@ msgstr "გაწმენდა" msgid "Columns" msgstr "სვეტების სახელები" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -9491,12 +9963,6 @@ msgstr "სერვერის ვერსია" msgid "Protocol version" msgstr "ოქმის ვერსია" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "მომხმარებელი" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -10066,438 +10532,20 @@ msgstr "" msgid "disabled" msgstr "გათიშულია" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "პრივილეგიები არაა." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "არაა" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "ადმინისტრირება" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "გლობალური პრივილეგიები" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "არ შეცვალო პაროლი" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "მომხმარებელი %s უკვე არსებობს!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s-ის წაშლა" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "პრივილეგიების რედაქტირება" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Revoke" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "ექსპორტი" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "ნებისმიერი" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "პრივილეგიები" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "პრივილეგიები" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "მომხმარებლის მიმოხილვა" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... ძველის შენახვა." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " -"გადატვირთვა." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "მონაცემთა ბაზა მომხმარებლისთვის" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" -"იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "გლობალულრი" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "wildcard" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "View %s has been dropped" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -12200,41 +12248,41 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters" msgid "Wrong data" msgstr "მონაცემთა ბაზები არაა" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "ნამდვილად გსურთ " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "PHP კოდის სახით ჩვენება" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-ის შედეგი" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Label" @@ -14098,6 +14146,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#~ msgid "PDF" +#~ msgstr "PDF" + #~ msgid "rows" #~ msgstr "არჩევა" diff --git a/po/kk.po b/po/kk.po index f9823c3e69..82066a1480 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-06-01 09:41+0200\n" "Last-Translator: Berikbol Zharylkassyn \n" "Language-Team: none\n" @@ -19,7 +19,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Бәрін көрсету" @@ -44,16 +45,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Іздеу" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -63,24 +64,26 @@ msgstr "Іздеу" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Өту" @@ -114,7 +117,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s дерекқоры құрылды." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Дерекқорына түсініктеме: " @@ -124,17 +127,17 @@ msgstr "Дерекқорына түсініктеме: " msgid "Table comments" msgstr "Кестеге түсініктеме:" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -146,34 +149,34 @@ msgstr "Бағана" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Типі" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -182,13 +185,13 @@ msgid "Null" msgstr "Бос/Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -196,10 +199,10 @@ msgstr "Бос/Null" msgid "Default" msgstr "Келісім бойынша" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -208,10 +211,10 @@ msgstr "Сілтемелер" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -222,18 +225,21 @@ msgstr "Түсініктеме" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Жоқ" @@ -246,19 +252,22 @@ msgstr "Жоқ" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Иә" @@ -266,8 +275,8 @@ msgstr "Иә" msgid "View dump (schema) of database" msgstr "Мәліметтер қорының дамп (схемасын) көру" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Дерекқорында, ешбір кестелер табылмады." @@ -283,74 +292,74 @@ msgstr "Eрекшеленгендерді алып тастау" msgid "The database name is empty!" msgstr "Дерекқорының аты көрсетілмеген!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s дерекқорының атауы, мына атауға %2$s, қайта қойылды" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s дерекқоры, мына жерге %2$s көшірілді." -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Дерекқорының атауын қайта қою." -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Дерекқорын өшіру" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s дерекқоры өшірілді." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "(DROP) дерекқорын өшіру" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Дерекқорының көшірілуі" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Тек құрылымы ғана" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Құрылымы және мәліметтері" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Тек мәліметтер ғана" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Көшірмес бұрын, дерекқорын құрып алыңыз(CREATE DATABASE)" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Қосу %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қосу" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Шектеу қою" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Көшірілген дерекқорына өту" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -360,7 +369,7 @@ msgstr "Көшірілген дерекқорына өту" msgid "Collation" msgstr "Салыстыру" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -369,7 +378,7 @@ msgstr "" "Кейбір ұлғаймалы мүмкіндіктеріне байланысты, PhpMyAdmin қол жетімсіз. " "Себебін анықтау үшін %sмұнда%s басыңыз." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Байланыс схемасын түзету немесе экспорттау" @@ -379,16 +388,18 @@ msgstr "Байланыс схемасын түзету немесе экспор #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Кесте" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Қатарлар" @@ -398,13 +409,13 @@ msgid "Size" msgstr "Мөлшері" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "қолданыста" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -412,7 +423,7 @@ msgstr "Құру" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -420,7 +431,7 @@ msgstr "Соңғы жаңартылым" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -433,92 +444,15 @@ msgid_plural "%s tables" msgstr[0] "%s кестесімен" msgstr[1] "%s кестелерімен" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Сұраныс орындалуы үшін, көрсетілімдегі баған/бағандар таңдалуы тиіс" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Өсу бойынша" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Кему бойынша" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Сұрыптау" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Көрсету" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Белгі" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Белгі қатарларын Қосу/Өшіру" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Бағандарды Қосу/Өшіру" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Жаңартылуға жіберілген сұраныс" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Кестелерді қолдану" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Немесе" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Және" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Қою" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Өшіру" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Өзгерту" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sСұраныстарды көз мөлшерiмен құрастырушыға%s ауысып қосылу" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "%s дерекқорына SQL сұранысы" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Сұранысты жіберу" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -559,7 +493,7 @@ msgstr "Бақылау қосулы" msgid "Tracking is not active." msgstr "Бақылауды белсендендірілу" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -587,20 +521,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s - келісім бойынша орнатылған MySQL серверінің кесте типі" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Белгi соғылғандарды:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Барлығын белгілеу" @@ -608,31 +543,32 @@ msgstr "Барлығын белгілеу" msgid "Check tables having overhead" msgstr "Ықшамдауды қажет ететіндерді белгілеу" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Баспаға шығару түрі" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Тазарту" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -676,17 +612,18 @@ msgstr "Қадағаланатын кестелер" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Дерекқор" @@ -704,18 +641,26 @@ msgstr "Жаңартылған" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Күй" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Әрекет" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Көрсету" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Кесте үшін мәліметтерді бақылауды тоқтату" @@ -756,20 +701,20 @@ msgstr "Дерекқор журналы" msgid "Bad type!" msgstr "Типі дұрыс емес!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Таңдалынған экспорт типі, файлда сақталуы тиіс!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Параметрлері қате!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Файлды сақтау үшін %s дисктегі бос орын жеткіліксіз." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -777,12 +722,12 @@ msgstr "" "Файл %s қазірдің өзінде серверде қолданыста бар, атын өзгертіңіз немесе " "қайта жазу параметрін қосыңыз." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "%s файлын веб-серверге сақтау үшін құқық жеткіліксіз." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "%s файлына дамп сақталынды" @@ -805,7 +750,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Геометрия" @@ -878,7 +823,7 @@ msgstr "" "\"Функция\" бағанасынан \"GeomFromText\" таңдаңыз және қатар соңына \"мән\" " "ретінде қойыңыз" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -887,20 +832,20 @@ msgstr "" "Мүмкін, жүктегелі отырған файлдың өлшемі тым үлкен. Осы шектеуді айналып өту " "әдістері, %sқұжаттамада%s сипатталған." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Файлды оқу мүмкін емес" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -908,46 +853,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -963,7 +908,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "PhpMyAdmin мен жұмыс істеу үшін, фреймдерді қолдайтын браузер керек." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - өшірулі" @@ -972,7 +917,7 @@ msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - ө msgid "Do you really want to execute \"%s\"?" msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 #, fuzzy msgid "You are about to DESTROY a complete database!" msgstr "Сіз дерекқорды толығымен ЖОЙҒАЛЫ отырсыз!" @@ -1033,16 +978,20 @@ msgstr "Хост аты бос тұр!" msgid "The user name is empty!" msgstr "Қолданушы аты бос тұр!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Құпия сөз бос тұр!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Құпия сөздер бір-біріне ұқсамайды!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Қолданушыны қосу" @@ -1062,9 +1011,9 @@ msgstr "Жабу" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1308,12 +1257,13 @@ msgstr "Торға график қосу" msgid "Please add at least one variable to the series" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Жоқ" @@ -1483,10 +1433,10 @@ msgid "Explain output" msgstr "" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Уақыт" @@ -1772,7 +1722,7 @@ msgstr "Сұраныс өрісін көрсету" msgid "No rows selected" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Өзгерту" @@ -1781,8 +1731,8 @@ msgstr "Өзгерту" msgid "Query execution time" msgstr "Сұраныстың орындалу уақыты" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1853,7 +1803,7 @@ msgstr "" msgid "Ignore" msgstr "Елемеу" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Көшіру" @@ -2326,14 +2276,14 @@ msgid "en" msgstr "kk" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Қате" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "" @@ -2344,7 +2294,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2373,6 +2323,10 @@ msgstr "" msgid "Create PHP Code" msgstr "" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Сұранысты жіберу" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2397,7 +2351,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2424,14 +2378,14 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2439,7 +2393,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2447,7 +2401,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "" @@ -2468,16 +2422,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "" @@ -2485,21 +2440,20 @@ msgstr "" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Шолу" @@ -2520,21 +2474,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "" @@ -2552,6 +2506,74 @@ msgstr "" msgid "Font size" msgstr "Қарiп өлшемi" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Өсу бойынша" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Кему бойынша" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Сұрыптау" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Белгі" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Белгі қатарларын Қосу/Өшіру" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Бағандарды Қосу/Өшіру" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Жаңартылуға жіберілген сұраныс" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Кестелерді қолдану" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Немесе" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Және" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Қою" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Өшіру" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Өзгерту" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "%s дерекқорына SQL сұранысы" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "кез-келген сөз" @@ -2594,8 +2616,8 @@ msgstr[1] "%1$s кестедегi сәйкестiктер %2$s" msgid "Delete the matches for the %s table?" msgstr "Кесте %s үшін сәйкестіктерді өшіреміз бе?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2630,64 +2652,64 @@ msgstr "Кесте бойынша:" msgid "Inside column:" msgstr "Бағана бойынша" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2700,103 +2722,103 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "" @@ -2914,8 +2936,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Дерекқоры" @@ -2931,11 +2953,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -2953,9 +2975,9 @@ msgstr "" msgid "Query" msgstr "" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "" @@ -2964,7 +2986,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3060,50 +3082,50 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3112,7 +3134,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3124,7 +3146,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3163,7 +3185,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3512,7 +3534,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "" @@ -3523,9 +3545,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "" @@ -3639,32 +3662,32 @@ msgid "Disabled" msgstr "" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "" @@ -4064,13 +4087,13 @@ msgstr "" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "" @@ -4093,7 +4116,6 @@ msgstr "" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4133,23 +4155,22 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4158,14 +4179,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "" @@ -4202,7 +4223,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4215,7 +4236,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4232,7 +4253,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4241,7 +4262,7 @@ msgid "Export type" msgstr "" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4294,7 +4315,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "" @@ -4353,7 +4373,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "" @@ -4570,7 +4589,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5636,9 +5654,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5800,7 +5820,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -5822,19 +5841,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -5890,25 +5906,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -5919,13 +5935,15 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "" @@ -5946,8 +5964,9 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "" @@ -5957,12 +5976,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "" @@ -6096,7 +6115,7 @@ msgid "View output as text" msgstr "" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "" @@ -6546,50 +6565,50 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6658,11 +6677,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6908,7 +6927,7 @@ msgstr "phpMyAdmin құжаттамасы" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7015,93 +7034,93 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7117,238 +7136,227 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +msgid "Data creation options" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7415,6 +7423,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7468,6 +7480,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7651,11 +7667,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Барлық белгілерді алып тастау" @@ -7675,9 +7692,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -7712,34 +7730,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7753,7 +7780,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7789,8 +7816,8 @@ msgid "Edit event" msgstr "" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -7866,7 +7893,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -7994,25 +8022,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8141,28 +8169,28 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8297,6 +8325,432 @@ msgstr "" msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8343,11 +8797,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8598,12 +9052,6 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "" - #: main.php:217 msgid "Server charset" msgstr "" @@ -9091,422 +9539,20 @@ msgstr "" msgid "disabled" msgstr "" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11050,37 +11096,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" diff --git a/po/ko.po b/po/ko.po index 0020eec7ff..e6714e9223 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" -"PO-Revision-Date: 2012-07-19 06:59+0200\n" -"Last-Translator: Mog Kim \n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" +"PO-Revision-Date: 2012-07-26 08:31+0200\n" +"Last-Translator: Hyun-Sung Yun \n" "Language-Team: korean \n" "Language: ko\n" "MIME-Version: 1.0\n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "모두 보기" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "검색" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "검색" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "실행" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "데이터베이스 %1$s가 생성되었습니다." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "데이터베이스 설명: " @@ -119,17 +122,17 @@ msgstr "데이터베이스 설명: " msgid "Table comments" msgstr "테이블 설명" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "컬럼명" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "종류" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "Null" msgid "Default" msgstr "기본값" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "링크 대상:" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "설명" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "아니오" @@ -241,19 +247,22 @@ msgstr "아니오" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "예" @@ -261,8 +270,8 @@ msgstr "예" msgid "View dump (schema) of database" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "데이터베이스에 테이블이 없습니다." @@ -278,74 +287,74 @@ msgstr "모두 선택안함" msgid "The database name is empty!" msgstr "데이터베이스명이 없습니다!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "데이터베이스 %1$s 의 이름을 %2$s 로 변경하였습니다." -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "데이터베이스 %1$s 을(를) %2$s 로 복사하였습니다." -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "데이터베이스 이름 변경" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "데이터베이스 제거" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "데이터베이스 %s 를 제거했습니다." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "데이터베이스 제거 (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "데이터베이스 복사" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "구조만" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "구조와 데이터 모두" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "데이터만" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "복사 전에 CREATE DATABASE 실행" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s 추가" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "제약조건 추가" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "복사한 테이블로 옮겨감" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -355,7 +364,7 @@ msgstr "복사한 테이블로 옮겨감" msgid "Collation" msgstr "데이터정렬방식" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -364,7 +373,7 @@ msgstr "" "phpMyAdmin 설정 스토리지가 비활성화 되어 있습니다. 원인을 확인하려면 %s여기" "를 클릭%s하십시오." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "관계 스키마를 수정 또는 내보내기" @@ -374,16 +383,18 @@ msgstr "관계 스키마를 수정 또는 내보내기" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "테이블 " #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "행" @@ -393,13 +404,13 @@ msgid "Size" msgstr "크기" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "사용중" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -407,7 +418,7 @@ msgstr "생성" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -415,7 +426,7 @@ msgstr "마지막 업데이트" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -427,92 +438,15 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s개 테이블 " -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "출력하려면 적어도 1개 이상의 열을 선택해야 합니다." -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "오름차순" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "내림차순" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "정렬" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "보기" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Criteria" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "조건행 추가/삭제" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "컬럼 추가/삭제" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "질의 업데이트" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "사용할 테이블" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "또는" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "그리고" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "삽입" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "삭제" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "수정" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "%s비주얼 쿼리 빌더%s로 전환" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "데이터베이스 %s에 SQL 질의:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "질의 실행" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -553,7 +487,7 @@ msgstr "트래킹이 활성화되었습니다." msgid "Tracking is not active." msgstr "트래킹이 활성화되어 있지 않습니다." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -582,20 +516,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "선택한 것을:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "모두 체크" @@ -603,31 +538,32 @@ msgstr "모두 체크" msgid "Check tables having overhead" msgstr "오버헤드를 가진 테이블들을 체크" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "내보내기" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "비우기" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -671,17 +607,18 @@ msgstr "추적된 테이블" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "데이터베이스" @@ -699,18 +636,26 @@ msgstr "수정됨" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "상태" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "실행" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "보기" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "이 테이블에 대한 추적 데이터를 제거" @@ -751,20 +696,20 @@ msgstr "데이터베이스 로그" msgid "Bad type!" msgstr "잘못된 타입!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "선택한 내보내기가 파일에 저장되었습니다!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "잘못된 인자!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "파일 %s를 저장하기에 공간이 부족합니다." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -772,12 +717,12 @@ msgstr "" "%s 라는 이름의 파일이 이미 서버에 존재합니다. 파일명을 변경하거나 덮어쓰기 옵" "션을 설정해주세요." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "웹 서버에 파일 %s를 저장할 권한이 없습니다." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "덤프 파일이 %s에 저장되었습니다." @@ -800,7 +745,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometry" @@ -873,7 +818,7 @@ msgstr "" "\"기능\"컬럼에서 \"GeomFromText\"를 선택하고 아래 문자를 복사하여 \"값\"필드" "에 붙여넣으십시오." -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -882,20 +827,20 @@ msgstr "" "너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %s문서%s" "를 참조하여 주십시오." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "북마크 보이기" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "북마크를 제거했습니다." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "파일을 읽을 수 없습니다" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -905,7 +850,7 @@ msgstr "" "지원되지 않는 압축(%s)형식의 파일을 업로드하려고 시도했습니다. 지원이 구현되" "지 않았거나 설정에서 사용하지 않게 되어있습니다." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -915,27 +860,27 @@ msgstr "" "대 파일 크기를 초과했을 수 있습니다. [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a] 참조." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "문자셋 변환 라이브러리 없이 파일의 문자셋을 변환할 수 없습니다." -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "북마크 %s가 생성되었습니다." -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "가져오기를 성공적으로 마쳤습니다. %d 쿼리가 실행되었습니다." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -943,7 +888,7 @@ msgstr "" "스크립트 타임아웃이 통보되었습니다. 가져오기를 이어서 계속 완료시키려면 같은 " "파일을 다시 전송해주십시오." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -951,8 +896,8 @@ msgstr "" "파싱된 데이터가 없지만, 이것은 보통 phpMyAdmin이 php 시간 제한을 늘리지 않고" "는 이 가져오기를 마칠 수 없음을 뜻합니다." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -967,7 +912,7 @@ msgstr "뒤로" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 은 프레임을 지원하는 브라우저에서 잘 보입니다." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." @@ -976,7 +921,7 @@ msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." msgid "Do you really want to execute \"%s\"?" msgstr "정말로 \"%s\"을/를 실행하시겠습니까?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "이 데이터베이스 전체를 제거하려고 합니다!" @@ -1034,16 +979,20 @@ msgstr "호스트명이 없습니다!" msgid "The user name is empty!" msgstr "사용자명이 없습니다!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "암호가 없습니다!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "사용자 추가" @@ -1063,9 +1012,9 @@ msgstr "닫기" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1283,9 +1232,8 @@ msgstr "%d개 테이블(s)" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:131 -#, fuzzy msgid "Questions" -msgstr "테이블 작업" +msgstr "질의" #: js/messages.php:132 server_status.php:1128 msgid "Traffic" @@ -1311,12 +1259,13 @@ msgstr "차트에 그리드 추가" msgid "Please add at least one variable to the series" msgstr "최소 한개이상의 변수를 시리즈에 추가하십시오" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "없음" @@ -1333,7 +1282,6 @@ msgid "general_log and slow_query_log are enabled." msgstr "general_log 와 slow_query_log 가 활성화 되었습니다." #: js/messages.php:144 -#, fuzzy msgid "general_log is enabled." msgstr "general_log 가 활성화 되었습니다." @@ -1470,6 +1418,8 @@ msgid "" "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" +"INSERT 쿼리들만 선택되었기 때문에, 입력하는 데이터에 상관없이 같은 테이블을 " +"대상으로 하는 쿼리들끼리 또 분류되었습니다." #: js/messages.php:177 msgid "Log data loaded. Queries executed in this time span:" @@ -1496,10 +1446,10 @@ msgid "Explain output" msgstr "SQL 해석" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "시간" @@ -1525,9 +1475,8 @@ msgid "Edit chart" msgstr "차트 편집" #: js/messages.php:192 -#, fuzzy msgid "Series" -msgstr "SQL 질의" +msgstr "시리즈" #. l10n: A collection of available filters #: js/messages.php:195 @@ -1545,7 +1494,7 @@ msgstr "단어/정규식에 의한 필터 질의:" #: js/messages.php:199 msgid "Group queries, ignoring variable data in WHERE clauses" -msgstr "" +msgstr "그룹 쿼리, WHERE 절 변수 데이터를 무시합니다" #: js/messages.php:200 msgid "Sum of grouped rows:" @@ -1632,10 +1581,8 @@ msgid "Rule details" msgstr "규칙 세부 사항" #: js/messages.php:225 -#, fuzzy -#| msgid "Authenticating..." msgid "Justification" -msgstr "인증중입니다..." +msgstr "인증" #: js/messages.php:226 msgid "Used variable / formula" @@ -1748,8 +1695,6 @@ msgid "Show search results" msgstr "검색 결과 보이기" #: js/messages.php:265 -#, fuzzy -#| msgid "Browse" msgid "Browsing" msgstr "보기" @@ -1800,7 +1745,7 @@ msgstr "질의 상자 보이기" msgid "No rows selected" msgstr "선택된 행이 없습니다" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "변경" @@ -1809,8 +1754,8 @@ msgstr "변경" msgid "Query execution time" msgstr "질의 실행 시간" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d는 올바른 행번호가 아닙니다." @@ -1833,8 +1778,6 @@ msgid "Show search criteria" msgstr "검색 조건 보이기" #: js/messages.php:298 libraries/TableSearch.class.php:225 -#, fuzzy -#| msgid "Search" msgid "Zoom Search" msgstr "추가 검색" @@ -1884,7 +1827,7 @@ msgstr "테이블 설명" msgid "Ignore" msgstr "무시" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "복사" @@ -2381,14 +2324,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "오류" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL 질의" @@ -2399,7 +2342,7 @@ msgstr "SQL 질의" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2428,6 +2371,10 @@ msgstr "PHP 코드 없이 보기" msgid "Create PHP Code" msgstr "PHP 코드 보기" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "질의 실행" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2452,7 +2399,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "인라인" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "프로파일링" @@ -2479,14 +2426,14 @@ msgstr "매개 변수 누락:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "처음" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2494,7 +2441,7 @@ msgstr "이전" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2502,7 +2449,7 @@ msgstr "다음" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "마지막" @@ -2523,16 +2470,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "구조" @@ -2540,21 +2488,20 @@ msgstr "구조" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "삽입" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "보기" @@ -2576,21 +2523,21 @@ msgstr "업로드 파일:" msgid "Select from the web server upload directory %s:" msgstr "웹서버 업로드 디렉토리" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "업로드할 파일이 없습니다." +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "실행하기" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "인쇄" @@ -2607,6 +2554,74 @@ msgstr "" msgid "Font size" msgstr "글꼴 크기" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "오름차순" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "내림차순" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "정렬" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Criteria" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "조건행 추가/삭제" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "컬럼 추가/삭제" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "질의 업데이트" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "사용할 테이블" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "또는" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "그리고" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "삽입" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "삭제" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "수정" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "데이터베이스 %s에 SQL 질의:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "아무 단어나" @@ -2647,8 +2662,8 @@ msgstr[0] "테이블 %s에서 %s 건 일치" msgid "Delete the matches for the %s table?" msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2683,68 +2698,68 @@ msgstr "검색할 테이블:" msgid "Inside column:" msgstr "검색할 컬럼:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete columns" msgid "Restore column order" msgstr "컬럼 추가/삭제" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "시작 행" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "행 갯수" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mo" msgid "Mode" msgstr "월" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "수평(가로)" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "수평 (rotated headers)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "수직(세로)" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2757,112 +2772,112 @@ msgstr "" msgid "Options" msgstr "옵션" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Full Texts" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Version information" msgid "Hide browser transformation" msgstr "버전 정보" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "질의(in query)" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "행(레코드) 보기" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "합계" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "서버 버전" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "" @@ -2986,8 +3001,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "데이터베이스 " @@ -3003,11 +3018,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3025,9 +3040,9 @@ msgstr "" msgid "Query" msgstr "질의 마법사" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "사용권한" @@ -3036,7 +3051,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3133,51 +3148,51 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "데이터베이스 검색" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "데이터베이스 검색" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "테이블 %s을(를) %s(으)로 이름을 변경하였습니다." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3186,7 +3201,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "함수" @@ -3199,7 +3214,7 @@ msgstr "테이블 작업" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3244,7 +3259,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3604,7 +3619,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "테이블 수" @@ -3615,9 +3630,10 @@ msgstr "테이블 수" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "데이터" @@ -3741,33 +3757,33 @@ msgid "Disabled" msgstr "사용불가" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "구조" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4183,13 +4199,13 @@ msgstr "압축" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "첫 줄에 열 이름을 넣기" @@ -4212,7 +4228,6 @@ msgstr "열 특수문자 처리" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL 치환" @@ -4252,23 +4267,22 @@ msgstr "파일명 템플릿" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "덤프 테이블" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "테이블 설명 포함하기" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "테이블 설명" @@ -4277,14 +4291,14 @@ msgid "Continued table caption" msgstr "테이블 설명(Continued)" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "레이블 키" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME 형식" @@ -4322,7 +4336,7 @@ msgid "SQL compatibility mode" msgstr "SQL 호환 모드" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 #, fuzzy msgid "CREATE TABLE options:" msgstr "CREATE TABLE 옵션 :" @@ -4338,7 +4352,7 @@ msgid "Use delayed inserts" msgstr "지연 삽입 사용" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "외래 키(foreign key) 체크 사용 안함" @@ -4358,7 +4372,7 @@ msgid "Syntax to use when inserting data" msgstr "데이터 삽입시 사용 구문" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "CREATE 질의 최대 길이" @@ -4367,7 +4381,7 @@ msgid "Export type" msgstr "내보내기 형식" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 #, fuzzy msgid "Enclose export in a transaction" msgstr "트랜잭션으로 내보내기 감싸기" @@ -4421,7 +4435,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV 데이터" @@ -4481,7 +4494,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 #, fuzzy msgid "LaTeX" msgstr "Label" @@ -4714,7 +4726,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5820,9 +5831,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "암호" @@ -5995,7 +6008,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6020,19 +6032,16 @@ msgstr "데이터베이스 사용량 통계" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS엑셀 CSV 데이터" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6090,27 +6099,27 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "서버 응답이 없습니다" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6121,13 +6130,15 @@ msgid "Change password" msgstr "암호 변경" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "암호 없음" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "재입력" @@ -6150,8 +6161,9 @@ msgstr "새 데이터베이스 만들기" msgid "Create" msgstr "만들기 " -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "권한 없음" @@ -6162,12 +6174,12 @@ msgid "Create table" msgstr "새 페이지 만들기" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "이름" @@ -6323,7 +6335,7 @@ msgid "View output as text" msgstr "파일로 저장" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6782,51 +6794,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "데이터베이스가 없습니다" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "데이터베이스가 없습니다" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "구조만" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6898,11 +6910,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "탭 키나 CTRL+화살표로 값 항목을 이동할 수 있습니다." -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7156,7 +7168,7 @@ msgstr "phpMyAdmin 설명서" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7268,80 +7280,80 @@ msgstr "" msgid "Authenticating..." msgstr "인증중입니다..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "줄(열) 구분자" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "필드 감싸기" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "필드 특수문자(escape) 처리" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "줄(열) 구분자" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "데이터베이스 사용량 통계" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "테이블의 덤프 데이터" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "보냄" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7349,25 +7361,25 @@ msgstr "보냄" msgid "Definition" msgstr "설명" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "테이블 구조" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "구조만" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7383,254 +7395,244 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "@TABLE@ 테이블 구조" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy msgid "Table caption (continued)" msgstr "테이블 설명" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "호스트" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "처리한 시간" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "서버 버전" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP 버전" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "내보내기" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "수평 (rotated headers)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "파일 가져오기" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "명세" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "명세" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +msgid "Data creation options" +msgstr "데이터베이스 사용량 통계" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "프로세스 목록" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "함수" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "데이터 읽기 허용." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7699,6 +7701,10 @@ msgstr "열(칼럼) 이름" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7752,6 +7758,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7937,11 +7947,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "설명이 없습니다" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "모두 체크안함" @@ -7961,9 +7972,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "사용자명" @@ -8000,34 +8012,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "아무나" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "아무데서나" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8041,7 +8062,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8079,8 +8100,8 @@ msgid "Edit event" msgstr "보냄" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8166,7 +8187,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8307,24 +8329,24 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8474,29 +8496,29 @@ msgstr "데이터베이스에 테이블이 없습니다." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" 테이블이 존재하지 않습니다!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8642,6 +8664,454 @@ msgstr "" msgid "Current Server" msgstr "서버" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "권한 없음." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "GRANT 이외의 모든 권한을 포함함." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "데이터 읽기 허용." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "데이터 추가(insert) 및 변경(replace) 허용." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "데이터 변경 허용." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "데이터 삭제 허용." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "DB 및 테이블 생성 허용." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "DB 및 테이블 삭제 허용." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "캐시를 비우고 서버를 재시동하는 것을 허용." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "서버 종료 허용." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "이 버전의 MySQL에는 소용이 없습니다." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "인덱스 생성 및 삭제 허용." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "테이블 구조 변경 허용." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "전체 데이터베이스 목록 접근을 허용" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "임시테이블 생성 허용." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "복제서버(replication slaves)에 필요합니다." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +#, fuzzy +msgid "Allows creating new views." +msgstr "테이블 생성 허용." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "인덱스 생성 및 삭제 허용." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +#, fuzzy +msgid "Allows creating stored routines." +msgstr "테이블 생성 허용." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +#, fuzzy +msgid "Allows altering and dropping stored routines." +msgstr "인덱스 생성 및 삭제 허용." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "없음" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "리소스 제한" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limits the number of new connections the user may open per hour." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "테이블에 관한 권한" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "주의: MySQL 권한 이름은 영어로 표기되어야 합니다. " + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "전체적 권한" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "데이터베이스에 관한 권한" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "테이블 생성 허용." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "테이블 삭제 허용." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "로그인 정보" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "암호를 변경하지 않음" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s 의 암호가 바뀌었습니다." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "%s의 권한을 제거했습니다." + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr ""%s" 에 접근할 수 있는 사용자들" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "사용자" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +#, fuzzy +msgid "Grant" +msgstr "인쇄" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "뷰 %s가 제거되었습니다." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Any" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "사용자가 없습니다." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "권한 수정" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "제거" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "내보내기" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +#, fuzzy +msgid "... delete the old one from the user tables." +msgstr "권한 테이블에서 사용자를 삭제하기만 함." + +#: libraries/server_privileges.lib.php:1848 +#, fuzzy +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." + +#: libraries/server_privileges.lib.php:1849 +#, fuzzy +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "사용자를 삭제하고 사용권한을 갱신함." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "열(칼럼)에 관한 권한" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "다음 데이터베이스에 권한 추가하기" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "다음 테이블에 권한 추가하기" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "선택한 사용자를 삭제" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "사용권한을 갱신합니다(Reloading the privileges)" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "선택한 사용자들을 삭제했습니다." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "%s 의 권한을 업데이트했습니다." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "사용권한" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "사용권한" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "사용자 개요" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "새 사용자를 추가했습니다." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -8692,11 +9162,11 @@ msgstr "" msgid "Columns" msgstr "열(칼럼) 이름" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8970,12 +9440,6 @@ msgstr "버전 보기" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "사용자" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9518,444 +9982,20 @@ msgstr "" msgid "disabled" msgstr "사용불가" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "GRANT 이외의 모든 권한을 포함함." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "테이블 구조 변경 허용." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -#, fuzzy -msgid "Allows altering and dropping stored routines." -msgstr "인덱스 생성 및 삭제 허용." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "DB 및 테이블 생성 허용." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -#, fuzzy -msgid "Allows creating stored routines." -msgstr "테이블 생성 허용." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "테이블 생성 허용." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "임시테이블 생성 허용." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -#, fuzzy -msgid "Allows creating new views." -msgstr "테이블 생성 허용." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "데이터 삭제 허용." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "DB 및 테이블 삭제 허용." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "테이블 삭제 허용." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "인덱스 생성 및 삭제 허용." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "데이터 추가(insert) 및 변경(replace) 허용." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "이 버전의 MySQL에는 소용이 없습니다." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "캐시를 비우고 서버를 재시동하는 것을 허용." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "복제서버(replication slaves)에 필요합니다." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "데이터 읽기 허용." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "전체 데이터베이스 목록 접근을 허용" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "서버 종료 허용." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "인덱스 생성 및 삭제 허용." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "데이터 변경 허용." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "권한 없음." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "없음" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "테이블에 관한 권한" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "주의: MySQL 권한 이름은 영어로 표기되어야 합니다. " - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "전체적 권한" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "데이터베이스에 관한 권한" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "리소스 제한" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "로그인 정보" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "암호를 변경하지 않음" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "사용자가 없습니다." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "새 사용자를 추가했습니다." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "%s 의 권한을 업데이트했습니다." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "%s의 권한을 제거했습니다." - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s 의 암호가 바뀌었습니다." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s 을 삭제합니다" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "사용권한을 갱신합니다(Reloading the privileges)" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "선택한 사용자들을 삭제했습니다." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "권한 수정" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "제거" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "내보내기" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Any" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "사용권한" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "사용권한" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "사용자 개요" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -#, fuzzy -msgid "Grant" -msgstr "인쇄" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "선택한 사용자를 삭제" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "열(칼럼)에 관한 권한" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "다음 데이터베이스에 권한 추가하기" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "다음 테이블에 권한 추가하기" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -#, fuzzy -msgid "... delete the old one from the user tables." -msgstr "권한 테이블에서 사용자를 삭제하기만 함." - -#: server_privileges.php:2385 -#, fuzzy -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." - -#: server_privileges.php:2386 -#, fuzzy -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "사용자를 삭제하고 사용권한을 갱신함." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr ""%s" 에 접근할 수 있는 사용자들" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "뷰 %s가 제거되었습니다." - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11544,41 +11584,41 @@ msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자 포함" msgid "Wrong data" msgstr "데이터베이스가 없습니다" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "정말로 다음을 실행하시겠습니까? " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "PHP 코드 보기" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL 검사" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL 결과" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Label" diff --git a/po/lt.po b/po/lt.po index 009e885777..58cae05c11 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-03 16:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: lithuanian \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Rodyti viską" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Paieška" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Paieška" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Vykdyti" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Duomenų bazės komentaras: " @@ -120,17 +123,17 @@ msgstr "Duomenų bazės komentaras: " msgid "Table comments" msgstr "Lentelės komentarai" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Stulpelis" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tipas" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Null" msgid "Default" msgstr "Nutylint" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Sąryšis su" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Komentarai" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ne" @@ -242,19 +248,22 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Taip" @@ -262,8 +271,8 @@ msgstr "Taip" msgid "View dump (schema) of database" msgstr "Peržiūrėti duomenų bazės atvaizdį (schemą)" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Duomenų bazėje nerasta lentelių." @@ -279,76 +288,76 @@ msgstr "Atžymėti visas" msgid "The database name is empty!" msgstr "Nenurodytas duomenų bazės vardas!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Duomenų bazė %s pervadinta į %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Duomenų bazė %s buvo nukopijuota į %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Pervadinti duomenų bazę į" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Pašalinti duomenų bazę" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Duomenų bazė %s ištrinta." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Pašalinti duomenų bazę (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopijuoti duomenų bazę į" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Tik struktūra" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktūra ir duomenys" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Tik duomenys" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prieš kopijuojant" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Pridėti %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Pridėti apribojimą" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Pereiti į nukopijuotą duomenų bazę" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -358,7 +367,7 @@ msgstr "Pereiti į nukopijuotą duomenų bazę" msgid "Collation" msgstr "Palyginimas" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -366,7 +375,7 @@ msgid "" msgstr "" "phpMyAdmin konfigūracijos talpinimo vieta išjungta. %sIšsiaiškinti kodėl%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Keisti arba eksportuoti ryšių schemą" @@ -376,16 +385,18 @@ msgstr "Keisti arba eksportuoti ryšių schemą" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Lentelė" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Eilutės" @@ -395,13 +406,13 @@ msgid "Size" msgstr "Dydis" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "šiuo metu naudojama" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -409,7 +420,7 @@ msgstr "Sukurta" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -417,7 +428,7 @@ msgstr "Paskutinis atnaujinimas" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,92 +442,15 @@ msgstr[0] "%s lentelė" msgstr[1] "%s lentelės" msgstr[2] "%s lentelių" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Pasirinkite bent vieną stulpelį išvedimui" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Didėjimo tvarka" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Mažėjimo tvarka" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Rūšiuoti" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Rodyti" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriterijai" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Įterpti/Pašalinti požymio eilutes" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Įterpti/trinti stulpelius" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Atnaujinti užklausą" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Naudoti lenteles" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Arba" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Ir" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Įterpiant" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Pakeičiant" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Keisti" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Pereiti į %svizualią daryklę%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-užklausa duomenų bazėje %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Vykdyti užklausą" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "Sekimas yra aktyvus." msgid "Tracking is not active." msgstr "Sekimas yra neaktyvus." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -587,20 +521,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Pasirinktus:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Pažymėti visas" @@ -608,31 +543,32 @@ msgstr "Pažymėti visas" msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksportuoti" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Išvalyti" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -676,17 +612,18 @@ msgstr "Sekamos lentelės" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Duomenų bazė" @@ -704,18 +641,26 @@ msgstr "Atnaujinta" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Būsena" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Veiksmas" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Rodyti" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ištrinti šios lentelės sekimo duomenis" @@ -756,20 +701,20 @@ msgstr "Duomenų bazės žurnalas" msgid "Bad type!" msgstr "Blogas tipas!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Pasirinktas eksportavimo tipas gali būti saugomas tik faile!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Blogi parametrai!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nėra pakankamai vietos išsaugoti failui %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -777,12 +722,12 @@ msgstr "" "Failas pavadinimu %s jau yra darbinėje stotyje, pakeiskite norimą pavadinimą " "arba pasirinkite nustatymą leidžiantį perrašyti esamus failus." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Nėra teisių išsaugoti failui %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Atvaizdis įrašytas faile %s." @@ -805,7 +750,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometrija" @@ -884,7 +829,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -893,20 +838,20 @@ msgstr "" "Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " "%sdokumentaciją%s būdams kaip apeiti šį apribojimą." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Rodomos žymelės" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Nuoroda ištrinta." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Negalima perskaityti failo" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -916,7 +861,7 @@ msgstr "" "Jūs bandote įkelti failą su nepalaikomu glaudinimu (%s). Palaikymas gali " "būti neįgyvendintas arba išjungtas Jūsų konfigūracijoje." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -926,28 +871,28 @@ msgstr "" "failo dydis viršija didžiausią leidžiamą dydį PHP konfigūracijos. Žiūrėti " "[a@./Documentation.html#faq1_16@Documentation]DUK 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Negalima perkonvertuoti failo ženklų rinkinio be ženklų rinkinio " "konvertavimo bibliotekos" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Nepavyko įkelti importuotų įskiepių, prašome patikrinti įdiegimą!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Žymė %s sukurta" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importavimas sėkmingai baigtas, įvykdyta %d užklausų." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -955,7 +900,7 @@ msgstr "" "Baigėsi skripto vykdymui skirtas laikas, jeigu norite pabaigti importuoti " "prašome dar kartą siųsti tą patį failą ir importavimas bus tęsiamas." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -964,8 +909,8 @@ msgstr "" "dažniausiai reiškia, kad phpMyAdmin negali baigti importuoti nebent Jūs " "padidintumėte PHP laiko limitą." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -981,7 +926,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin draugiškesnis su rėmelius palaikančiomis naršyklėmis." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "„DROP DATABASE“ komandos įvykdyti negalima." @@ -991,7 +936,7 @@ msgstr "„DROP DATABASE“ komandos įvykdyti negalima." msgid "Do you really want to execute \"%s\"?" msgstr "Ar tikrai norite " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!" @@ -1049,16 +994,20 @@ msgstr "Tuščias prisijungimo adresas!" msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Pridėti naudotoją" @@ -1078,9 +1027,9 @@ msgstr "Uždaryti" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1326,12 +1275,13 @@ msgstr "Pritraukti prie tinklelio" msgid "Please add at least one variable to the series" msgstr "Prašome pridėti bent vieną kintamąjį į eilę" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Ne" @@ -1514,10 +1464,10 @@ msgid "Explain output" msgstr "Paaiškinti SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Laikas" @@ -1840,7 +1790,7 @@ msgstr "Rodyti užklausos laukelį" msgid "No rows selected" msgstr "Nepasirinkti įrašai" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Redaguoti" @@ -1849,8 +1799,8 @@ msgstr "Redaguoti" msgid "Query execution time" msgstr "Užklausos vykdymo laikas" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d nėra galimas eilutės numeris." @@ -1925,7 +1875,7 @@ msgstr "Duomenų rodyklės dydis" msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopijuoti" @@ -2418,14 +2368,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Klaida" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL užklausa" @@ -2436,7 +2386,7 @@ msgstr "SQL užklausa" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2465,6 +2415,10 @@ msgstr "be PHP kodo" msgid "Create PHP Code" msgstr "PHP kodas" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Vykdyti užklausą" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2489,7 +2443,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Redaguoti čia" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profiliavimas" @@ -2516,7 +2470,7 @@ msgstr "Trūkstamas parametras:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2525,7 +2479,7 @@ msgstr "Pradžia" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2535,7 +2489,7 @@ msgstr "Ankstesnis" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2545,7 +2499,7 @@ msgstr "Kitas" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2568,16 +2522,17 @@ msgstr "Spustelėkite suskleidimui/atskleidimui" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktūra" @@ -2585,21 +2540,20 @@ msgstr "Struktūra" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Įterpti" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Peržiūrėti" @@ -2620,21 +2574,21 @@ msgstr "Naršyti savo kompiuteryje:" msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Nėra failų išsiuntimui" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Vykdyti" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Spausdinti" @@ -2652,6 +2606,74 @@ msgstr "" msgid "Font size" msgstr "Šrifto dydis" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Didėjimo tvarka" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Mažėjimo tvarka" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Rūšiuoti" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriterijai" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Įterpti/Pašalinti požymio eilutes" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Įterpti/trinti stulpelius" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Atnaujinti užklausą" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Naudoti lenteles" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Arba" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Ir" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Įterpiant" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Pakeičiant" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Keisti" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-užklausa duomenų bazėje %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "bent vienas iš žodžių" @@ -2696,8 +2718,8 @@ msgstr[2] "%s atitikmenų lentelėse %s" msgid "Delete the matches for the %s table?" msgstr "Ištrinti sutapimus %s lentelėje(ei)?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2732,67 +2754,67 @@ msgstr "Viduje lentelių:" msgid "Inside column:" msgstr "Stulpelio viduje:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "Išsaugoti katalogą" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Atstatyti stulpelių rikiavimą" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Pradėti eilute" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Eilučių skaičius:" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Režimas" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontaliai" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontalūs (pasukti pavadinimai)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikaliai" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute every" msgid "Headers every %s rows" msgstr "Vykdyti kas" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Rūšiuoti pagal raktą" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2805,62 +2827,62 @@ msgstr "Rūšiuoti pagal raktą" msgid "Options" msgstr "Nustatymai" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Tekstus rodyti dalinai" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Tekstus rodyti pilnai" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Sąryšių raktas" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Ryšių rodymo stulpelis" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Rodyti dvejetainį turinį" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Rodyti BLOB turinį" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Rodyti dvejetainį turinį kaip šešioliktainį" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Naršyklės transformacija" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2868,44 +2890,44 @@ msgstr "" "Gali būti apytikslis. Žiūrėkite [a@./Documentation." "html#faq3_11@Documentation]DUK 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "užklausa vykdoma" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Rodomi įrašai" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "iš viso" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Spausdinti rezultatus (su pilnais tekstais)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Rodyti diagramą" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Sukurti rodinį" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Sąryšis nerastas" @@ -3030,8 +3052,8 @@ msgstr "" "Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Duomenų bazės" @@ -3047,11 +3069,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3069,9 +3091,9 @@ msgstr "Duomenų bazė atrodo tuščia!" msgid "Query" msgstr "SQL užklausa" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegijos" @@ -3080,7 +3102,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Įvykiai" @@ -3181,53 +3203,53 @@ msgstr "%s šiame MySQL serveryje yra išjungtas." msgid "This MySQL server does not support the %s storage engine." msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "lentelės būsena nežinoma: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Iš duomenų bazės" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nerasta!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Neteisingas duomenų bazės vardas" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Neteisingas lentelės vardas" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Klaida pervadinant lentelę iš %1$s į %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Lentelė %s pervadinta į %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Nepavyko išsaugoti lentelės naudotojo sąsajos nustatymų." -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3236,7 +3258,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3248,7 +3270,7 @@ msgstr "Operatorius" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3293,7 +3315,7 @@ msgid "Maximum rows to plot" msgstr "Maksimalus skaičius eilučių rodymui" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" @@ -3656,7 +3678,7 @@ msgstr "padalintas" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Lentelės" @@ -3667,9 +3689,10 @@ msgstr "Lentelės" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Duomenys" @@ -3790,32 +3813,32 @@ msgid "Disabled" msgstr "Išjungta" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "struktūra" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "duomenys" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "struktūra ir duomenys" @@ -4236,13 +4259,13 @@ msgstr "Glaudinimas" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje" @@ -4265,7 +4288,6 @@ msgstr "Prieš stulpelių spec. simbolius" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Pakeisti NULL į" @@ -4305,23 +4327,22 @@ msgstr "Lentelės vardo šablonas" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Parodyti lentelę" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Įterpti lentelės antraštę" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Lentelės antraštė" @@ -4330,14 +4351,14 @@ msgid "Continued table caption" msgstr "Pratęsta lentelės antraštė" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Pavadinimo raktas" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME tipas" @@ -4374,7 +4395,7 @@ msgid "SQL compatibility mode" msgstr "SQL suderinamumo režimas" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE nustatymai:" @@ -4387,7 +4408,7 @@ msgid "Use delayed inserts" msgstr "Naudoti užlaikytus įterpimus" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Atsisakyti išorinių raktų tikrinimo" @@ -4404,7 +4425,7 @@ msgid "Syntax to use when inserting data" msgstr "Tikrinti sintaksę kai įterpiami duomenys" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Didžiausias sukurtos užklausos ilgis" @@ -4413,7 +4434,7 @@ msgid "Export type" msgstr "Eksportavimo tipas" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Naudoti transakciją visam eksportui" @@ -4466,7 +4487,6 @@ msgstr "Pasirinkti numatytuosius nustatymus" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4525,7 +4545,6 @@ msgid "Set import and export directories and compression options" msgstr "Naudoti importavimo ir eksportavimo katalogus ir suspaudimo nustatymus" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4754,7 +4773,6 @@ msgid "Customize text input fields" msgstr "Adaptuoti teksto įvedimo laukelius" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! tekstas" @@ -5923,9 +5941,11 @@ msgstr "Reikalaujama, kad SQL Validator būtų įjungtas" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Slaptažodis" @@ -6096,7 +6116,6 @@ msgstr "CSV naudojant LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document skaičiuoklė" @@ -6118,19 +6137,16 @@ msgstr "Duomenų bazės eksportavimo nustatymai" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV formatas MS Excel programai" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document rašyklė" @@ -6188,7 +6204,7 @@ msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6196,21 +6212,21 @@ msgid "" "configured)." msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatsako" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detalės..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6221,13 +6237,15 @@ msgid "Change password" msgstr "Pakeisti slaptažodį" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Nėra slaptažodžio" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Įveskite dar kartą" @@ -6248,8 +6266,9 @@ msgstr "Sukurti duomenų bazę" msgid "Create" msgstr "Sukurti" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Nėra privilegijų" @@ -6259,12 +6278,12 @@ msgid "Create table" msgstr "Sukurti lentelę" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Pavadinimas" @@ -6401,7 +6420,7 @@ msgid "View output as text" msgstr "Rodyti išvedimą kaip tekstą" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Formatas:" @@ -6879,57 +6898,57 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Nerasta duomenų GIS vizualizavimui." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Eiti į duomenų bazę" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Keisti nustatymus %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Eiti į lentelę" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Struktūra %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" @@ -7000,11 +7019,11 @@ msgid "" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" @@ -7252,7 +7271,7 @@ msgstr "phpMyAdmin dokumentacija" msgid "Reload navigation frame" msgstr "Atsiųsti iš naujo navigacijos rėmelį" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Šis formatas neturi nustatymų" @@ -7369,70 +7388,70 @@ msgstr "Prijungtas netinkamas atpažinimo raktas" msgid "Authenticating..." msgstr "Nustatomas tapatumas..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Laukai atskirti su:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Laukų reikšmės apskliaustos su:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Laukų reikšmės baigiasi simboliu:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Eilutės baigiasi simboliu:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Pakeisti NULL į:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel variantas:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Duomenų išvedimo nustatymai" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Sukurta duomenų kopija lentelei" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Įvykis" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7440,24 +7459,24 @@ msgstr "Įvykis" msgid "Definition" msgstr "Paaiškinimas" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Sukurta duomenų struktūra lentelei" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktūra peržiūrėjimui" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Tik struktūra rodiniui" @@ -7473,98 +7492,87 @@ msgstr "(tęsinys)" msgid "Structure of table @TABLE@" msgstr "Lentelės @TABLE@ struktūra" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Objekto kūrimo nustatymai" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Lentelės antraštė (tęsinys)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Rodyti išorinių raktų sąryšius" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Rodyti komentarus" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Rodyti MIME-tipus" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Darbinė stotis" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Atlikimo laikas" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Serverio versija" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP versija" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki lentelė" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "Eksportuoti turinį" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horizontalūs (pasukti pavadinimai)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Ataskaitos antraštė:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP masyvas" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7572,13 +7580,13 @@ msgstr "" "Išvesti detales (įtraukiant tokią info kaip eksporto eksportavimo laiką, " "PHP versiją ir serverio versiją)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Įterpti komentarą į antraštės sritį (eilutėms atskirti naudokite \n" "):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7586,56 +7594,63 @@ msgstr "" "Įtraukti duomenų bazės sukūrimo, paskutinio atnaujinimo ir paskutinio " "patikrinimo laiką" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Duomenų bazės sistema arba senesnis MySQL serveris tam, kad maksimaliai " "pagerinti išvedimo suderinamumą su:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Įtraukti %s sakinį" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Pridėti sakinius:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Objekto kūrimo nustatymai" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Vietoj INSERT sakinio naudoti:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED sakinys" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE sakinys" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Naudoti funkciją kai išvedami duomenys:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Naudoti sintaksę kai įterpiami duomenys:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7645,7 +7660,7 @@ msgstr "" "Pavyzdžiui: INSERT INTO lentelės_pavadinimas (stul_A,stul_B,stul_C) " "VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7655,7 +7670,7 @@ msgstr "" "INSERT INTO lentelės_pavadinimas VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7663,7 +7678,7 @@ msgstr "" "abu iš paminėtų
Pavyzdys: INSERT INTO lentelės_pavadinimas " "(stul_A,stul_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7671,7 +7686,7 @@ msgstr "" "nė vienas iš paminėtų
Pavyzdys: INSERT INTO lentelės_pavadinimas " "VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7679,56 +7694,51 @@ msgstr "" "Rodyti dvejetainius stulpelius šešioliktainėje sistemoje (pavyzdžiui, " "„abc“ tampa 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedūros" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funkcijos" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Apribojimai lentelei" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPAI LENTELEI" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "SĄRYŠIAI LENTELEI" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Klaida skaitant duomenis:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Objekto kūrimo nustatymai (visi yra rekomenduojami)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Rodinys (Views)" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Eksportuoti turinį" @@ -7799,6 +7809,10 @@ msgstr "Stulpelių vardai" msgid "This plugin does not support compressed imports!" msgstr "Priedas nepalaiko suglaudintų importų!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki lentelė" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7858,6 +7872,10 @@ msgstr "SQL suderinamumo režimas:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nenaudokite AUTO_INCREMENT nulinėms reikšmėms" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8113,11 +8131,12 @@ msgstr "" "Iš naujo prisijunkite prie phpMyAdmin tam, kad užkrautumėte atnaujintą " "konfigūracijos failą." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "Aprašymo nėra" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Atžymėti visas" @@ -8140,9 +8159,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Naudotojo vardas" @@ -8177,34 +8197,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Pridėti pavaldžiojo serverio (slave) dauginimo (replication) naudotoją" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Bet kurį vartotoją" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Bet kurį prisijungimo adresą" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokali darbinė stotis" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Dabartinis serveris" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Naudoti Host lentelę" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8218,7 +8247,7 @@ msgstr "Generuoti slaiptažodį" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8254,8 +8283,8 @@ msgid "Edit event" msgstr "Redaguoti įvykį" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Klaida vykdant užklausą" @@ -8337,7 +8366,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8472,7 +8502,12 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8480,18 +8515,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8622,28 +8652,28 @@ msgstr "Nėra įvykio su vardu %1$s duomenų bazėje %2$s" msgid "There are no events to display." msgstr "Nėra įvykių rodymui." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Lentelė %s neegzistuoja!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Nustatykite lentelės %s koordinates" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Duomenų bazės %s schema - %s puslapis" @@ -8780,6 +8810,459 @@ msgstr "Nežinoma kalba: %1$s." msgid "Current Server" msgstr "Dabartinis serveris" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Be teisių." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Įtraukti visas teises, išskyrus GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Leisti skaityti duomenis." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Leisti įterpti ir modifikuoti duomenis." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Leisti modifikuoti duomenis." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Leisti šalinti duomenis." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Leisti kurti naujas duomenų bazes ir lenteles." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Leisti šalinti duomenų bazes ir lenteles." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Leisti perkrauti serverio nustatymus, bei išvalyti laikinąją atmintį (cache)." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Leisti išjungti serverį." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Leisti peržiūrėti procesus visiems naudotojams" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Leisti įterpti ir eksportuoti duomenis iš failų." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Negalioja šioje MySQL versijoje." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Leisti įterpti ir modifikuoti indeksus." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Suteikti prieigą prie visų duomenų bazių sąrašo." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Leisti prisijungti, kai viršytas prisijungimų kiekis; Reikalinga daugumai " +"administratoriaus darbų, tokių kaip globalių reikšmių modifikavimui ar " +"vartotojų atjungimui." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Leisti kurti laikinas lenteles." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Leisti užrakinti lenteles procesų metu." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Leidžia sukurti naujus rodinius (view)." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Leisti nustatyti įvykius įvykių planuoklėje (scheduler)" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Leisti įterpti ir pašalinti trigerius." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Leidžia sukurti naujas saugomas programas (stored routines)." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Leisti keisti pašalinti saugimas programas (stored routines)." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Leisti įvykdyti saugomas programas (stored routines)." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Nėra" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Išteklių apribojimai" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Riboti užklausų kiekį per valandą" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Riboti komandų, kurios modifikuoja lenteles ar duomenų bazes, kiekį per " +"valandą." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Riboti prisijungimų kiekį per valandą." + +# gal labiau kartu vykstančių +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Riboti skaičių lygiagrečių prisijungimų kurį naudotojai gali turėti." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Specifinės lentelių privilegijos" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administracija" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globalios teisės" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Specifinės duomenų bazių privilegijos" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Leisti kurti naujas lenteles." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Leisti šalinti lenteles." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant " +"privilegijų lentelės." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Prisijungimo informacija" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Nekeisti slaptažodžio" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Jūs panaikinote privilegijas %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Vartotojo duomenų bazė" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" +"Sukurti duomenų bazę su tokiu pat vardu ir suteikti jai visas privilegijas" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Suteikti visas privilegijas duomenų bazei „%s“" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Vartotojai turintys priėjimą prie „%s“" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Naudotojas" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Suteikti" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Naudotojas buvo pridėtas." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Bet kurį(ią)" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globalus" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "tam tikros duomenų bazės" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "pakaitos simbolis" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Nerasta jokių naudotojų." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Redaguoti privilegijas" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Panaikinti" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Eksportuoti" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... palikti seną vartotoją." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... pašalinti seną vartotoją iš vartotojų lentelės." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti " +"privilegijas" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Specifinės stulpelių privilegijos" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Sukurti privilegijas šiai duomenų bazei" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "Norėdami naudoti _ ir % kaip simbolius, prieš juos prirašykite \\" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Sukurti privilegijas šiai lentelei" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Pašalinti pažymėtus vartotojus" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Pašalinti duomenų bazes, turinčias tokius pačius pavadinimus kaip ir " +"vartotojai." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Nepasirinta vartotojų trynimui!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Perkraunamos privilegijos" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Pažymėti vartotojai sėkmingai pašalinti." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Jūs pakeitėte privilegijas %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privilegijos" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privilegijos" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Vartotojų peržiūra" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų " +"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " +"failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Jūs sukūrėte naują vartotoją." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Iš duomenų bazės" @@ -8826,11 +9309,11 @@ msgstr "Išvalyti" msgid "Columns" msgstr "Stulpeliai" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Šios SQL užklausą pasižymėti kaip" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" @@ -9113,12 +9596,6 @@ msgstr "Programinės įrangos versija" msgid "Protocol version" msgstr "Protokolo versija" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Naudotojas" - #: main.php:217 msgid "Server charset" msgstr "Serverio koduotė" @@ -9645,449 +10122,20 @@ msgstr "" msgid "disabled" msgstr "Išjungta" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Įtraukti visas teises, išskyrus GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Leisti keisti pašalinti saugimas programas (stored routines)." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Leisti kurti naujas duomenų bazes ir lenteles." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Leidžia sukurti naujas saugomas programas (stored routines)." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Leisti kurti naujas lenteles." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Leisti kurti laikinas lenteles." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Leidžia sukurti naujus rodinius (view)." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Leisti šalinti duomenis." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Leisti šalinti duomenų bazes ir lenteles." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Leisti šalinti lenteles." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Leisti nustatyti įvykius įvykių planuoklėje (scheduler)" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Leisti įvykdyti saugomas programas (stored routines)." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Leisti įterpti ir eksportuoti duomenis iš failų." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant " -"privilegijų lentelės." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Leisti įterpti ir modifikuoti indeksus." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Leisti įterpti ir modifikuoti duomenis." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Leisti užrakinti lenteles procesų metu." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Riboti prisijungimų kiekį per valandą." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Riboti užklausų kiekį per valandą" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Riboti komandų, kurios modifikuoja lenteles ar duomenų bazes, kiekį per " -"valandą." - -# gal labiau kartu vykstančių -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Riboti skaičių lygiagrečių prisijungimų kurį naudotojai gali turėti." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Leisti peržiūrėti procesus visiems naudotojams" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Negalioja šioje MySQL versijoje." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Leisti perkrauti serverio nustatymus, bei išvalyti laikinąją atmintį (cache)." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Leisti skaityti duomenis." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Suteikti prieigą prie visų duomenų bazių sąrašo." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Leisti išjungti serverį." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Leisti prisijungti, kai viršytas prisijungimų kiekis; Reikalinga daugumai " -"administratoriaus darbų, tokių kaip globalių reikšmių modifikavimui ar " -"vartotojų atjungimui." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Leisti įterpti ir pašalinti trigerius." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Leisti modifikuoti duomenis." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Be teisių." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Nėra" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Specifinės lentelių privilegijos" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administracija" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globalios teisės" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Specifinės duomenų bazių privilegijos" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Išteklių apribojimai" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Prisijungimo informacija" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Nekeisti slaptažodžio" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Nerasta jokių naudotojų." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Vartotojas %s jau yra!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Jūs sukūrėte naują vartotoją." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Jūs pakeitėte privilegijas %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Jūs panaikinote privilegijas %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Šaliname: %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Nepasirinta vartotojų trynimui!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Perkraunamos privilegijos" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Pažymėti vartotojai sėkmingai pašalinti." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Redaguoti privilegijas" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Panaikinti" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Eksportuoti" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Bet kurį(ią)" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilegijos" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilegijos" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Vartotojų peržiūra" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Suteikti" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Pašalinti pažymėtus vartotojus" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Pašalinti duomenų bazes, turinčias tokius pačius pavadinimus kaip ir " -"vartotojai." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų " -"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " -"failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Specifinės stulpelių privilegijos" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Sukurti privilegijas šiai duomenų bazei" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "Norėdami naudoti _ ir % kaip simbolius, prieš juos prirašykite \\" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Sukurti privilegijas šiai lentelei" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... palikti seną vartotoją." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... pašalinti seną vartotoją iš vartotojų lentelės." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti " -"privilegijas" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Vartotojo duomenų bazė" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" -"Sukurti duomenų bazę su tokiu pat vardu ir suteikti jai visas privilegijas" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Suteikti visas privilegijas duomenų bazei „%s“" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Vartotojai turintys priėjimą prie „%s“" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globalus" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "tam tikros duomenų bazės" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "pakaitos simbolis" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Naudotojas buvo pridėtas." - #: server_replication.php:82 msgid "Unknown error" msgstr "Nežinoma klaida" @@ -11739,39 +11787,39 @@ msgstr "" msgid "Wrong data" msgstr "Nėra duomenų" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ar tikrai norite " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Rodomas PHP kodas" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Patikrintas SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL rezultatas" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Sugeneravo" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Nuorodos Antraštė" @@ -13585,6 +13633,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "MyISAM concurrent įterpimai" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP masyvas" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/lv.po b/po/lv.po index 83e6cab793..72a3980b78 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: latvian \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Rādīt visu" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Meklēt" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Meklēt" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Aiziet!" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Datubāze %s tika izdzēsta." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Datubāzes komentārs: " @@ -119,17 +122,17 @@ msgstr "Datubāzes komentārs: " msgid "Table comments" msgstr "Komentārs tabulai" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Kolonnu nosaukumi" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tips" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Nulle" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Nulle" msgid "Default" msgstr "Noklusēts" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Linki uz" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Komentāri" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nē" @@ -243,19 +249,22 @@ msgstr "Nē" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Jā" @@ -263,8 +272,8 @@ msgstr "Jā" msgid "View dump (schema) of database" msgstr "Apskatīt datubāzes dampu (shēmu)" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Tabulas nav atrastas šajā datubāzē." @@ -280,79 +289,79 @@ msgstr "Neiezīmēt neko" msgid "The database name is empty!" msgstr "Datubāzes nosaukums ir tukšs!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Datubāze %s tika pārsaukta par %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Datubāze %s tika pārkopēta uz %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Datubāze %s tika izdzēsta." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nav datubāzu" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopēt datubāzi uz" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Tikai struktūra" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktūra un dati" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Tikai dati" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Pievienot ierobežojumus" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Pārslēgties uz nokopēto datubāzi" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -362,7 +371,7 @@ msgstr "Pārslēgties uz nokopēto datubāzi" msgid "Collation" msgstr "Izkārtojumi" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -374,7 +383,7 @@ msgstr "" "Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu " "kāpēc, klikškiniet %sšeit%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -386,16 +395,18 @@ msgstr "Relāciju shēma" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabula" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Rindas" @@ -405,13 +416,13 @@ msgid "Size" msgstr "Izmērs" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "lietošanā" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -419,7 +430,7 @@ msgstr "Izveidošana" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -427,7 +438,7 @@ msgstr "Pēdējā atjaunošana" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -441,97 +452,16 @@ msgid_plural "%s tables" msgstr[0] "%s tabula(s)" msgstr[1] "%s tabula(s)" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Augošā secībā" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Dilstošā secībā" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Kārtošana" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Rādīt" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kritērijs" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Pievienot/Dzēst ierakstu" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Pievienot/Dzēst laukus (kolonnas)" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Atjaunot vaicājumu" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Lietot tabulas" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Vai" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Un" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ielikt" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Dzēst" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Labot" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Pārslēgties uz nokopēto tabulu" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL vaicājums uz datubāzes %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Izpildīt vaicājumu" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -574,7 +504,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -603,20 +533,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Ar iezīmēto:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Iezīmēt visu" @@ -624,31 +555,32 @@ msgstr "Iezīmēt visu" msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksports" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Iztukšot" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -696,17 +628,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Datubāze" @@ -725,18 +658,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Statuss" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Darbība" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Rādīt" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -782,22 +723,22 @@ msgstr "Datubāze" msgid "Bad type!" msgstr "Vaicājuma tips" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Pievienot jaunu lauku" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nepietiek vietas, lai saglabātu failu %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -805,12 +746,12 @@ msgstr "" "Fails %s jau eksistē uz servera. Lūdzu nomainiet faila nosaukumu vai " "atzīmējiet failu pārrakstīšanas opciju." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web serverim nav tiesību rakstīt failā %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Damps tika saglabāts failā %s." @@ -834,7 +775,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -916,27 +857,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Ieraksts tika dzēsts." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Nevar nolasīt failu" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -944,46 +885,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -999,7 +940,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ir vairāk draudzīgs freimu atbalstošām pārlūkprogrammām." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda ir aizliegta." @@ -1009,7 +950,7 @@ msgstr "\"DROP DATABASE\" komanda ir aizliegta." msgid "Do you really want to execute \"%s\"?" msgstr "Vai Jūs tiešām gribat " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!" @@ -1080,16 +1021,20 @@ msgstr "Hosts nav norādīts!" msgid "The user name is empty!" msgstr "Lietotāja vārds nav norādīts!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Parole nav norādīta!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1114,9 +1059,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1381,12 +1326,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Nav" @@ -1571,10 +1517,10 @@ msgid "Explain output" msgstr "Izskaidrot SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Laiks" @@ -1923,7 +1869,7 @@ msgstr "SQL vaicājums" msgid "No rows selected" msgstr "Rindas nav iezīmētas" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Labot" @@ -1932,8 +1878,8 @@ msgstr "Labot" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -2014,7 +1960,7 @@ msgstr "Satura rādītājs" msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2558,14 +2504,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Kļūda" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL vaicājums" @@ -2576,7 +2522,7 @@ msgstr "SQL vaicājums" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2605,6 +2551,10 @@ msgstr "Bez PHP koda" msgid "Create PHP Code" msgstr "Izveidot PHP kodu" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Izpildīt vaicājumu" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2629,7 +2579,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2658,7 +2608,7 @@ msgstr "Pievienot jaunu lauku" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2667,7 +2617,7 @@ msgstr "Sākums" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2677,7 +2627,7 @@ msgstr "Iepriekšējie" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2687,7 +2637,7 @@ msgstr "Nākamie" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2710,16 +2660,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktūra" @@ -2727,21 +2678,20 @@ msgstr "Struktūra" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Pievienot" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Apskatīt" @@ -2763,21 +2713,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web servera augšupielādes direktorija" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Drukāt" @@ -2794,6 +2744,78 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Augošā secībā" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Dilstošā secībā" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Kārtošana" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kritērijs" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Pievienot/Dzēst ierakstu" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Pievienot/Dzēst laukus (kolonnas)" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Atjaunot vaicājumu" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Lietot tabulas" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Vai" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Un" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ielikt" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Dzēst" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Labot" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL vaicājums uz datubāzes %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "kaut viens no vārdiem" @@ -2837,8 +2859,8 @@ msgstr[1] "%s rezultāti tabulā %s" msgid "Delete the matches for the %s table?" msgstr "Dati tabulai" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2879,73 +2901,73 @@ msgstr "Tabulā(s):" msgid "Inside column:" msgstr "Tabulā(s):" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "S" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "Rindu skaits vienā lapā" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "P" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontālā" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontālā (pagriezti virsraksti)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikālā" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Izpildīt iegrāmatoto vaicājumu" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Kārtot pēc atslēgas" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2959,115 +2981,115 @@ msgstr "Kārtot pēc atslēgas" msgid "Options" msgstr "Darbības" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Daļēji teksti" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Pilni teksti" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Relāciju shēma" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relāciju shēma" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pārlūkprogrammas transformācija" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Nogalināt" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "vaicājumā" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Parādu rindas" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "kopā" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Drukas skats (ar pilniem tekstiem)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Rādīt PDF shēmu" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Links nav atrasts" @@ -3189,8 +3211,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Datubāzes" @@ -3206,11 +3228,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3228,9 +3250,9 @@ msgstr "" msgid "Query" msgstr "Vaicājums pēc parauga" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilēģijas" @@ -3239,7 +3261,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3342,51 +3364,51 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Meklēt datubāzē" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Meklēt datubāzē" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabula %s tika pārsaukta par %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3395,7 +3417,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3407,7 +3429,7 @@ msgstr "Operators" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3452,7 +3474,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" @@ -3812,7 +3834,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabulas" @@ -3823,9 +3845,10 @@ msgstr "Tabulas" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Dati" @@ -3949,33 +3972,33 @@ msgid "Disabled" msgstr "Izslēgts" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Struktūra" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4396,13 +4419,13 @@ msgstr "Kompresija" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4431,7 +4454,6 @@ msgstr "Glābjoša (escape) rakstzīme ir" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Aizvietot NULL ar" @@ -4478,25 +4500,24 @@ msgstr "Faila nosaukuma šablons" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s tabula(s)" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Iekļaut tabulas virsrakstu" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Tabulas virsraksts" @@ -4505,14 +4526,14 @@ msgid "Continued table caption" msgstr "Tabulas virsraksta turpinājums" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Etiķetes atslēga" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME tips" @@ -4554,7 +4575,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4567,7 +4588,7 @@ msgid "Use delayed inserts" msgstr "Lietot aizturētos INSERT" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Nepārbaudīt ārējās atslēgas" @@ -4584,7 +4605,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4594,7 +4615,7 @@ msgid "Export type" msgstr "Eksporta veids" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Iekļaut eksportu transakcijā" @@ -4649,7 +4670,6 @@ msgstr "Datubāzu eksporta opcijas" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV dati" @@ -4710,7 +4730,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4946,7 +4965,6 @@ msgid "Customize text input fields" msgstr "Datubāzu eksporta opcijas" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6059,9 +6077,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Parole" @@ -6228,7 +6248,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6250,19 +6269,16 @@ msgstr "Datubāzu eksporta opcijas" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV dati MS Excel formātā" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6318,27 +6334,27 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatbild" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6349,13 +6365,15 @@ msgid "Change password" msgstr "Mainīt paroli" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Nav paroles" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Atkārtojiet" @@ -6380,8 +6398,9 @@ msgstr "Izveidot jaunu datubāzi" msgid "Create" msgstr "Izveidot" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Nav privilēģiju" @@ -6392,12 +6411,12 @@ msgid "Create table" msgstr "Izveidot jaunu lapu" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nosaukums" @@ -6562,7 +6581,7 @@ msgid "View output as text" msgstr "Saglabāt kā failu" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7025,51 +7044,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tikai struktūra" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7142,11 +7161,11 @@ msgstr "" "Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL" "+bultiņas, lai pārvietotos jebkurā vietā" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7400,7 +7419,7 @@ msgstr "phpMyAdmin dokumentācija" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7514,84 +7533,84 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Rindas atdalītas ar" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Lauki iekļauti iekš" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Glābjoša (escape) rakstzīme ir" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Rindas atdalītas ar" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Aizvietot NULL ar" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel redakcija" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Datubāzu eksporta opcijas" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Dati tabulai" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Nosūtīts" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7599,25 +7618,25 @@ msgstr "Nosūtīts" msgid "Definition" msgstr "Apraksts" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tabulas struktūra tabulai" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Tikai struktūra" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7637,263 +7656,254 @@ msgstr "(turpinājums)" msgid "Structure of table @TABLE@" msgstr "Tabulas __TABLE__ struktūra" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Transformācijas opcijas" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Tabulas virsraksts" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Nepārbaudīt ārējās atslēgas" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Rādu kolonnu komentārus" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Pieejamie MIME tipi" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Hosts" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Izveidošanas laiks" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Servera versija" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP Versija" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "Eksports" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horizontālā (pagriezti virsraksti)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "Importēt failus" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Ievietot virsrakstā komentāru (\\n atdala rindas)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Parametrs" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Parametrs" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Transformācijas opcijas" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "Procesi" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "Funkcija" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Ierobežojumi tabulai" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPI TABULAI" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELĀCIJAS TABULAI" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Ļauj lasīt datus." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7962,6 +7972,10 @@ msgstr "Kolonnu nosaukumi" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -8017,6 +8031,10 @@ msgstr "MySQL 4.0 savietojams" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8260,11 +8278,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "Bez apraksta" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Neiezīmēt neko" @@ -8284,9 +8303,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Lietotājvārds" @@ -8322,34 +8342,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Jebkurš lietotājs" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Lietot teksta lauku" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Jebkurš hosts" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokāls" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Šis hosts" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Lietot hostu tabulu" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8363,7 +8392,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8401,8 +8430,8 @@ msgid "Edit event" msgstr "Nosūtīts" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8490,7 +8519,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8635,25 +8665,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8806,29 +8836,29 @@ msgstr "Tabulas nav atrastas šajā datubāzē." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabula \"%s\" neeksistē!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Lūdzu konfigurējiet koordinātes tabulai %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8978,6 +9008,469 @@ msgstr "" msgid "Current Server" msgstr "Serveris" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Nav privilēģiju." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Iekļauj visas privilēģijas, izņemot GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Ļauj lasīt datus." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Ļauj ievietot un mainīt datus." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Ļauj mainīt datus." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Ļauj dzēst datus." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Ļauj veidot jaunas datubāzes un tabulas." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Ļauj dzēst datubāzes un tabulas." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Ļauj apstādināt serveri." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Ļauj importēt/eksportēt datus no/uz failiem." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nedarbojas šajā MySQL versijā." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Ļauj veidot un dzēst indeksus." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Ļauj mainīt esošo tabulu struktūru." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Dod pieeju pilnam datubāzu sarakstam." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Ļauj pieslēgties pat tad, ja ir sasniegts maksimālais konekciju skaits; " +"Nepieciešams vairumam administratīvo operāciju, kā globālo mainīgo maiņa vai " +"citu lietotāju procesu nogalināšana." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Ļauj veidot pagaidu tabulas." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Ļauj bloķēt tabulas tekošajai darbībai." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Nepieciešams replikāciju kopijām." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +#, fuzzy +msgid "Allows creating new views." +msgstr "Ļauj veidot jaunas tabulas." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Ļauj veidot un dzēst indeksus." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +#, fuzzy +msgid "Allows creating stored routines." +msgstr "Ļauj veidot jaunas tabulas." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +#, fuzzy +msgid "Allows altering and dropping stored routines." +msgstr "Ļauj veidot un dzēst indeksus." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Nav" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Resursu ierobežojumi" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Ierobežo vaicājumu skaitu, ko lietotājs var mosūtīt uz serveri stundas laikā." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko " +"lietotājs var izpildīt stundas laikā." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Tabulu specifiskās privilēģijas" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administrācija" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globālās privilēģijas" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Datubāžu specifiskās privilēģijas" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Ļauj veidot jaunas tabulas." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Ļauj dzēst tabulas." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Ļauj pievienot lietotājus un privilēģijas bez privilēģiju tabulu " +"pārlādēšanas." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Piekļuves informācija" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Nemainīt paroli" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Lietotāja %s parole tika veiksmīgi mainīta." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Jūs atņēmāt privilēgijas lietotājam %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Lietotāji, kam ir pieja datubāzei "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Lietotājs" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Piešķirt" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +msgid "User has been added." +msgstr "Lauks %s tika izdzēsts" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Jebkurš" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globāls" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "datubāzei specifisks" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "aizstājējzīme" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Lietotāji netika atrasti." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Mainīt privilēģijas" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Atsaukt" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Eksports" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... paturēt veco lietotāju." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... dzēst veco lietotāju no lietotāju tabulas." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " +"viņu." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " +"privilēģijas." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Kolonnu specifiskās privilēģijas" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Pievienot privilēģijas uz sekojošo datubāzi" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Aizstājējzīmes _ un % jāaizsargā ar \\ priekšā, lai izmantotu tās burtiski" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Pievienot privilēģijas uz sekojošo tabulu" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Dzēst izvēlētos lietotājus" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Pārlādējam privilēģijas" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Jūs modificējāt privilēģijas objektam %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privilēģijas" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privilēģijas" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Lietotāju pārskats" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL " +"privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko " +"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " +"%spārlādēt privilēģijas%s pirms Jūs turpināt." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Jūs pievienojāt jaunu lietotāju." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9029,11 +9522,11 @@ msgstr "Kalendārs" msgid "Columns" msgstr "Kolonnu nosaukumi" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" @@ -9337,12 +9830,6 @@ msgstr "Servera versija" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Lietotājs" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9893,459 +10380,20 @@ msgstr "" msgid "disabled" msgstr "Izslēgts" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Iekļauj visas privilēģijas, izņemot GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Ļauj mainīt esošo tabulu struktūru." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -#, fuzzy -msgid "Allows altering and dropping stored routines." -msgstr "Ļauj veidot un dzēst indeksus." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Ļauj veidot jaunas datubāzes un tabulas." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -#, fuzzy -msgid "Allows creating stored routines." -msgstr "Ļauj veidot jaunas tabulas." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Ļauj veidot jaunas tabulas." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Ļauj veidot pagaidu tabulas." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -#, fuzzy -msgid "Allows creating new views." -msgstr "Ļauj veidot jaunas tabulas." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Ļauj dzēst datus." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Ļauj dzēst datubāzes un tabulas." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Ļauj dzēst tabulas." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Ļauj importēt/eksportēt datus no/uz failiem." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Ļauj pievienot lietotājus un privilēģijas bez privilēģiju tabulu " -"pārlādēšanas." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Ļauj veidot un dzēst indeksus." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Ļauj ievietot un mainīt datus." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Ļauj bloķēt tabulas tekošajai darbībai." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Ierobežo vaicājumu skaitu, ko lietotājs var mosūtīt uz serveri stundas laikā." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko " -"lietotājs var izpildīt stundas laikā." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nedarbojas šajā MySQL versijā." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Nepieciešams replikāciju kopijām." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Ļauj lasīt datus." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Dod pieeju pilnam datubāzu sarakstam." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Ļauj apstādināt serveri." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Ļauj pieslēgties pat tad, ja ir sasniegts maksimālais konekciju skaits; " -"Nepieciešams vairumam administratīvo operāciju, kā globālo mainīgo maiņa vai " -"citu lietotāju procesu nogalināšana." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Ļauj veidot un dzēst indeksus." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Ļauj mainīt datus." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Nav privilēģiju." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Nav" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Tabulu specifiskās privilēģijas" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administrācija" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globālās privilēģijas" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Datubāžu specifiskās privilēģijas" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Resursu ierobežojumi" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Piekļuves informācija" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Nemainīt paroli" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Lietotāji netika atrasti." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Jūs pievienojāt jaunu lietotāju." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Jūs modificējāt privilēģijas objektam %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Jūs atņēmāt privilēgijas lietotājam %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Lietotāja %s parole tika veiksmīgi mainīta." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Dzēšam %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Pārlādējam privilēģijas" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Mainīt privilēģijas" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Atsaukt" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Eksports" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Jebkurš" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilēģijas" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilēģijas" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Lietotāju pārskats" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Piešķirt" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Dzēst izvēlētos lietotājus" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL " -"privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko " -"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " -"%spārlādēt privilēģijas%s pirms Jūs turpināt." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Kolonnu specifiskās privilēģijas" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Pievienot privilēģijas uz sekojošo datubāzi" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Aizstājējzīmes _ un % jāaizsargā ar \\ priekšā, lai izmantotu tās burtiski" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Pievienot privilēģijas uz sekojošo tabulu" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... paturēt veco lietotāju." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... dzēst veco lietotāju no lietotāju tabulas." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " -"viņu." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " -"privilēģijas." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Lietotāji, kam ir pieja datubāzei "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globāls" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "datubāzei specifisks" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "aizstājējzīme" - -#: server_privileges.php:2590 -#, fuzzy -msgid "User has been added." -msgstr "Lauks %s tika izdzēsts" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11948,41 +11996,41 @@ msgstr "" msgid "Wrong data" msgstr "Nav datubāzu" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Vai Jūs tiešām gribat " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pārbaudīt SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL rezultāts" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Uzģenerēja" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Nosaukums" diff --git a/po/mk.po b/po/mk.po index 28df7c9141..86b1ec5a22 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: macedonian_cyrillic \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "прикажи ги сите" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Пребарување" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Пребарување" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "OK" @@ -108,7 +111,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Базата на податоци %1$s е креирана" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Коментар на базата на податоци: " @@ -118,17 +121,17 @@ msgstr "Коментар на базата на податоци: " msgid "Table comments" msgstr "Коментар на табелата" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Имиња на колони" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Тип" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Null" msgid "Default" msgstr "Default" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Врски кон" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Коментари" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Не" @@ -242,19 +248,22 @@ msgstr "Не" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Да" @@ -262,8 +271,8 @@ msgstr "Да" msgid "View dump (schema) of database" msgstr "Прикажи содржина (шема) на базата" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Табелите не се пронајдени во базата на податоци." @@ -279,77 +288,77 @@ msgstr "ништо" msgid "The database name is empty!" msgstr "Името на базата на податоци не е зададено!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Базата на податоци %s е преименувана во %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Базата на податоци %s е ископирана во %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Избриши ја базата на податоци." -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Базата на податоци %s не е прифатена" -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "Базата на податоци не постои" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Копирај ја базата на податоци во" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Структура и податоци" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Само податоци" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пред копирање" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Додади ограничувања" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Префрли се на копираната база на податоци" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -359,7 +368,7 @@ msgstr "Префрли се на копираната база на подато msgid "Collation" msgstr "Подредување" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -371,7 +380,7 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -383,16 +392,18 @@ msgstr "Релациона шема" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Табела" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Записи" @@ -402,13 +413,13 @@ msgid "Size" msgstr "Големина" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "се користи" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -416,7 +427,7 @@ msgstr "Направено" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -424,7 +435,7 @@ msgstr "Последна измена" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -438,97 +449,16 @@ msgid_plural "%s tables" msgstr[0] "%s табела" msgstr[1] "%s табела" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Морате да изберете барем една колона за приказ" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Растечки редослед" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Опаѓачки редослед" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Подредуваање" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Прикажи" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Критериум" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Додади/избриши поле за критериум" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Додади/избриши колона" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Ажурирај" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Користи табели" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "или" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "и" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Промени" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Премини на копираната табела" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL упит на базата на податоци %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Изврши SQL" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -571,7 +501,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -600,20 +530,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s е основно складиште на овој MySQL сервер." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Обележаното:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "обележи ги сите" @@ -621,31 +552,32 @@ msgstr "обележи ги сите" msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Испразни" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -689,17 +621,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "База на податоци" @@ -717,18 +650,26 @@ msgstr "Ажурирано" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Статус" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Акција" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Прикажи" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Избришете го податоците за тракирање од табелава" @@ -775,22 +716,22 @@ msgstr "База на податоци" msgid "Bad type!" msgstr "Вид на упит" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Додади ново поле" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Нема доволно простор за снимање на податотеката %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -798,12 +739,12 @@ msgstr "" "Податотека %s постои на серверот, променете го името на податотеката или " "изберете опција за пишување врз неа." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "На веб серверот не му е допуштено да ја сочува податотеката %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Содржината на базата на податоци е сочувана во податотеката %s." @@ -827,7 +768,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -909,27 +850,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Маркерот е избришан." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Податотеката не е можно да се прочита" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -937,46 +878,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -991,7 +932,7 @@ msgstr "Назад" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin преферира веб прелистувачи кои подржуваат рамки." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" командата е оневозможена." @@ -1001,7 +942,7 @@ msgstr "\"DROP DATABASE\" командата е оневозможена." msgid "Do you really want to execute \"%s\"?" msgstr "Дали навистина сакате да " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!" @@ -1072,16 +1013,20 @@ msgstr "Името на host-от е празно!" msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1106,9 +1051,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1378,12 +1323,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "нема" @@ -1570,10 +1516,10 @@ msgid "Explain output" msgstr "Објасни SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Време" @@ -1921,7 +1867,7 @@ msgstr "SQL упит" msgid "No rows selected" msgstr "Нема селектирани записи" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Промени" @@ -1930,8 +1876,8 @@ msgstr "Промени" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -2012,7 +1958,7 @@ msgstr "Големина на покажувачите на податоци" msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Копирај" @@ -2555,14 +2501,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Грешка" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL упит" @@ -2573,7 +2519,7 @@ msgstr "SQL упит" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2602,6 +2548,10 @@ msgstr "без PHP код" msgid "Create PHP Code" msgstr "Направи PHP код" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Изврши SQL" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2628,7 +2578,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Складишта" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2657,7 +2607,7 @@ msgstr "Рутини" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2666,7 +2616,7 @@ msgstr "Почеток" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2676,7 +2626,7 @@ msgstr "Претходна" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2686,7 +2636,7 @@ msgstr "Следен" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2709,16 +2659,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" @@ -2726,21 +2677,20 @@ msgstr "Структура" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Нов запис" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Преглед" @@ -2762,21 +2712,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Печати" @@ -2793,6 +2743,78 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Растечки редослед" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Опаѓачки редослед" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Подредуваање" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Критериум" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Додади/избриши поле за критериум" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Додади/избриши колона" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Ажурирај" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Користи табели" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "или" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "и" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Промени" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL упит на базата на податоци %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "барем еден од зборовите" @@ -2836,8 +2858,8 @@ msgstr[1] "%s погодоци во табелата %s" msgid "Delete the matches for the %s table?" msgstr "Приказ на податоци од табелата" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2878,74 +2900,74 @@ msgstr "во табела(и):" msgid "Inside column:" msgstr "во табела(и):" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy msgid "Save edited data" msgstr "Основен директориум на податоците" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Додади/избриши колона" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Саб" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "Број на записи на страница" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Пон" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "хоризонтален" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "хоризонтален (ротирани заглавија)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "вертикален" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Изврши запамтен упит" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Подредување по клуч" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2959,69 +2981,69 @@ msgstr "Подредување по клуч" msgid "Options" msgstr "Операции" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Дел на текстот" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Полн текст" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Релациона шема" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Релациона шема" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Транформации на веб прелистувачот" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Записот е избришан" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Прекини" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -3029,47 +3051,47 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "во упитот" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Приказ на записи од" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "вкупно" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Преглед за печатење (целосен текст)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF шема" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Врската не е пронајдена" @@ -3193,8 +3215,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "База на податоци" @@ -3210,11 +3232,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3232,9 +3254,9 @@ msgstr "" msgid "Query" msgstr "Упит по пример" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Привилегии" @@ -3243,7 +3265,7 @@ msgid "Routines" msgstr "Рутини" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3346,51 +3368,51 @@ msgstr "%s е оневозможен на овој MySQL сервер." msgid "This MySQL server does not support the %s storage engine." msgstr "Овој MySQL сервер не подржува %s вид на складиште." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Пребарување низ базата на податоци" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Пребарување низ базата на податоци" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Табелата %s е преименувана во %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3399,7 +3421,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функција" @@ -3411,7 +3433,7 @@ msgstr "Оператор" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3456,7 +3478,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" @@ -3816,7 +3838,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Табели" @@ -3827,9 +3849,10 @@ msgstr "Табели" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Податоци" @@ -3954,33 +3977,33 @@ msgid "Disabled" msgstr "Оневозможено" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Структура" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4404,13 +4427,13 @@ msgstr "Компресија" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4439,7 +4462,6 @@ msgstr "Escape карактер      " #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Замени NULL со" @@ -4486,25 +4508,24 @@ msgstr "Шаблон на име на податотека" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s табела" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Вклучи и коментар на табелата" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Коментар на табела" @@ -4513,14 +4534,14 @@ msgid "Continued table caption" msgstr "Продолжен коментар на табелите" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Ознака на клучот" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-типови" @@ -4562,7 +4583,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4575,7 +4596,7 @@ msgid "Use delayed inserts" msgstr "Користи одложен внес" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Исклучи проверка на надворешни клучеви" @@ -4592,7 +4613,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4602,7 +4623,7 @@ msgid "Export type" msgstr "Тип на извоз" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Изврши извоз во трансакција" @@ -4657,7 +4678,6 @@ msgstr "Опции за извоз на бази на податоци" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV формат" @@ -4719,7 +4739,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4957,7 +4976,6 @@ msgid "Customize text input fields" msgstr "Опции за извоз на бази на податоци" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6074,9 +6092,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Лозинка" @@ -6243,7 +6263,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6265,19 +6284,16 @@ msgstr "Опции за извоз на бази на податоци" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6333,7 +6349,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6341,21 +6357,21 @@ msgid "" "configured)." msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Серверот не одговара" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6366,13 +6382,15 @@ msgid "Change password" msgstr "Промена на лозинка" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Нема лозинка" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Повтори внес" @@ -6397,8 +6415,9 @@ msgstr "Креирај нова база на податоци" msgid "Create" msgstr "Креирај" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Нема привилегии" @@ -6409,12 +6428,12 @@ msgid "Create table" msgstr "Направи нова страница" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Име" @@ -6579,7 +6598,7 @@ msgid "View output as text" msgstr "Сочувај како податотека" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7062,51 +7081,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7181,11 +7200,11 @@ msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7439,7 +7458,7 @@ msgstr "phpMyAdmin документација" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7554,84 +7573,84 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Линиите се завршуваат со" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Полињата се раздвоени со" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Escape карактер      " -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Линиите се завршуваат со" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Замени NULL со" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel издание" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Опции за извоз на бази на податоци" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Приказ на податоци од табелата" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Пратено" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7639,25 +7658,25 @@ msgstr "Пратено" msgid "Definition" msgstr "Опис" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Структура на табелата" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Само структура" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7677,264 +7696,255 @@ msgstr "(продолжува)" msgid "Structure of table @TABLE@" msgstr "Структура на табелата __TABLE__" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Опции на трансформацијата" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Коментар на табела" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Исклучи проверка на надворешни клучеви" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Прикажувам коментари на колоните" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Достапни MIME-типови" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Host" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Време на креирање" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Верзија на серверот" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP верзија" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "Извоз" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "хоризонтален (ротирани заглавија)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "Увоз на податотека" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Додади коментар во заглавие (користи \\n за нов ред)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Име" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Име" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Опции на трансформацијата" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "Функција" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Ограничувања за табелите" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛА" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ НА ТАБЕЛИТЕ" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Дозволува читање на податоци." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Поглед" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -8003,6 +8013,10 @@ msgstr "Имиња на колони" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -8058,6 +8072,10 @@ msgstr "MySQL 4.0 компатибилно" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8318,11 +8336,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "нема опис" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "ниедно" @@ -8342,9 +8361,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Назив на корисник" @@ -8380,34 +8400,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Било кој корисник" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Користи текст поле" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Било кој host" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Овој host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Користи ја табелата на host-от" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8421,7 +8450,7 @@ msgstr "Генерирање на лозинка" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8459,8 +8488,8 @@ msgid "Edit event" msgstr "Пратено" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy msgid "Error in processing request" @@ -8547,7 +8576,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8694,26 +8724,26 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Дозволува извршување на stored рутини." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Дозволува извршување на stored рутини." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8868,29 +8898,29 @@ msgstr "Табелите не се пронајдени во базата на msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Табелата \"%s\" не постои!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Подесете ги координатите за табелата %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9040,6 +9070,474 @@ msgstr "" msgid "Current Server" msgstr "Сервер" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Нема привилегии." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Ги вклучува сите привилегии освен GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Дозволува читање на податоци." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Дозволува вметнување и замена на података." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Дозволува измена на податоци." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Дозволува бришење на податоци." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Дозволува креирање на нови бази на податоци и табели." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Дозволува бришење на бази на податоци и табели." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот " +"на серверот." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Дозволува гасење на серверот." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Дозволува увоз на податоци и нивен извоз во податотеки." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Нема ефект во оваа верзији на MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Дозволува креирање и бришење на клучева." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Дозволува промена на структурата на постоечките табели." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Дава пристап на комплетната листа на базите на податоци." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +" Дозволува поврзување иако е постигнат макслималниот број на врски; " +"Неопходно за повеќето административни опции како што е подесување на " +"глобални променливи или прекин на процеси наостанатите корисници." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Дозволува креирање на привремени табели..." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Дозволува заклучување на табели на тековните процеси." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Потребно заради помошните сервери за репликација." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Дава права на кориснику да праша каде се главните/помошни сервери." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Дозволува креирање на нови погледи." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Дозволува креирање и бришење на клучева." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Дозволува извршување на SHOW CREATE VIEW упити." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Дозволува креирање на stored рутини." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Дозволува промена и бришење на stored рутини." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Дозволува извршување на stored рутини." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "нема" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ограничување на ресурси" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува " +"ограничувањата." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Го ограничува бројот на упити кои корисникот може да ги постави на серверот " +"за еден час." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Го ограничува бројот на команди кои ги менуваат табелите или базите на " +"податоци кои корисникот може да ги изврши за еден час." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " +"еден час." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " +"еден час." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Привилегии поврзани со табелата" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" +"Напомена: MySQL имињата на привилегите мора да бидат со латинични букви" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Администрација" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Глобални привилегии" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Привилегии во врска со базата на податоци" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Дозволува креирање на нови табела." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Дозволува бришење на табели." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Дозволува додавање на корисници и привилегии без повтроно вчитавање на " +"табелата на привилегии." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Податоци за најавувањето" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Немој да ја менуваш лозинката" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Лозинката за %s успешно е променета." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Ги забранивте привилегиите за %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Провери привилегии за базата на податоци "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Корисници кои имаат пристап "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Корисник" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Овозможи" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Прегледот %s е избришан" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Било кој" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "глобално" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Специфично за базата на податоци" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "џокер" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Корисникот не е пронајден." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Промена на привилегии" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Забрани" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Извоз" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... сочувај го стариот." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... избриши ги старите од табелата на корисници." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... прво одземи ги сите привилегии на корисниците а потоа избриши ги." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... избриши го стариот корисник од табелата на корисници а потоа повторно " +"вчитај ги привилегиите." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Направи нов корисник со исти привилегии и ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Привилегии врзани за колоните" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Додади привилегии на следната база" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Додади привилегии на следната табела" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Избриши ги селектираните корисници" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Избриши ги базите на податоци кои се именувани исто како и корисниците." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Повторно ги вчитувам привилегиите" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Изабраните корисници успешно се избришани." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Ги ажуриравте привилегиите за %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Привилегии" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Привилегии" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Преглед на корисници" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL " +"табелата на привилегии. Содржината на оваа табела табела може да се " +"разликува од привилегиите кои серверот ги користи ако се вршени мануелни " +"измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " +"продолжите со работа." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Додадовте нов корисник." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9091,11 +9589,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имиња на колони" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." @@ -9397,12 +9895,6 @@ msgstr "Верзија на серверот" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Корисник" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9959,464 +10451,20 @@ msgstr "" msgid "disabled" msgstr "Оневозможено" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Ги вклучува сите привилегии освен GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Дозволува промена на структурата на постоечките табели." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Дозволува промена и бришење на stored рутини." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Дозволува креирање на нови бази на податоци и табели." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Дозволува креирање на stored рутини." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Дозволува креирање на нови табела." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Дозволува креирање на привремени табели..." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Дозволува креирање на нови погледи." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Дозволува бришење на податоци." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Дозволува бришење на бази на податоци и табели." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Дозволува бришење на табели." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Дозволува извршување на stored рутини." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Дозволува увоз на податоци и нивен извоз во податотеки." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Дозволува додавање на корисници и привилегии без повтроно вчитавање на " -"табелата на привилегии." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Дозволува креирање и бришење на клучева." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Дозволува вметнување и замена на података." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Дозволува заклучување на табели на тековните процеси." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " -"еден час." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Го ограничува бројот на упити кои корисникот може да ги постави на серверот " -"за еден час." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Го ограничува бројот на команди кои ги менуваат табелите или базите на " -"податоци кои корисникот може да ги изврши за еден час." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " -"еден час." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Нема ефект во оваа верзији на MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот " -"на серверот." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Дава права на кориснику да праша каде се главните/помошни сервери." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Потребно заради помошните сервери за репликација." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Дозволува читање на податоци." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Дава пристап на комплетната листа на базите на податоци." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Дозволува извршување на SHOW CREATE VIEW упити." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Дозволува гасење на серверот." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -" Дозволува поврзување иако е постигнат макслималниот број на врски; " -"Неопходно за повеќето административни опции како што е подесување на " -"глобални променливи или прекин на процеси наостанатите корисници." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Дозволува креирање и бришење на клучева." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Дозволува измена на податоци." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Нема привилегии." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "нема" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Привилегии поврзани со табелата" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" -"Напомена: MySQL имињата на привилегите мора да бидат со латинични букви" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Администрација" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Глобални привилегии" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Привилегии во врска со базата на податоци" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ограничување на ресурси" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува " -"ограничувањата." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Податоци за најавувањето" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Немој да ја менуваш лозинката" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Корисникот не е пронајден." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s веќе постои!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Додадовте нов корисник." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Ги ажуриравте привилегиите за %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Ги забранивте привилегиите за %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Лозинката за %s успешно е променета." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Бришам %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Повторно ги вчитувам привилегиите" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Изабраните корисници успешно се избришани." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Промена на привилегии" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Забрани" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Извоз" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Било кој" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Привилегии" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Привилегии" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Преглед на корисници" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Овозможи" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Избриши ги селектираните корисници" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Избриши ги базите на податоци кои се именувани исто како и корисниците." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL " -"табелата на привилегии. Содржината на оваа табела табела може да се " -"разликува од привилегиите кои серверот ги користи ако се вршени мануелни " -"измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " -"продолжите со работа." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Привилегии врзани за колоните" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Додади привилегии на следната база" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Додади привилегии на следната табела" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Направи нов корисник со исти привилегии и ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... сочувај го стариот." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... избриши ги старите од табелата на корисници." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... прво одземи ги сите привилегии на корисниците а потоа избриши ги." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... избриши го стариот корисник од табелата на корисници а потоа повторно " -"вчитај ги привилегиите." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Провери привилегии за базата на податоци "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Корисници кои имаат пристап "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "глобално" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Специфично за базата на податоци" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "џокер" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Прегледот %s е избришан" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -12019,41 +12067,41 @@ msgstr "" msgid "Wrong data" msgstr "Базата на податоци не постои" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Дали навистина сакате да " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL резултат" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Генерирал" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Назив" diff --git a/po/ml.po b/po/ml.po index 8117d3fcb5..bbb89a4af3 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2011-09-27 08:42+0200\n" "Last-Translator: \n" "Language-Team: Malayalam \n" @@ -17,7 +17,8 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "എല്ലാം കാണിക്കൂ" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "തിരയൂ" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "തിരയൂ" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "പോകൂ" @@ -107,7 +110,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "വിവരശേഖര അഭിപ്രായം: " @@ -117,17 +120,17 @@ msgstr "വിവരശേഖര അഭിപ്രായം: " msgid "Table comments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -139,34 +142,34 @@ msgstr "നിര" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "തരം" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -175,13 +178,13 @@ msgid "Null" msgstr "ശൂന്യം" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -189,10 +192,10 @@ msgstr "ശൂന്യം" msgid "Default" msgstr "സ്വതേ" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -201,10 +204,10 @@ msgstr "കണ്ണികൾ" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -215,18 +218,21 @@ msgstr "അഭിപ്രായങ്ങൾ" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "ഇല്ല" @@ -239,19 +245,22 @@ msgstr "ഇല്ല" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "അതേ" @@ -259,8 +268,8 @@ msgstr "അതേ" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "വിവരശേഖരത്തിൽ ഒരു പട്ടികയും കണ്ടെത്താനായില്ല." @@ -276,76 +285,76 @@ msgstr "ഒന്നും തിരഞ്ഞെടുക്കാതിരി msgid "The database name is empty!" msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് മാറ്റിയിരിക്കുന്നു" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് പകർത്തിയിരിക്കുന്നു" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "വിവരശേഖരത്തിന്റ്റ പേര് മാറ്റുക" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "വിവരശേഖരം നീക്കുക" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "വിവരശേഖരം ഉപേക്ഷിക്കുക (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "വിവരശേഖരം പകർത്തുക" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "ഘടന മാത്രം" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "ഘടനയും വിവരവും" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "വിവരം മാത്രം" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s ചേർക്കുക" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -355,14 +364,14 @@ msgstr "" msgid "Collation" msgstr "നിബന്ധന" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "" @@ -372,16 +381,18 @@ msgstr "" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "പട്ടിക" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "വരികൾ" @@ -391,13 +402,13 @@ msgid "Size" msgstr "വലിപ്പം" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "ഉപയോഗത്തിൽ" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -405,7 +416,7 @@ msgstr "സൃഷ്‌ടി" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -413,7 +424,7 @@ msgstr "അവസാനം നവീകരിച്ചത്" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -426,92 +437,15 @@ msgid_plural "%s tables" msgstr[0] "%s പട്ടിക" msgstr[1] "%s പട്ടികകൾ" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "ആരോഹണം" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "അവരോഹണം" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "തരംതിരിക്കുക" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "പ്രദർശിപ്പിക്കുക" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "മാനദണ്ഡം" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "മാനദണ്ഡ വരികൾ ചേർക്കുക/മായക്കുക" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "അഭ്യര്‍ത്ഥന നവീകറിക്കുക" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "പട്ടികകൾ ഉപയോഗിക്കുക" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "അല്ലെനങ്കിൽ" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "ഉം" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "ചേര്‍ക്കുക" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "മായ്ക്കുക" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "തിരുത്തുക" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -552,7 +486,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -580,20 +514,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "" @@ -601,31 +536,32 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -669,17 +605,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "" @@ -697,18 +634,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "പ്രദർശിപ്പിക്കുക" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -749,31 +694,31 @@ msgstr "" msgid "Bad type!" msgstr "" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -796,7 +741,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -867,27 +812,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -895,46 +840,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -949,7 +894,7 @@ msgstr "" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -958,7 +903,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1016,16 +961,20 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "" @@ -1045,9 +994,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1291,12 +1240,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "" @@ -1466,10 +1416,10 @@ msgid "Explain output" msgstr "" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "" @@ -1757,7 +1707,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "" @@ -1766,8 +1716,8 @@ msgstr "" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1838,7 +1788,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2311,14 +2261,14 @@ msgid "en" msgstr "" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "" @@ -2329,7 +2279,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2358,6 +2308,10 @@ msgstr "" msgid "Create PHP Code" msgstr "" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2382,7 +2336,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2409,14 +2363,14 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2424,7 +2378,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2432,7 +2386,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "" @@ -2453,16 +2407,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "" @@ -2470,21 +2425,20 @@ msgstr "" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "" @@ -2505,21 +2459,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "അച്ചടിക്കുക" @@ -2536,6 +2490,74 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "ആരോഹണം" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "അവരോഹണം" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "തരംതിരിക്കുക" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "മാനദണ്ഡം" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "മാനദണ്ഡ വരികൾ ചേർക്കുക/മായക്കുക" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "അഭ്യര്‍ത്ഥന നവീകറിക്കുക" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "പട്ടികകൾ ഉപയോഗിക്കുക" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "അല്ലെനങ്കിൽ" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "ഉം" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "ചേര്‍ക്കുക" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "മായ്ക്കുക" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "തിരുത്തുക" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "" @@ -2576,8 +2598,8 @@ msgstr[1] "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2612,64 +2634,64 @@ msgstr "" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2682,103 +2704,103 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "" @@ -2896,8 +2918,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "" @@ -2913,11 +2935,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -2935,9 +2957,9 @@ msgstr "" msgid "Query" msgstr "" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "" @@ -2946,7 +2968,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3042,51 +3064,51 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് മാറ്റിയിരിക്കുന്നു" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3095,7 +3117,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3107,7 +3129,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3146,7 +3168,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3493,7 +3515,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "" @@ -3504,9 +3526,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "" @@ -3620,32 +3643,32 @@ msgid "Disabled" msgstr "" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "" @@ -4045,13 +4068,13 @@ msgstr "" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "" @@ -4074,7 +4097,6 @@ msgstr "" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4114,23 +4136,22 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4139,14 +4160,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "" @@ -4183,7 +4204,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4196,7 +4217,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4213,7 +4234,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4222,7 +4243,7 @@ msgid "Export type" msgstr "" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4275,7 +4296,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "" @@ -4334,7 +4354,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "" @@ -4551,7 +4570,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5617,9 +5635,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5781,7 +5801,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -5803,19 +5822,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -5871,25 +5887,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -5900,13 +5916,15 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "" @@ -5927,8 +5945,9 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "" @@ -5938,12 +5957,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "" @@ -6077,7 +6096,7 @@ msgid "View output as text" msgstr "" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "" @@ -6527,51 +6546,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "വിവരശേഖരം പകർത്തുക" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6640,11 +6659,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6890,7 +6909,7 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -6997,93 +7016,93 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7099,238 +7118,227 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +msgid "Data creation options" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7397,6 +7405,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7450,6 +7462,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7633,11 +7649,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "" @@ -7657,9 +7674,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -7694,34 +7712,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7735,7 +7762,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7771,8 +7798,8 @@ msgid "Edit event" msgstr "" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -7848,7 +7875,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -7976,25 +8004,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8123,28 +8151,28 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8279,6 +8307,432 @@ msgstr "" msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8325,11 +8779,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8579,12 +9033,6 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "" - #: main.php:217 msgid "Server charset" msgstr "" @@ -9073,422 +9521,20 @@ msgstr "" msgid "disabled" msgstr "" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11032,37 +11078,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" diff --git a/po/mn.po b/po/mn.po index cc0bd16f8d..10a3b1843f 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -14,7 +14,8 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Бүгдийг харах" @@ -38,16 +39,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Хайх" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -57,24 +58,26 @@ msgstr "Хайх" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Яв" @@ -106,7 +109,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " @@ -116,17 +119,17 @@ msgstr "ӨС-ийн тайлбар: " msgid "Table comments" msgstr "Хүснэгтийн тайлбар" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -140,34 +143,34 @@ msgstr "Баганын нэрс" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Төрөл" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -176,13 +179,13 @@ msgid "Null" msgstr "Хоосон" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -190,10 +193,10 @@ msgstr "Хоосон" msgid "Default" msgstr "Анхдагч" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -202,10 +205,10 @@ msgstr "Холбоос" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -216,18 +219,21 @@ msgstr "Тайлбар" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Үгүй" @@ -240,19 +246,22 @@ msgstr "Үгүй" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Тийм" @@ -260,8 +269,8 @@ msgstr "Тийм" msgid "View dump (schema) of database" msgstr "ӨС-ийн схем харах" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "ӨС-д хүснэгт олдсонгүй." @@ -277,80 +286,80 @@ msgstr "Бүх сонгосныг болих" msgid "The database name is empty!" msgstr "Өгөгдлийн сангийн нэр хоосон!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "ӨС %s-н нэр нь %s-ээр солигджээ" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "ӨС %s нь %s руу хуулагдлаа" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s өгөгдлийн сан устгагдсан." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Зөвхөн бүтэц" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Зөвхөн өгөгдөл" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "хуулахын өмнө CREATE DATABASE" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Нэмэх %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Тогтмол нэмэх" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Хуулагдсан ӨС руу шилжих" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -360,7 +369,7 @@ msgstr "Хуулагдсан ӨС руу шилжих" msgid "Collation" msgstr "Жишилт" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -372,7 +381,7 @@ msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -384,16 +393,18 @@ msgstr "Хамааралтай схем" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Хүснэгт " #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Мөрүүд" @@ -403,13 +414,13 @@ msgid "Size" msgstr "Хэмжээ" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "хэрэглэгдэж байна" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -417,7 +428,7 @@ msgstr "Үүсгэлт" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -425,7 +436,7 @@ msgstr "Сүүлийн шинэчлэл" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -439,97 +450,16 @@ msgid_plural "%s tables" msgstr[0] "%s хүснэгт(үүд)" msgstr[1] "%s хүснэгт(үүд)" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Харуулахын тулд ядаж нэг багана сонго" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Өсөхөөр" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Буурахаар" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Эрэмбэлэх" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Харах" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Хэмжүүр" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Мөр Нэмэх/устгах" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Багана нэмэх/устгах" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Update асуулт" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Хүснэгт хэрэглэх" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Эсвэл" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "БА" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Оруулах" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Устгах" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Өөрчлөх" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Хуулагдсан хүснэгт рүү шилжих" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "ӨС %s дахь SQL-асуулт:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Асуултыг илгээх" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -572,7 +502,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -600,20 +530,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Сонгогдсонтой:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Бүгдийг чагтлах" @@ -621,31 +552,32 @@ msgstr "Бүгдийг чагтлах" msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Гаргах" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Хоосон" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -693,17 +625,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "ӨС" @@ -721,18 +654,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Статус" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Үйлдэл" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Харах" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -774,34 +715,34 @@ msgstr "" msgid "Bad type!" msgstr "Асуултын төрөл" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Шинэ талбар нэмэх" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Файл %s-г хадгалах зай хүрэлцэхгүй байна." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "Файл %s нь сервэр дээр байна, нэрээ соль эсвэл давхарлах сонголтыг шалга." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сервэр файл %s-г хадгалахад зөвшөөрөлгүй байна." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Асгалт %s файлд хадгалагдсан." @@ -826,7 +767,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -907,27 +848,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Тэмдэглэл харуулах" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Тэмдэглэгээ устгагдсан." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Файл уншигдахгүй байна" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -935,46 +876,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Оруулах нэмэлтүүд дуудагдсангүй, суулгацаа шалгана уу!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Оруулалт амжилттай дууслаа, %d асуудал ажиллав." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -989,7 +930,7 @@ msgstr "Өмнөх" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin нь ямар ч хөтөч дээр фрейм гаргах чадвартай." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"ӨС устгах\" нь хаалттай." @@ -999,7 +940,7 @@ msgstr "\"ӨС устгах\" нь хаалттай." msgid "Do you really want to execute \"%s\"?" msgstr "Та үнэхээр " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?" @@ -1070,16 +1011,20 @@ msgstr "Хостын нэр хоосон!" msgid "The user name is empty!" msgstr "Хэрэглэгчийн нэр хоосон!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Нууц үг хоосон байна!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1105,9 +1050,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1384,12 +1329,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Байхгүй" @@ -1578,10 +1524,10 @@ msgid "Explain output" msgstr "SQL тайлбар" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Цаг" @@ -1938,7 +1884,7 @@ msgstr "SQL асуудал харуулах" msgid "No rows selected" msgstr "Сонгогдсон мөргүй" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Солих" @@ -1947,8 +1893,8 @@ msgstr "Солих" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d нь мөрийн буруу дугаар байна." @@ -2031,7 +1977,7 @@ msgstr "Өгөгдөл заагчийн хэмжээ" msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Хуулах" @@ -2576,14 +2522,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Алдаа" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-асуулт" @@ -2594,7 +2540,7 @@ msgstr "SQL-асуулт" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2623,6 +2569,10 @@ msgstr "PHP-кодгүй" msgid "Create PHP Code" msgstr "PHP-код үүсгэх" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Асуултыг илгээх" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2649,7 +2599,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Хөдөлгүүрүүд" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2678,7 +2628,7 @@ msgstr "Шинэ талбар нэмэх" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2687,7 +2637,7 @@ msgstr "Эхлэл" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2697,7 +2647,7 @@ msgstr "Өмнөх" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2707,7 +2657,7 @@ msgstr "Цааш" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2730,16 +2680,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Бүтэц" @@ -2747,21 +2698,20 @@ msgstr "Бүтэц" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Оруулах" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Хөтлөх" @@ -2783,21 +2733,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Хэвлэх" @@ -2814,6 +2764,78 @@ msgstr "" msgid "Font size" msgstr "Үсгийн хэмжээ" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Өсөхөөр" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Буурахаар" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Эрэмбэлэх" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Хэмжүүр" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Мөр Нэмэх/устгах" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Багана нэмэх/устгах" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Update асуулт" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Хүснэгт хэрэглэх" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Эсвэл" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "БА" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Оруулах" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Устгах" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Өөрчлөх" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "ӨС %s дахь SQL-асуулт:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "Үгүүдийн ядаж нэгээр" @@ -2857,8 +2879,8 @@ msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" msgid "Delete the matches for the %s table?" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2899,71 +2921,71 @@ msgstr "Хүснэгт(үүд) дотор:" msgid "Inside column:" msgstr "Хүснэгт(үүд) дотор:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Багана нэмэх/устгах" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Талбаруудын тоо" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Да" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "хөндлөн" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "босоо" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Түлхүүрээр эрэмбэлэх" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2976,115 +2998,115 @@ msgstr "Түлхүүрээр эрэмбэлэх" msgid "Options" msgstr "Сонголтууд" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Бичвэрийн зарим хэсэг" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Бүтэн бичвэр" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Хамааралтай схем" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Хөтчийн өөрчлөл" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Мөр устгагдсан" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Алах" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "May be approximate. See FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "асуултад" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Мөрүүдийг харуулж байна " -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "Нийт" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схем харуулах" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Холбоос олдсонгүй" @@ -3204,8 +3226,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Өгөгдлийн сангууд" @@ -3221,11 +3243,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3243,9 +3265,9 @@ msgstr "Өгөгдлийн сан хоосон санагдаж байна!" msgid "Query" msgstr "Асуулт (Query)" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Онцгой эрхүүд" @@ -3254,7 +3276,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3360,54 +3382,54 @@ msgstr "%s нь уг MySQL сервэр дээр хаалттай байна." msgid "This MySQL server does not support the %s storage engine." msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Дагавар төлвийг харуулах" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Сэдэв %s олдсонгүй!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Буруу өгөгдлийн сан" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Хүснэгтийн буруу нэр" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3416,7 +3438,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функц" @@ -3428,7 +3450,7 @@ msgstr "Оператор" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3473,7 +3495,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3836,7 +3858,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Хүснэгт" @@ -3847,9 +3869,10 @@ msgstr "Хүснэгт" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Өгөгдөл" @@ -3978,32 +4001,32 @@ msgid "Disabled" msgstr "Хаагдсан" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4427,13 +4450,13 @@ msgstr "Шахалт" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4462,7 +4485,6 @@ msgstr "Талбарыг нээсэн" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL-ыг орлуулах нь" @@ -4506,25 +4528,24 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s хүснэгт(үүд)" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Хүснэгтийн гарчиг холбогдсон" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Хүснэгтийн гарчиг" @@ -4533,14 +4554,14 @@ msgid "Continued table caption" msgstr "Үргэлжилсэн хүснэгтийн гарчиг" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Label key" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-төрөл" @@ -4581,7 +4602,7 @@ msgid "SQL compatibility mode" msgstr "SQL нийцтэй горим" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4594,7 +4615,7 @@ msgid "Use delayed inserts" msgstr "Давталттай оруулалт хэрэглэх" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Гадаад түлхүүр шалгалтыг хаах" @@ -4611,7 +4632,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Үүсгэгдсэн асуудлын хамгийн их урт" @@ -4622,7 +4643,7 @@ msgid "Export type" msgstr "Гаргах" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Хэлэлцээр дэх гаргалтыг хаах" @@ -4677,7 +4698,6 @@ msgstr "Асуудлын үр дүнгийн үйлдэл" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4738,7 +4758,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4971,7 +4990,6 @@ msgid "Customize text input fields" msgstr "Бичвэр талбар хэрэглэх" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6079,9 +6097,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Нууц үг" @@ -6247,7 +6267,6 @@ msgstr "CSV хэрэглэх нь LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6271,19 +6290,16 @@ msgstr "ӨС гаргах сонголтууд" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV өгөгдлийг MS Excel-ээр" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6339,7 +6355,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6347,21 +6363,21 @@ msgid "" "configured)." msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервэрээс хариу алга" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6372,13 +6388,15 @@ msgid "Change password" msgstr "Нууц үг солих" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Нууц үггүй" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Дахин бич" @@ -6403,8 +6421,9 @@ msgstr "Шинэ ӨС үүсгэх" msgid "Create" msgstr "Үүсгэх" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Онцгой эрхгүй" @@ -6414,12 +6433,12 @@ msgid "Create table" msgstr "Хүснэгт үүсгэх" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Нэр" @@ -6591,7 +6610,7 @@ msgid "View output as text" msgstr "Илгээх" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7082,53 +7101,53 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "ӨС байхгүй" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Хүснэгт алга" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Зөвхөн бүтэц" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7201,11 +7220,11 @@ msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7459,7 +7478,7 @@ msgstr "phpMyAdmin баримтжилт" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7572,84 +7591,84 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Шугамыг төгсгөгч" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Талбарыг хаасан" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Талбарыг нээсэн" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Шугамыг төгсгөгч" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "NULL-ыг орлуулах нь" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel-засвар" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy #| msgid "Database export options" msgid "Data dump options" msgstr "ӨС гаргах сонголтууд" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Үзэгдэл" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7657,24 +7676,24 @@ msgstr "Үзэгдэл" msgid "Definition" msgstr "Тайлбар" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Хүснэгтийн бүтэц" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Харах бүтэц" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7694,263 +7713,254 @@ msgstr "(үргэлжилнэ)" msgid "Structure of table @TABLE@" msgstr "__TABLE__ хүснэгтийн бүтэц" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Өөрчлөлийн сонголтууд" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Хүснэгтийн гарчиг" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Баганын тайлбарыг харуулж байна" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Идэвхтэй MIME-төрлүүд" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Хост" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Үүссэн цаг" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Сервэрийн хувилбар" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP хувилбар" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Invalid table name" msgid "Export table names" msgstr "Хүснэгтийн буруу нэр" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Тайлангийн гарчиг" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "header-т тусгай тайлбар нэмэх (\\n –мөр шилжүүлнэ)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Баримтжуулал" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Баримтжуулал" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Өөрчлөлийн сонголтууд" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Процедурүүд" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Функцүүд" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "Хүснэгтийн MIME-төрлүүд" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "Хүснэгтийн хамаарал" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Өгөгдөл уншихыг зөвшөөрөх." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Харц" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -8020,6 +8030,10 @@ msgstr "Баганын нэрс" msgid "This plugin does not support compressed imports!" msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэмжихгүй!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -8076,6 +8090,10 @@ msgstr "SQL нийцтэй горим" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8320,11 +8338,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "тайлбаргүй" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Бүх чагтыг болих" @@ -8344,9 +8363,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Хэрэглэгчийн нэр" @@ -8381,34 +8401,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Дурын хэрэглэгч" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Дурын хост" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Энэ хост" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Хост хүснэгт хэрэглэх" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8422,7 +8451,7 @@ msgstr "Нууц үг бий болгох" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8462,8 +8491,8 @@ msgid "Edit event" msgstr "Үзэгдэл" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8550,7 +8579,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8697,26 +8727,26 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8877,29 +8907,29 @@ msgstr "ӨС-д хүснэгт олдсонгүй." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Хүснэгт \"%s\" байхгүй байна!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "%s хүснэгтийн координатыг тохируулна уу" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9049,6 +9079,459 @@ msgstr "Үл мэдэгдэх хэл: %1$s." msgid "Current Server" msgstr "Сервэр" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Онцгой эрхгүй." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Өгөгдөл уншихыг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Өгөгдөл солихыг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Өгөгдөл устгахыг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх " + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Сервэрийг унтраахыг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Хэрэв ХИ холболтын тоо гүйцсэн ч холбогдохыг зөвшөөрөх. Бусад хэрэглэгчийн " +"процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Gives the right to the user to ask where the slaves / masters are." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Шинэ харц үүсгэхийг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Байхгүй" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Нөөцийн хязгаар" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг " +"хязгаарлах." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Хүснэгтийн тусгай онцгой эрхүүд" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн " + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Зохион байгуулалт" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Глобал онцгой эрх" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Онцгой эрх, өгөгдлийн сангийн эрх" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Хүснэгт устгахыг зөвшөөрөх." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг " +"зөвшөөрөх." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Нэвтрэх мэдээлэл" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Нууц үгийг солихгүй" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s-ы нууц үг солигдлоо." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Онцгой эрх %s -ыг хүчингүй болголоо" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Хэрэглэгчийн өгөгдлийн сан" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Хэрэглэгчдийн хандсан нь "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Хэрэглэгч" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Хандив" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Харц %s нь устгагдсан" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Дурын" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Өгөгдлийн сангийн эрх" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "загвар" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Хэрэглэгч олдсонгүй." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Онцгой эрхүүдийг засах" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Хүчингүй" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Гаргах" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... хуучныг үлдээх." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... хэрэглэгчийн хүснэгтүүдээс устгах." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " +"дууд." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Онцгой эрх, баганын эрх" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Сонгогдсон хэрэглэгчдийг хасах" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " +"болгох." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Онцгой эрхийг дахин дуудаж байна" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Сонгогдсон хэрэглэгч устгагдлаа." + +#: libraries/server_privileges.lib.php:2672 +#, fuzzy, php-format +msgid "You have updated the privileges for %s." +msgstr "Онцгой эрх шинэчлэгдлээ" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Онцгой эрхүүд" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Онцгой эрхүүд" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "User overview" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " +"онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " +"агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " +"дуудаж%s үргэлжлүүлнэ үү." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Шинэ хэрэглэгч нэмэгдлээ." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -9097,11 +9580,11 @@ msgstr "" msgid "Columns" msgstr "Баганын нэрс" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" @@ -9394,12 +9877,6 @@ msgstr "Сервэрийн хувилбар" msgid "Protocol version" msgstr "Протоколын хувилбар" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Хэрэглэгч" - #: main.php:217 #, fuzzy #| msgid "Rename database to" @@ -9953,449 +10430,20 @@ msgstr "" msgid "disabled" msgstr "Хаагдсан" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Шинэ харц үүсгэхийг зөвшөөрөх." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Өгөгдөл устгахыг зөвшөөрөх." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх " - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Хүснэгт устгахыг зөвшөөрөх." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг " -"зөвшөөрөх." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг " -"хязгаарлах." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Gives the right to the user to ask where the slaves / masters are." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Өгөгдөл уншихыг зөвшөөрөх." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Сервэрийг унтраахыг зөвшөөрөх." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Хэрэв ХИ холболтын тоо гүйцсэн ч холбогдохыг зөвшөөрөх. Бусад хэрэглэгчийн " -"процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Өгөгдөл солихыг зөвшөөрөх." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Онцгой эрхгүй." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Байхгүй" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Хүснэгтийн тусгай онцгой эрхүүд" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн " - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Зохион байгуулалт" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Глобал онцгой эрх" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Онцгой эрх, өгөгдлийн сангийн эрх" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Нөөцийн хязгаар" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Нэвтрэх мэдээлэл" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Нууц үгийг солихгүй" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Хэрэглэгч олдсонгүй." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Хэрэглэгч %s оршин байна!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Шинэ хэрэглэгч нэмэгдлээ." - -#: server_privileges.php:1405 -#, fuzzy, php-format -msgid "You have updated the privileges for %s." -msgstr "Онцгой эрх шинэчлэгдлээ" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Онцгой эрх %s -ыг хүчингүй болголоо" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s-ы нууц үг солигдлоо." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s-г устгаж байна" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Онцгой эрхийг дахин дуудаж байна" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Сонгогдсон хэрэглэгч устгагдлаа." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Онцгой эрхүүдийг засах" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Хүчингүй" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Гаргах" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Дурын" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Онцгой эрхүүд" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Онцгой эрхүүд" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "User overview" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Хандив" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Сонгогдсон хэрэглэгчдийг хасах" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " -"болгох." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " -"онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " -"агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " -"дуудаж%s үргэлжлүүлнэ үү." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Онцгой эрх, баганын эрх" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... хуучныг үлдээх." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... хэрэглэгчийн хүснэгтүүдээс устгах." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " -"дууд." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Хэрэглэгчийн өгөгдлийн сан" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Хэрэглэгчдийн хандсан нь "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Өгөгдлийн сангийн эрх" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "загвар" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Харц %s нь устгагдсан" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -12042,41 +12090,41 @@ msgstr "" msgid "Wrong data" msgstr "ӨС байхгүй" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Та үнэхээр " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "PHP кодоор харуулах" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL-ийг батлах" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-үр дүн" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Үүсгэгч" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Хаяг" @@ -13922,6 +13970,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "ХИ. давхацсан холболтууд" +#~ msgid "PDF" +#~ msgstr "PDF" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/ms.po b/po/ms.po index 211c0f52da..ba100e6836 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: malay \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Papar semua" @@ -37,16 +38,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Cari" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -56,24 +57,26 @@ msgstr "Cari" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Pergi" @@ -107,7 +110,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "angkalan data %s telah digugurkan." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 #, fuzzy msgid "Database comment: " msgstr "Komen jadual" @@ -118,17 +121,17 @@ msgstr "Komen jadual" msgid "Table comments" msgstr "Komen jadual" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Nama Kolum" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Jenis" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Null" msgid "Default" msgstr "Asal" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Pautan ke" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Komen" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Tidak" @@ -242,19 +248,22 @@ msgstr "Tidak" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ya" @@ -262,8 +271,8 @@ msgstr "Ya" msgid "View dump (schema) of database" msgstr "Lihat longgokan (skema) pangkalan data" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Tiada jadual dijumpai pada pangkalan data." @@ -280,78 +289,78 @@ msgstr "Nyahpilih Semua" msgid "The database name is empty!" msgstr "Nama jadual adalah kosong" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Jadual %s telah ditukarnama ke %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Jadual %s telah disalin ke %s." -#: db_operations.php:466 +#: db_operations.php:465 #, fuzzy msgid "Rename database to" msgstr "Tukarnama jadual ke" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy msgid "Remove database" msgstr "Tukarnama jadual ke" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "angkalan data %s telah digugurkan." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "Tiada pangkalan data" -#: db_operations.php:539 +#: db_operations.php:538 #, fuzzy msgid "Copy database to" msgstr "Tiada pangkalan data" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Struktur sahaja" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Data sahaja" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Tukar kepada pengkalan data yang di salin" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -361,7 +370,7 @@ msgstr "Tukar kepada pengkalan data yang di salin" msgid "Collation" msgstr "" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -373,7 +382,7 @@ msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -385,16 +394,18 @@ msgstr "Skema Hubungan" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Jadual" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Baris" @@ -404,13 +415,13 @@ msgid "Size" msgstr "Saiz" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "sedang digunakan" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 #, fuzzy @@ -419,7 +430,7 @@ msgstr "Cipta" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -427,7 +438,7 @@ msgstr "" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -441,96 +452,15 @@ msgid_plural "%s tables" msgstr[0] "%s jadual" msgstr[1] "%s jadual" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Menaik" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Menurun" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Isih" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Papar" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriteria" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Tambah/Padam Baris Kriteria" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Tambah/Padam Kolum Medan" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Kemaskini Kueri" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Guna Jadual" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Atau" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Dan" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Ubahsuai" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL- kueri pada pangkalan data %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Hantar Kueri" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -573,7 +503,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -601,20 +531,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Dengan pilihan:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Tanda Semua" @@ -622,31 +553,32 @@ msgstr "Tanda Semua" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Kosong" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -694,17 +626,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Pangkalan Data" @@ -723,18 +656,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Aksi" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Papar" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -781,32 +722,32 @@ msgstr "Pangkalan Data" msgid "Bad type!" msgstr "Jenis Kueri" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 #, fuzzy msgid "Bad parameters!" msgstr "Tukarnama jadual ke" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -831,7 +772,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -911,27 +852,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "TandaBuku telah dipadam." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -939,46 +880,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -995,7 +936,7 @@ msgstr "" "phpMyAdmin lebih mesra dengan pelayar web menyokong-kerangka seperti " "mozilla." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." @@ -1005,7 +946,7 @@ msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." msgid "Do you really want to execute \"%s\"?" msgstr "Adakah anda ingin " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1069,16 +1010,20 @@ msgstr "Nama hos adalah kosong!" msgid "The user name is empty!" msgstr "Kata Pengenalan kosong!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Katalaluan adalah kosong!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1101,9 +1046,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1367,12 +1312,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Tiada" @@ -1556,10 +1502,10 @@ msgid "Explain output" msgstr "Terangkan Kod SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Masa" @@ -1897,7 +1843,7 @@ msgstr "kueri-SQL" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Ubah" @@ -1906,8 +1852,8 @@ msgstr "Ubah" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1988,7 +1934,7 @@ msgstr "Kandungan" msgid "Ignore" msgstr "Abai" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2531,14 +2477,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Ralat" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "kueri-SQL" @@ -2549,7 +2495,7 @@ msgstr "kueri-SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2578,6 +2524,10 @@ msgstr "Tanpa Kod PHP" msgid "Create PHP Code" msgstr "Cipta Kod PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Hantar Kueri" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2602,7 +2552,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2629,7 +2579,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2638,7 +2588,7 @@ msgstr "Mula" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2648,7 +2598,7 @@ msgstr "Terdahulu" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2658,7 +2608,7 @@ msgstr "Berikut" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2681,16 +2631,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" @@ -2698,21 +2649,20 @@ msgstr "Struktur" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Selit" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Lungsur" @@ -2734,21 +2684,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "direktori muatnaik pelayan-web" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Cetak" @@ -2765,6 +2715,78 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Menaik" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Menurun" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Isih" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriteria" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Tambah/Padam Baris Kriteria" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Tambah/Padam Kolum Medan" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Kemaskini Kueri" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Guna Jadual" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Atau" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Dan" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Ubahsuai" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL- kueri pada pangkalan data %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "sekurang-kurangnya satu perkataan" @@ -2808,8 +2830,8 @@ msgstr[1] "%s padanan di dalam jadual %s" msgid "Delete the matches for the %s table?" msgstr "Melonggok data bagi jadual" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2850,72 +2872,72 @@ msgstr "Di dalam jadual:" msgid "Inside column:" msgstr "Di dalam jadual:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Tambah/Padam Kolum Medan" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Sab" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "Bilangan baris per halaman" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Isn" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "mengufuk" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "menegak" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2929,114 +2951,114 @@ msgstr "" msgid "Options" msgstr "Operasi" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Sebahagian Teks" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Teks Penuh" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Skema Hubungan" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Skema Hubungan" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy msgid "Hide browser transformation" msgstr "Informasi MasaJana" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Baris telah dipadam" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Bunuh" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "pada kueri" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Papar baris" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "jumlah" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Papar Skema PDF" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Pautan tidak dijumpai" @@ -3157,8 +3179,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "pangkalan data" @@ -3174,11 +3196,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3196,9 +3218,9 @@ msgstr "" msgid "Query" msgstr "Kueri" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilej" @@ -3207,7 +3229,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3307,51 +3329,51 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Cari di pangkalan data" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Cari di pangkalan data" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Jadual %s telah ditukarnama ke %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3360,7 +3382,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Fungsi" @@ -3373,7 +3395,7 @@ msgstr "Operasi" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3418,7 +3440,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3777,7 +3799,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Jadual-jadual" @@ -3788,9 +3810,10 @@ msgstr "Jadual-jadual" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Data" @@ -3913,33 +3936,33 @@ msgid "Disabled" msgstr "Tidak Membenarkan" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Struktur" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4357,13 +4380,13 @@ msgstr "Mampatan" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4392,7 +4415,6 @@ msgstr "Medan dilarikan oleh" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4434,25 +4456,24 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s jadual" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4461,14 +4482,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "" @@ -4510,7 +4531,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4524,7 +4545,7 @@ msgid "Use delayed inserts" msgstr "Penyelitan Lanjutan" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4543,7 +4564,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4554,7 +4575,7 @@ msgid "Export type" msgstr "Eksport" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4607,7 +4628,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "data CSV" @@ -4667,7 +4687,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4901,7 +4920,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6001,9 +6019,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Katalaluan" @@ -6170,7 +6190,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6193,19 +6212,16 @@ msgstr "Statistik pangkalan data" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV untuk sata MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6261,25 +6277,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6290,13 +6306,15 @@ msgid "Change password" msgstr "Ubah Katalaluan" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Tiada Katalaluan" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Ulang-taip" @@ -6319,8 +6337,9 @@ msgstr "Cipta pangkalan data baru" msgid "Create" msgstr "Cipta" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Tiada Privilej" @@ -6331,12 +6350,12 @@ msgid "Create table" msgstr "Cipta Halaman baru" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nama" @@ -6500,7 +6519,7 @@ msgid "View output as text" msgstr "Simpan sebagai fail" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6960,51 +6979,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Struktur sahaja" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7076,11 +7095,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7333,7 +7352,7 @@ msgstr "Dokumentasi phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7441,80 +7460,80 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Baris ditamatkan oleh" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Medan disertai oleh" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Medan dilarikan oleh" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Baris ditamatkan oleh" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Statistik pangkalan data" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Melonggok data bagi jadual" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Hantar" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7522,25 +7541,25 @@ msgstr "Hantar" msgid "Definition" msgstr "Keterangan" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struktur jadual bagi jadual" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Struktur sahaja" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7558,254 +7577,244 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "Struktur jadual bagi jadual" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table of contents" msgid "Table caption (continued)" msgstr "Kandungan" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Memaparkan Komen Kolum" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Display Features" msgid "Display MIME types" msgstr "Paparkan Ciri-ciri" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Hos" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Masa dijana" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versi Pelayan" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Versi PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "Eksport" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "Export" msgid "Export table headers" msgstr "Eksport" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy msgid "Report title:" msgstr "Tiada Jadual" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Penyataan" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Penyataan" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +msgid "Data creation options" +msgstr "Statistik pangkalan data" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "Proses-proses" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "Fungsi" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7874,6 +7883,10 @@ msgstr "Nama Kolum" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7927,6 +7940,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8112,11 +8129,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "tiada keterangan" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Nyahtanda Semua" @@ -8136,9 +8154,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Kata Pengenalan" @@ -8175,34 +8194,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Sebarang pengguna" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Sebarang hos" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8216,7 +8244,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8254,8 +8282,8 @@ msgid "Edit event" msgstr "Hantar" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8341,7 +8369,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8480,25 +8509,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8648,29 +8677,29 @@ msgstr "Tiada jadual dijumpai pada pangkalan data." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Jadual \"%s\" tidak wujud!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Sila konfigurasikan kordinat bagi jadual %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8816,6 +8845,447 @@ msgstr "" msgid "Current Server" msgstr "Pelayan" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +#, fuzzy +msgid "No privileges." +msgstr "Tiada Privilej" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Tiada" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limits the number of new connections the user may open per hour." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +#, fuzzy +msgid "Global privileges" +msgstr "Tiada Privilej" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +#, fuzzy +msgid "Login Information" +msgstr "Informasi MasaJana" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Jangan tukar katalaluan" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Pengguna" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +#, fuzzy +msgid "Grant" +msgstr "Cetak" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +msgid "User has been added." +msgstr "Medan %s telah digugurkan" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Sebarang" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Tiada pengguna dijumpai." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Ubah Privilej" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "TarikBalik" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Eksport" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Anda telah mengemaskini privilej bagi %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privilej" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privilej" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Anda telah menambah pengguna baru." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -8866,11 +9336,11 @@ msgstr "" msgid "Columns" msgstr "Nama Kolum" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -9168,12 +9638,6 @@ msgstr "Versi Pelayan" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Pengguna" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9714,437 +10178,20 @@ msgstr "" msgid "disabled" msgstr "Tidak Membenarkan" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -#, fuzzy -msgid "No privileges." -msgstr "Tiada Privilej" - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Tiada" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -#, fuzzy -msgid "Global privileges" -msgstr "Tiada Privilej" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -#, fuzzy -msgid "Login Information" -msgstr "Informasi MasaJana" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Jangan tukar katalaluan" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Tiada pengguna dijumpai." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Anda telah menambah pengguna baru." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Anda telah mengemaskini privilej bagi %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Ubah Privilej" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "TarikBalik" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Eksport" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Sebarang" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilej" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilej" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -#, fuzzy -msgid "Grant" -msgstr "Cetak" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -#, fuzzy -msgid "User has been added." -msgstr "Medan %s telah digugurkan" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11741,41 +11788,41 @@ msgstr "" msgid "Wrong data" msgstr "Tiada pangkalan data" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Adakah anda ingin " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Hasil SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Dijana oleh" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Label" diff --git a/po/nb.po b/po/nb.po index 16489b21b8..82969de2b3 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" -"PO-Revision-Date: 2012-07-09 16:04+0200\n" -"Last-Translator: Nicholas Arnesen \n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" +"PO-Revision-Date: 2012-07-28 19:19+0200\n" +"Last-Translator: Stian Berg \n" "Language-Team: norwegian \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Vis alle" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Søk" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "Søk" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Utfør" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databasen %1$s har blitt opprettet." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Database kommentar: " @@ -119,17 +122,17 @@ msgstr "Database kommentar: " msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "Kolonne" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Type" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "Null" msgid "Default" msgstr "Standard" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "Linker til" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "Kommentarer" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nei" @@ -241,19 +247,22 @@ msgstr "Nei" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -261,8 +270,8 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Vis dump (skjema) av database" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Ingen tabeller i databasen." @@ -278,76 +287,76 @@ msgstr "Fjern alle valgte" msgid "The database name is empty!" msgstr "Databasen er uten navn!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Databasen %s har endret navn til %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Databasen %s har blitt kopiert til %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Endre databasens navn til" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Fjern database" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har blitt slettet." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopier databasen til" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Kun struktur" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Bare data" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Legg til %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Legg til begrensninger" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Bytt til kopiert database" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "Bytt til kopiert database" msgid "Collation" msgstr "Sammenligning" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgid "" msgstr "" "phpMyAdmin konfigurasjonslager har blitt deaktivert. Finn ut hvorfor %sher%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Rediger eller eksporter relasjonsskjema" @@ -375,16 +384,18 @@ msgstr "Rediger eller eksporter relasjonsskjema" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabell" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Rader" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Størrelse" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "i bruk" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Opprettet" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Sist oppdatert" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -429,92 +440,15 @@ msgid_plural "%s tables" msgstr[0] "%s tabell" msgstr[1] "%s tabeller" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Du må velge minst en kolonne for visning" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Stigende" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Synkende" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sorter" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Vis" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriterier" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Legg til/Slett kriterierad" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Legg til/Slett kolonner" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Oppdater spørring" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Bruk tabeller" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Eller" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "og" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Sett inn" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Slett" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Endre" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Bytt til %svisuell bygger%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-spørring i database %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Kjør spørring" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -555,7 +489,7 @@ msgstr "Overvåkning er aktiv." msgid "Tracking is not active." msgstr "Overvåkning er ikke aktiv." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -583,20 +517,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard lagringsmotor for denne MySQL tjeneren." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Med avkrysset:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Merk alle" @@ -604,31 +539,32 @@ msgstr "Merk alle" msgid "Check tables having overhead" msgstr "Merk overheng" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Tøm" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -672,17 +608,18 @@ msgstr "Overvåkede tabeller" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Database" @@ -700,18 +637,26 @@ msgstr "Oppdatert" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Handling" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Vis" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Slett overvåkningsdata for denne tabellen" @@ -752,20 +697,20 @@ msgstr "Databaselogg" msgid "Bad type!" msgstr "Feil type!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Valgte eksporteringstype krever lagring til ei fil!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Feil parametere!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ikke nok plass til å lagre fila %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -773,12 +718,12 @@ msgstr "" "Fila %s eksisterer alt på serveren, endre navnet eller merk av for " "overskriving av fil." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tillatelse til å lagre fila %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump har blitt lagret til fila %s." @@ -801,7 +746,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometri" @@ -874,7 +819,7 @@ msgstr "" "Velg \"GeomFromText\" fra kolonnen \"Funksjon\" og lim inn teksten nedenfor " "inn i feltet \"Verdi\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -883,20 +828,20 @@ msgstr "" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Vis bokmerke" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Bokmerket har blitt slettet." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Fila kunne ikke leses" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -906,7 +851,7 @@ msgstr "" "Du forsøkte å laste en komprimert fil som det ikke er støtte for (%s). Enten " "så er ikke støtte implementert eller den er slått av i din konfigurasjon." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -916,28 +861,28 @@ msgstr "" "så var filstørrelsen over maksimum størrelse tillatt i din PHP " "konfigurasjon. Se [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan ikke konvertere filens tegnsett uten tegnsett konverteringsbibliotek" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Kan ikke starte importeringsprogramtilleggene, kontroller din installasjon!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Bokmerke %s opprettet" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen er fullført, %d spørringer utført." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -945,7 +890,7 @@ msgstr "" "Skripttidsabrudd passert, hvis du ønsker å fortsette importen kan du " "gjennopplaste fila og importeringen vil fortsette." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -954,8 +899,8 @@ msgstr "" "at phpMyAdmin ikke vil være istand til å fullføre importeringen uten at du " "øker php tidsgrensen." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -970,7 +915,7 @@ msgstr "Tilbake" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin er mer brukervennlig med en rammekapabel nettleser." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-uttrykk er avslått." @@ -980,7 +925,7 @@ msgstr "\"DROP DATABASE\"-uttrykk er avslått." msgid "Do you really want to execute \"%s\"?" msgstr "Vil du virkelig " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Du er i ferd med å SLETTE en komplett database!" @@ -1038,16 +983,20 @@ msgstr "Vertsnavnet er tomt!" msgid "The user name is empty!" msgstr "Brukernavnet er tomt!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Passordet er blankt!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Legg til bruker" @@ -1067,9 +1016,9 @@ msgstr "Lukk" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1316,12 +1265,13 @@ msgstr "Legg graf til grid" msgid "Please add at least one variable to the series" msgstr "Legg minst én variabel til serien" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Ingen" @@ -1506,10 +1456,10 @@ msgid "Explain output" msgstr "Forklar utdata" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Tid" @@ -1813,7 +1763,7 @@ msgstr "Vis spørringsboks" msgid "No rows selected" msgstr "Ingen rader valgt" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Endre" @@ -1822,8 +1772,8 @@ msgstr "Endre" msgid "Query execution time" msgstr "Spørringens utførelsestid" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldig radnummer." @@ -1896,7 +1846,7 @@ msgstr "Datapunktinnhold" msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopier" @@ -2382,14 +2332,14 @@ msgid "en" msgstr "no" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Feil" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-spørring" @@ -2400,7 +2350,7 @@ msgstr "SQL-spørring" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2429,6 +2379,10 @@ msgstr "uten PHP kode" msgid "Create PHP Code" msgstr "Lag PHP kode" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Kjør spørring" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2453,7 +2407,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Innebygd" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profilering" @@ -2480,14 +2434,14 @@ msgstr "Mangler parametere:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Start" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2495,7 +2449,7 @@ msgstr "Forrige" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2503,7 +2457,7 @@ msgstr "Neste" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Siste" @@ -2524,16 +2478,17 @@ msgstr "Klikk for å endre" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" @@ -2541,21 +2496,20 @@ msgstr "Struktur" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Sett inn" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Se på" @@ -2576,21 +2530,21 @@ msgstr "Bla gjennom datamaskinen:" msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Det er ingen filer å laste opp" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Utfør" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Skriv ut" @@ -2607,6 +2561,74 @@ msgstr "Gale tillatelser på konfigurasjonsfilen, den burde ikke være skrivbar! msgid "Font size" msgstr "Fontstørrelse" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Stigende" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Synkende" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sorter" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriterier" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Legg til/Slett kriterierad" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Legg til/Slett kolonner" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Oppdater spørring" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Bruk tabeller" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Eller" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "og" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Sett inn" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Slett" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Endre" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-spørring i database %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "minst ett av ordene" @@ -2649,8 +2671,8 @@ msgstr[1] "%s treff i tabell %s" msgid "Delete the matches for the %s table?" msgstr "Slett treffene for %s tabellen?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2685,74 +2707,70 @@ msgstr "I tabellene:" msgid "Inside column:" msgstr "I kolonne:" -#: libraries/DisplayResults.class.php:679 -#, fuzzy +#: libraries/DisplayResults.class.php:683 #| msgid "Save directory" msgid "Save edited data" -msgstr "Lagringsmappe" +msgstr "Lagre redigerte data" -#: libraries/DisplayResults.class.php:685 -#, fuzzy +#: libraries/DisplayResults.class.php:689 #| msgid "CHAR textarea columns" msgid "Restore column order" -msgstr "CHAR textarea kolonner" +msgstr "Tilbakestill kolonnerekkefølge" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "CHAR textarea rows" msgid "Start row" msgstr "CHAR textarea rader" -#: libraries/DisplayResults.class.php:889 -#, fuzzy +#: libraries/DisplayResults.class.php:893 #| msgid "Number of rows:" msgid "Number of rows" -msgstr "Antall rader:" +msgstr "Antall rader" -#: libraries/DisplayResults.class.php:898 -#, fuzzy +#: libraries/DisplayResults.class.php:902 #| msgid "More" msgid "Mode" -msgstr "Mer" +msgstr "Modus" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "vannrett" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horisontal (roterte overskrifter)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "loddrett" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" -msgstr "" +msgstr "Topptekst hver %s. rad" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sorter etter nøkkel" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2765,113 +2783,111 @@ msgstr "Sorter etter nøkkel" msgid "Options" msgstr "Innstillinger" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 -#, fuzzy +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #| msgid "Partial Texts" msgid "Partial texts" -msgstr "Delvis tekst" +msgstr "Delvise tekster" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Hele strenger" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relasjonsnøkkel" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Relasjonsvisningskolonne" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Vis binært innhold" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Vis BLOB innhold" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Vis binært innhold som HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Nettvisertransformasjon" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" -msgstr "" +msgstr "Velkjent Tekst" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" -msgstr "" +msgstr "Velkjent Binær" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Raden er slettet" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Avslutt" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Kan være unøyaktig. Se FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "i spørring" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Viser rader" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "totalt" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Forhåndsvisning (med all tekst)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Vis PDF-skjema" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" -msgstr "" +msgstr "Visualiser GIS data" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 -#, fuzzy +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #| msgid "Create User" msgid "Create view" -msgstr "Opprett bruker" +msgstr "Opprett view" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Link ikke funnet" @@ -2998,8 +3014,8 @@ msgstr "" "fjernes." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Databaser" @@ -3015,11 +3031,11 @@ msgid "Tracking" msgstr "Overvåkning" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggere" @@ -3037,9 +3053,9 @@ msgstr "Databasen ser ut til å være tom!" msgid "Query" msgstr "Spørring ved eksempel (Query by Example)" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegier" @@ -3048,7 +3064,7 @@ msgid "Routines" msgstr "Rutiner" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Hendelser" @@ -3147,53 +3163,53 @@ msgstr "%s har blitt dekativert for denne MySQL tjeneren." msgid "This MySQL server does not support the %s storage engine." msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "ukjent tabellstatus: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Kildedatabase" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Stilen %s ble ikke funnet!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Ugylding database" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Ugylding tabellnavn" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Feil oppstond med endring av tabellnavn fra %1$s til %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabellen %s har fått nytt navn %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3202,7 +3218,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksjon" @@ -3214,7 +3230,7 @@ msgstr "Operatør" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3259,7 +3275,7 @@ msgid "Maximum rows to plot" msgstr "Maks antall rader som kan framvises" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" @@ -3624,7 +3640,7 @@ msgstr "delt" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabeller" @@ -3635,9 +3651,10 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Data" @@ -3759,32 +3776,32 @@ msgid "Disabled" msgstr "Avslått" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "struktur" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "data" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "struktur og data" @@ -4207,13 +4224,13 @@ msgstr "Kompresjon" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Sett inn kolonnenavn i første rad" @@ -4236,7 +4253,6 @@ msgstr "Kolonner beskyttet med" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Erstatt NULL med" @@ -4276,23 +4292,22 @@ msgstr "Tabellnavnmal" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Dump tabell" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Inkluder tabelloverskrift" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Tabelloverskrift" @@ -4301,14 +4316,14 @@ msgid "Continued table caption" msgstr "Fortsettet tabelloverskrift" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Merkelappnøkkel" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-type" @@ -4345,7 +4360,7 @@ msgid "SQL compatibility mode" msgstr "SQL kompatibilitetsmodus" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "OPPRETT TABELL valg:" @@ -4358,7 +4373,7 @@ msgid "Use delayed inserts" msgstr "Bruk forsinkede innsettinger" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Slå av kontroll av fremmednøkler" @@ -4375,7 +4390,7 @@ msgid "Syntax to use when inserting data" msgstr "Syntaks i bruk ved innsetting av data" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maksimum lengde av opprettet spørring" @@ -4384,7 +4399,7 @@ msgid "Export type" msgstr "Eksport type" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Inneslutt eksport i en transaksjon" @@ -4439,7 +4454,6 @@ msgstr "Tilpass standardinstillinger" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV-data" @@ -4498,7 +4512,6 @@ msgid "Set import and export directories and compression options" msgstr "Set import and eksport mapper og komprimeringsinnstillinger" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4740,7 +4753,6 @@ msgid "Customize text input fields" msgstr "Endre eksportstandarder" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! tekst" @@ -5167,6 +5179,8 @@ msgid "" "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" +"Deaktiver varselet som vises på databasedetaljsiden Struktur om det er noen " +"påkrevde tabeller for phpMyAdmins konfigurasjonslager som ikke ble funnet" #: libraries/config/messages.inc.php:338 msgid "Missing phpMyAdmin configuration storage tables" @@ -5222,10 +5236,9 @@ msgid "Query window height" msgstr "Høyde på spørringsvindu" #: libraries/config/messages.inc.php:352 -#, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" -msgstr "Spørringsvindu" +msgstr "Bredde på spørringsvindu (i piksler)" #: libraries/config/messages.inc.php:353 msgid "Query window width" @@ -5260,7 +5273,7 @@ msgstr "Gjenta topptekst" #: libraries/config/messages.inc.php:361 msgid "Save all edited cells at once" -msgstr "" +msgstr "Ikke lagre endrede celler umiddelbart" #: libraries/config/messages.inc.php:362 msgid "Directory where exports can be saved on server" @@ -5275,20 +5288,18 @@ msgid "Leave blank if not used" msgstr "La stå tom hvis ikke brukt" #: libraries/config/messages.inc.php:365 -#, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" -msgstr "Rekkefølge for vertsautentisering" +msgstr "Rekkefølge for vertsautorisering" #: libraries/config/messages.inc.php:366 msgid "Leave blank for defaults" msgstr "La stå tom for standard" #: libraries/config/messages.inc.php:367 -#, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" -msgstr "Vertsautentiseringsregler" +msgstr "Regler for vertsautorisering" #: libraries/config/messages.inc.php:368 msgid "Allow logins without a password" @@ -5556,10 +5567,9 @@ msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" #: libraries/config/messages.inc.php:419 -#, fuzzy #| msgid "Recall user name" msgid "Recently used table" -msgstr "Husk brukernavn" +msgstr "Nylig brukt tabell" #: libraries/config/messages.inc.php:420 msgid "" @@ -5840,10 +5850,9 @@ msgid "Whether to show hint or not" msgstr "" #: libraries/config/messages.inc.php:473 -#, fuzzy #| msgid "Show grid" msgid "Show hint" -msgstr "Vis rutenett" +msgstr "Vis hint" #: libraries/config/messages.inc.php:474 msgid "" @@ -5938,9 +5947,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Passord" @@ -6096,10 +6107,9 @@ msgid "Cookie authentication" msgstr "Autentisering informasjonskapsler" #: libraries/config/setup.forms.php:48 -#, fuzzy #| msgid "Host authentication order" msgid "HTTP authentication" -msgstr "Rekkefølge for vertsautentisering" +msgstr "HTTP autentisering" #: libraries/config/setup.forms.php:51 #, fuzzy @@ -6116,7 +6126,6 @@ msgstr "CSV med LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document regneark" @@ -6124,7 +6133,7 @@ msgstr "Open Document regneark" #: libraries/config/setup.forms.php:266 #: libraries/config/user_preferences.forms.php:168 msgid "Quick" -msgstr "" +msgstr "Rask" #: libraries/config/setup.forms.php:270 #: libraries/config/user_preferences.forms.php:172 @@ -6138,19 +6147,16 @@ msgstr "Databaseeksportinnstillinger" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV for MS Excel data" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document tekst" @@ -6159,10 +6165,9 @@ msgid "Could not initialize Drizzle connection library" msgstr "" #: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "Could not connect to Drizzle server" -msgstr "Kunne ikke koble til MySQL tjener" +msgstr "Kunne ikke koble til Drizzle tjener" #: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247 msgid "Could not connect to MySQL server" @@ -6208,29 +6213,29 @@ msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 -#, fuzzy +#: libraries/database_interface.lib.php:1989 #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." -msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)" +msgstr "" +"Tjeneren svarer ikke (eller den lokale MySQL tjenerens sokkel er ikke " +"korrekt konfigurert)." -#: libraries/database_interface.lib.php:1969 -#, fuzzy +#: libraries/database_interface.lib.php:1992 #| msgid "The server is not responding" msgid "The server is not responding." -msgstr "Tjeneren svarer ikke" +msgstr "Tjeneren svarer ikke." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detaljer..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6242,13 +6247,15 @@ msgid "Change password" msgstr "Endre passord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Intet passord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Gjenta" @@ -6262,7 +6269,6 @@ msgstr "MySQL 4.0 kompatibel" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#, fuzzy #| msgid "Create new database" msgid "Create database" msgstr "Opprett ny database" @@ -6271,8 +6277,9 @@ msgstr "Opprett ny database" msgid "Create" msgstr "Opprett" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Ingen privilegier" @@ -6282,12 +6289,12 @@ msgid "Create table" msgstr "Opprett tabell" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Navn" @@ -6356,7 +6363,7 @@ msgstr "Dump alle rader" #: libraries/display_export.lib.php:189 libraries/display_export.lib.php:210 msgid "Output:" -msgstr "" +msgstr "Utskrift:" #: libraries/display_export.lib.php:196 libraries/display_export.lib.php:222 #, php-format @@ -6416,10 +6423,9 @@ msgid "zipped" msgstr "Pakket (zip)" #: libraries/display_export.lib.php:337 -#, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" -msgstr "Komprimert (gz)" +msgstr "gzippet" #: libraries/display_export.lib.php:339 #, fuzzy @@ -6428,17 +6434,15 @@ msgid "bzipped" msgstr "Komprimert (bz2)" #: libraries/display_export.lib.php:348 -#, fuzzy #| msgid "Save as file" msgid "View output as text" -msgstr "Lagre som fil" +msgstr "Vis utskrift som tekst" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 -#, fuzzy +#: libraries/plugins/export/ExportCodegen.class.php:106 #| msgid "Format" msgid "Format:" -msgstr "Format" +msgstr "Format:" #: libraries/display_export.lib.php:358 msgid "Format-specific options:" @@ -6449,12 +6453,13 @@ msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" +"Bla ned for å fylle ut valgene for det valgte formatet og ignorere valgene " +"for andre formater." #: libraries/display_export.lib.php:367 libraries/display_import.lib.php:326 -#, fuzzy #| msgid "Encoding conversion" msgid "Encoding Conversion:" -msgstr "Kodingskonvertering" +msgstr "Kodingskonvertering:" #: libraries/display_git_revision.lib.php:59 #, php-format @@ -6560,10 +6565,9 @@ msgid "File uploads are not allowed on this server." msgstr "Filopplastinger er ikke tillatt på denne tjeneren." #: libraries/display_import.lib.php:275 -#, fuzzy #| msgid "Partial import" msgid "Partial Import:" -msgstr "Delvis importering" +msgstr "Delvis importering:" #: libraries/display_import.lib.php:281 #, php-format @@ -6594,7 +6598,7 @@ msgstr "Antall rader å hoppe over, fra første rad:" #: libraries/display_import.lib.php:317 msgid "Format-Specific Options:" -msgstr "" +msgstr "Format-spesifikke valg:" #: libraries/display_select_lang.lib.php:52 #: libraries/display_select_lang.lib.php:53 setup/frames/index.inc.php:75 @@ -6956,61 +6960,61 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Ingen data funnet for graf." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Følgende strukturer har enten blitt opprettet eller endret. Her kan du:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Vis en strukturs innhold ved å klikke på dens navn" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Endre noen av dens innstillinger ved å klikke på den tilhørende " "\"Innstillinger\" link" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Endre dens struktur ved å følge \"Struktur\" linken" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Gå til database" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Mangler data for %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Gå til tabell" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Kun struktur" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" @@ -7085,11 +7089,11 @@ msgstr "" "Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for " "å bevege deg hvor som helst" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" @@ -7341,7 +7345,7 @@ msgstr "phpMyAdmin-Dokumentasjon" msgid "Reload navigation frame" msgstr "Endre navigasjonsrammen" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7457,80 +7461,80 @@ msgstr "Ingen gyldig autentiseringsnøkkel plugget" msgid "Authenticating..." msgstr "Autentiserer..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Kolonner separert med:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Kolonner omsluttet av:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with:" msgstr "Kolonner beskyttet med" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Linker avsluttet med" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Erstatt NULL med:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 #, fuzzy #| msgid "Remove CRLF characters within columns" msgid "Remove carriage return/line feed characters within columns" msgstr "Fjern CRLF tegn i kolonner" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel-versjon" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy #| msgid "Databases display options" msgid "Data dump options" msgstr "Databasevisningsinnstillinger" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Dataark for tabell" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Hendelse" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7538,24 +7542,24 @@ msgstr "Hendelse" msgid "Definition" msgstr "Beskrivelse" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tabellstruktur for tabell" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Visningsstruktur" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Erstatningsstruktur for visning" @@ -7571,257 +7575,248 @@ msgstr "(fortsettet)" msgid "Structure of table @TABLE@" msgstr "Struktur i tabell @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Transformasjonsvalg" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Tabelloverskrift" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Slå av kontroll av fremmednøkler" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Vis kommentarer" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Vis MIME-typer" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Vert" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Generert den" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Tjenerversjon" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP-Versjon" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki Tabell" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "Eksporter innhold" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horisontal (roterte overskrifter)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Oppretter en rapport som inneholder dataene fra en enkel tabell)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Rapporttittel" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP array" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Legg til egen kommentar i hodet (\\n lager linjeskift)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Oversikt" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Oversikt" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Transformasjonsvalg" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Prosedyrer" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funsjoner" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Begrensninger for tabell" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELASJONER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Tillater lesing av data." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Visning" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Eksporter innhold" @@ -7888,6 +7883,10 @@ msgstr "Kolonnenavn" msgid "This plugin does not support compressed imports!" msgstr "Dette tillegget støtter ikke komprimerte importeringer!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki Tabell" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7954,6 +7953,10 @@ msgstr "SQL kompatibilitetsmodus" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ikke bruk AUTO_INCREMENT for nullverdier" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8197,11 +8200,12 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-logginn til phpMyAdmin for å laste den oppdaterte konfigurasjonsfila." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "ingen beskrivelse" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Fjern merking" @@ -8223,9 +8227,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Brukernavn" @@ -8262,34 +8267,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Legg til slavereplikasjonsbruker" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Alle brukere" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Bruk tekstfelt" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Alle verter" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Denne vert" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Vis vert tabell" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8305,7 +8319,7 @@ msgstr "Generer passord" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8346,8 +8360,8 @@ msgid "Edit event" msgstr "Rediger tjener" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" @@ -8436,7 +8450,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8585,26 +8600,26 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Tillater utføring av lagrede rutiner." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Tillater utføring av lagrede rutiner." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8775,28 +8790,28 @@ msgstr "Ingen tabeller funnet i databasen" msgid "There are no events to display." msgstr "Det er ingen filer å laste opp" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabellen %s eksisterer ikke!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Vennligst konfigurer koordinatene for tabell %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Skjema for %s databasen - Side %s" @@ -8939,6 +8954,457 @@ msgstr "Ukjent språk: %1$s." msgid "Current Server" msgstr "Gjeldende tjener" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Ingen privilegier." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Inkluder alle privilegier unntatt GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Tillater lesing av data." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Tillater å legge til og erstatte data." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Tillater endring av data." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Tillater sletting av data." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Tillater oppretting av nye databaser og tabeller." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Tillater sletting av databaser og tabeller." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Tillater avslutting av tjener." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Tillater visning av prosessene til alle brukere" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Tillater import og eksport av data til og fra filer." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "har ingen effekt i denne versjonen av MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Tillater oppretting og sletting av indekser." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Tillater endring av struktur på eksisterende tabeller." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Gir adgang til komplett liste over databaser." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Tillater tilkobling, selv om maksimum tilkoblinger er nådd. Behøves for de " +"fleste administrative operasjoner som å sette globale variabler eller " +"avslutting av andre brukeres tråder." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Tillater oppretting av midlertidige tabeller." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Tillater låsing av tabeller for den kjørende tråden." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Trenges av replikasjonsslavene." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -" +"tjenere er." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Tillater oppretting av nye visninger." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Tillater å sette opp hendelser for hendelseskalenderen" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Tillater opprettelse og sletting av triggere" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Tillater utføring av SHOW CREATE VIEW spørringer." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Tillater oppreting av lagrede rutiner." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Tillater endring og sletting av lagrede rutiner." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Tillater utføring av lagrede rutiner." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Ingen" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ressursbegrensninger" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Begrenser antall spørringer brukeren kan sende til tjeneren per time." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Begrenser antall kommandoer som kan endre tabeller eller databaser brukeren " +"kan utføre per time." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Tabell-spesifikke privilegier" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "OBS: MySQL privilegiumnavn er på engelsk" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administrasjon" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globale privilegier" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Databasespesifikke privilegier" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Tillater oppretting av nye tabeller." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Tillater sletting av tabeller." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Tillater å legge til brukere og privilegier uten å oppfriske " +"privilegietabellene." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Innlogingsinformasjon" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Ikke endre passordet" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Passordet til %s er endret." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Du har fjernet privilegiene til %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Brukerdatabase" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Opprett database med samme navn og gi alle rettigheter" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Gi alle privilegier for databasen "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Brukere som har adgang til "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Bruker" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Rettighet" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Visningen %s har blitt slettet" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Alle" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "databasespesifikk" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "jokertegn" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Ingen bruker(e) funnet." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Rediger privilegier" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Tilbakekall" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Eksporter" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... behold den gamle." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... slett den gamle fra brukertabellene." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Endre innloggingsinformasjon / kopiere bruker" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Opprett ny bruker med de samme privilegier og ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Kolonne-spesifikke privilegier" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Legg til privilegier til følgende database" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Legg til privilegier til følgende tabell" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Fjern valgte brukere" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Slett databasene som har det samme navnet som brukerne." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Ingen brukere merket for sletting!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Oppfrisker privilegiene" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "De valgte brukerne har blitt slettet." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Du har oppdatert privilegiene til %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privilegier" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privilegier" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Brukeroversikt" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL " +"privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de " +"privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " +"så fall bør du %soppfriske privilegiene%s før du fortsetter." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Du har lagt til en ny bruker." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Kildedatabase" @@ -8985,11 +9451,11 @@ msgstr "Fjern" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" @@ -9282,12 +9748,6 @@ msgstr "Vis versjoner" msgid "Protocol version" msgstr "Protokollversjon" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Bruker" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -9864,447 +10324,20 @@ msgstr "" msgid "disabled" msgstr "Avslått" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Inkluder alle privilegier unntatt GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Tillater endring av struktur på eksisterende tabeller." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Tillater endring og sletting av lagrede rutiner." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Tillater oppretting av nye databaser og tabeller." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Tillater oppreting av lagrede rutiner." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Tillater oppretting av nye tabeller." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Tillater oppretting av midlertidige tabeller." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Tillater oppretting av nye visninger." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Tillater sletting av data." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Tillater sletting av databaser og tabeller." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Tillater sletting av tabeller." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Tillater å sette opp hendelser for hendelseskalenderen" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Tillater utføring av lagrede rutiner." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Tillater import og eksport av data til og fra filer." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Tillater å legge til brukere og privilegier uten å oppfriske " -"privilegietabellene." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Tillater oppretting og sletting av indekser." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Tillater å legge til og erstatte data." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Tillater låsing av tabeller for den kjørende tråden." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Begrenser antall spørringer brukeren kan sende til tjeneren per time." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Begrenser antall kommandoer som kan endre tabeller eller databaser brukeren " -"kan utføre per time." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Tillater visning av prosessene til alle brukere" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "har ingen effekt i denne versjonen av MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -" -"tjenere er." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Trenges av replikasjonsslavene." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Tillater lesing av data." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Gir adgang til komplett liste over databaser." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Tillater utføring av SHOW CREATE VIEW spørringer." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Tillater avslutting av tjener." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Tillater tilkobling, selv om maksimum tilkoblinger er nådd. Behøves for de " -"fleste administrative operasjoner som å sette globale variabler eller " -"avslutting av andre brukeres tråder." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Tillater opprettelse og sletting av triggere" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Tillater endring av data." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Ingen privilegier." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Ingen" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Tabell-spesifikke privilegier" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "OBS: MySQL privilegiumnavn er på engelsk" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administrasjon" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globale privilegier" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Databasespesifikke privilegier" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ressursbegrensninger" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Innlogingsinformasjon" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Ikke endre passordet" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Ingen bruker(e) funnet." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Brukeren %s finnes fra før!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Du har lagt til en ny bruker." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Du har oppdatert privilegiene til %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Du har fjernet privilegiene til %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Passordet til %s er endret." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Ingen brukere merket for sletting!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Oppfrisker privilegiene" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "De valgte brukerne har blitt slettet." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Rediger privilegier" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Tilbakekall" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Eksporter" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Alle" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilegier" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilegier" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Brukeroversikt" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Rettighet" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Fjern valgte brukere" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Slett databasene som har det samme navnet som brukerne." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL " -"privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de " -"privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " -"så fall bør du %soppfriske privilegiene%s før du fortsetter." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Kolonne-spesifikke privilegier" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Legg til privilegier til følgende database" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Legg til privilegier til følgende tabell" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Endre innloggingsinformasjon / kopiere bruker" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Opprett ny bruker med de samme privilegier og ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... behold den gamle." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... slett den gamle fra brukertabellene." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Brukerdatabase" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Opprett database med samme navn og gi alle rettigheter" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Gi alle privilegier for databasen "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Brukere som har adgang til "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "databasespesifikk" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "jokertegn" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Visningen %s har blitt slettet" - #: server_replication.php:82 msgid "Unknown error" msgstr "Ukjent feil" @@ -12158,46 +12191,46 @@ msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn" msgid "Wrong data" msgstr "Ingen databaser" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Vil du virkelig " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Viser som PHP kode" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Validert SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-resultat" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Generert av" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Navn" #: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:107 #, php-format msgid "Table %1$s has been altered successfully" -msgstr "Tabellen %1$s har blitt endrett" +msgstr "Tabellen %1$s har blitt endret" #: tbl_alter.php:133 #, fuzzy @@ -14070,6 +14103,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maks. samtidige tilkoblinger" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP array" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/nl.po b/po/nl.po index f3c594764a..10a3aa3858 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-04-23 16:55+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 0.10\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Toon alles" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Zoeken" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "Zoeken" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Start" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databank %1$s werd aangemaakt." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Databankopmerking: " @@ -119,17 +122,17 @@ msgstr "Databankopmerking: " msgid "Table comments" msgstr "Tabelopmerkingen" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "Kolom" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Type" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "Leeg" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "Leeg" msgid "Default" msgstr "Standaardwaarde" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "Verwijst naar" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "Opmerkingen" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nee" @@ -241,19 +247,22 @@ msgstr "Nee" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -261,8 +270,8 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Bekijk een dump (schema) van databank" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Geen tabellen gevonden in de databank." @@ -278,74 +287,74 @@ msgstr "Deselecteer alles" msgid "The database name is empty!" msgstr "De databanknaam is leeg!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databank %1$s werd hernoemd naar %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databank %1$s werd gekopieerd naar %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Hernoem databank naar" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Verwijder databank" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Databank %s werd verwijderd." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Verwijder de databank (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopiëer databank naar" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Alleen structuur" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Structuur en gegevens" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Alleen gegevens" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE vóór het kopiëren" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Voeg %s toe" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT-waarde toe" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Voeg beperkingen toe" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Overschakelen naar de gekopieerde databank" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -355,7 +364,7 @@ msgstr "Overschakelen naar de gekopieerde databank" msgid "Collation" msgstr "Collatie" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -364,7 +373,7 @@ msgstr "" "De configuratie-opslag van phpMyAdmin is uitgeschakeld. Om te weten te komen " "waarom klik %shier%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Bewerk of exporteer relationeel schema" @@ -374,16 +383,18 @@ msgstr "Bewerk of exporteer relationeel schema" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Rijen" @@ -393,13 +404,13 @@ msgid "Size" msgstr "Grootte" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "in gebruik" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -407,7 +418,7 @@ msgstr "Gecreëerd" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -415,7 +426,7 @@ msgstr "Laatst bijgewerkt" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -428,92 +439,15 @@ msgid_plural "%s tables" msgstr[0] "%s tabel" msgstr[1] "%s tabellen" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Er moet ten minste 1 weer te geven kolom worden gekozen" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Oplopend" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Aflopend" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sorteren" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Toon" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Criterium" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Criterium-rijen toevoegen/verwijderen" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Kolommen toevoegen/verwijderen" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Wijzig Query" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Tabellen gebruiken" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Of" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "En" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Toevoegen" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Verwijder" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Aanpassen" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Overschakelen op %svisuele builder%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-query op databank %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Query uitvoeren" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -554,7 +488,7 @@ msgstr "Tracking is ingeschakeld." msgid "Tracking is not active." msgstr "Tracking is niet actief." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -583,20 +517,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s is de standaard storage engine op deze MySQL-server." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Met geselecteerd:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Selecteer alles" @@ -604,31 +539,32 @@ msgstr "Selecteer alles" msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporteren" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Legen" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -672,17 +608,18 @@ msgstr "Tabellen met tracker" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Databank" @@ -700,18 +637,26 @@ msgstr "Bijgewerkt" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Actie" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Toon" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Verwijder tracking data voor deze tabel" @@ -752,21 +697,21 @@ msgstr "Databank-log" msgid "Bad type!" msgstr "Verkeerd type!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" "Het geselecteerde export type dient als een bestand te worden opgeslagen!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Verkeerde parameters!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Onvoldoende ruimte om het bestand %s op te slaan." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -774,12 +719,12 @@ msgstr "" "Bestand %s bestaat al op de server, verander de bestandsnaam of activeer de " "optie overschrijven." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "De webserver heeft geen rechten om het bestand %s op te slaan." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump is bewaard als %s." @@ -802,7 +747,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometrie" @@ -877,7 +822,7 @@ msgstr "" "Kies \"GeomFormText\" uit de kolom \"Functie\" en plaats de onderstaande " "string in het veld \"Waarde\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -886,20 +831,20 @@ msgstr "" "U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de " "%sdocumentatie%s voor mogelijkheden om dit te omzeilen." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Toon bladwijzer" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "De bladwijzer werd verwijderd." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Bestand kon niet worden gelezen" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -910,7 +855,7 @@ msgstr "" "uploaden. De ondersteuning is niet geïmplementeerd of uitgeschakeld in de " "configuratie." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -921,30 +866,30 @@ msgstr "" "de maximale bestandsgrootte zoals opgegeven in de PHP-configuratie. Zie [a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan de karakterset van het bestand niet omzetten zonder de 'character set " "conversion' bibliotheek" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "De plugins voor het importeren konden niet worden geladen, controleer uw " "installatie!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Bladwijzer %s aangemaakt" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import is geslaagd, %d queries uitgevoerd." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -952,7 +897,7 @@ msgstr "" "De maximale uitvoertijd is verstreken, indien u de import wil afmaken kunt u " "het bestand opnieuw invoeren." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -961,8 +906,8 @@ msgstr "" "dit dat phpMyAdmin dit niet af kan maken tenzij de tijdsbeperkingen van PHP " "worden versoepeld." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -979,7 +924,7 @@ msgstr "" "phpMyAdmin werkt gebruiksvriendelijker met een browser die frames aan " "kan." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." @@ -988,7 +933,7 @@ msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." msgid "Do you really want to execute \"%s\"?" msgstr "Weet u zeker dat u de query \"%s\" wil uitvoeren?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een volledige databank te VERWIJDEREN!" @@ -1046,16 +991,20 @@ msgstr "De machinenaam is leeg!" msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Gebruiker toevoegen" @@ -1075,9 +1024,9 @@ msgstr "Sluiten" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1324,12 +1273,13 @@ msgstr "Grafiek toevoegen aan raster" msgid "Please add at least one variable to the series" msgstr "Gelieve tenminste één variabele toe te voegen aan de reeks" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Geen" @@ -1518,10 +1468,10 @@ msgid "Explain output" msgstr "Verklaar resultaat" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Tijd" @@ -1824,7 +1774,7 @@ msgstr "SQL-queryveld tonen" msgid "No rows selected" msgstr "Geen rijen geselecteerd" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Veranderen" @@ -1833,8 +1783,8 @@ msgstr "Veranderen" msgid "Query execution time" msgstr "Query-uitvoertijd" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d is geen geldig rijnummer." @@ -1911,7 +1861,7 @@ msgstr "Inhoud gegevenspunt" msgid "Ignore" msgstr "Negeren" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopiëren" @@ -2400,14 +2350,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Fout" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-query" @@ -2418,7 +2368,7 @@ msgstr "SQL-query" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2447,6 +2397,10 @@ msgstr "zonder PHP-code" msgid "Create PHP Code" msgstr "Genereer PHP-code" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Query uitvoeren" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2473,7 +2427,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Rechtstreeks" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profiling" @@ -2500,14 +2454,14 @@ msgstr "Ontbrekende parameter:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Begin" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2515,7 +2469,7 @@ msgstr "Vorige" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2523,7 +2477,7 @@ msgstr "Volgende" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Einde" @@ -2544,16 +2498,17 @@ msgstr "Klik om te wisselen" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Structuur" @@ -2561,21 +2516,20 @@ msgstr "Structuur" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Invoegen" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Verkennen" @@ -2596,21 +2550,21 @@ msgstr "Blader op uw eigen pc:" msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de web-server upload directory %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "De folder die u heeft ingesteld om te uploaden kan niet worden bereikt" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Er zijn geen bestanden om te uploaden" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Uitvoeren" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Afdrukken" @@ -2629,6 +2583,74 @@ msgstr "" msgid "Font size" msgstr "Lettertypegrootte" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Oplopend" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Aflopend" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sorteren" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Criterium" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Criterium-rijen toevoegen/verwijderen" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Kolommen toevoegen/verwijderen" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Wijzig Query" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Tabellen gebruiken" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Of" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "En" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Toevoegen" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Verwijder" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Aanpassen" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-query op databank %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "ten minste een van de woorden" @@ -2671,8 +2693,8 @@ msgstr[1] "%1$s overeenkomsten in de tabel %2$s" msgid "Delete the matches for the %s table?" msgstr "Verwijder gevonden rijen voor de tabel %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2707,65 +2729,65 @@ msgstr "In de tabellen:" msgid "Inside column:" msgstr "In de kolom:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Sla aangepaste gegevens op" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Kolomvolgorde herstellen" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Eerste regel" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Aantal rijen" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Modus" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontale" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontale (omgedraaide headers)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "verticale" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Hoofdingen iedere %s regels" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sorteren op sleutel" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2778,60 +2800,60 @@ msgstr "Sorteren op sleutel" msgid "Options" msgstr "Opties" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Gedeeltelijke teksten" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Volledige teksten" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relationele sleutel" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Relationele weergaveveld" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Toon binaire inhoud" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Toon BLOB-inhoud" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Toon binaire-inhoud als HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Browsertransformaties verbergen" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Goed bekende tekst" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Goed gekende binaire waarde" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "De regel werd verwijderd" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "stop proces" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2839,44 +2861,44 @@ msgstr "" "Bij benadering. Zie [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/" "a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "in de query" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Weergave van records" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "totaal" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "query duurde %01.4f sec" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Handelingen voor queryresultaat" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Afdrukken (met volledige teksten)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Grafiek weergeven" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "GIS-gegevens visualiseren" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "VIEW aanmaken" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Link niet gevonden" @@ -3002,8 +3024,8 @@ msgstr "" "verwijderd." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Databanken" @@ -3019,11 +3041,11 @@ msgid "Tracking" msgstr "Traceren" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggers" @@ -3041,9 +3063,9 @@ msgstr "Databank lijkt leeg te zijn!" msgid "Query" msgstr "Query opbouwen" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Rechten" @@ -3052,7 +3074,7 @@ msgid "Routines" msgstr "Routines" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Gebeurtenissen" @@ -3150,45 +3172,45 @@ msgstr "%s is uitgeschakeld op deze MySQL-server." msgid "This MySQL server does not support the %s storage engine." msgstr "Deze MySQL-server ondersteund de %s opslag-engine niet." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "onbekende tabelstatus: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Brondatabank" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Thema %s niet gevonden!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Ongeldige databank" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Ongeldige tabelnaam" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %1$s is hernoemd naar %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Tabelinterfacevoorkeuren konden niet worden opgeslagen" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3197,7 +3219,7 @@ msgstr "" "Opkuisen van tabelinterfacevoorkeuren is mislukt (zie $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3209,7 +3231,7 @@ msgstr "" "kijken of de tabelstructuur gewijzigd werd." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Functie" @@ -3221,7 +3243,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3260,7 +3282,7 @@ msgid "Maximum rows to plot" msgstr "Maximum aantal af te drukken regels" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" @@ -3621,7 +3643,7 @@ msgstr "gedeeld" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabellen" @@ -3632,9 +3654,10 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Data" @@ -3753,32 +3776,32 @@ msgid "Disabled" msgstr "Uitgeschakeld" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "structuur" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "gegevens" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "Structuur en gegevens" @@ -4207,13 +4230,13 @@ msgstr "Compressie" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Veldnamen in de eerste rij plaatsen" @@ -4236,7 +4259,6 @@ msgstr "Velden ontweken door" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL vervangen door" @@ -4276,23 +4298,22 @@ msgstr "Tabelnaam-template" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Dump tabel" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Tabeltitel toevoegen" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Tabeltitel" @@ -4301,14 +4322,14 @@ msgid "Continued table caption" msgstr "Vervolgde tabeltitel" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Labelsleutel" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-type" @@ -4345,7 +4366,7 @@ msgid "SQL compatibility mode" msgstr "SQL-compatibiliteitsmodus" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE opties:" @@ -4358,7 +4379,7 @@ msgid "Use delayed inserts" msgstr "Gebruik vertraagde inserts" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "controle op vreemde sleutels uitschakelen" @@ -4375,7 +4396,7 @@ msgid "Syntax to use when inserting data" msgstr "Syntax voor insert-opdrachten" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maximale lengte van de gemaakte query" @@ -4384,7 +4405,7 @@ msgid "Export type" msgstr "Export-type" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Sluit de export in een transactie" @@ -4440,7 +4461,6 @@ msgstr "Aanpassen standaard opties" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV-gegevens" @@ -4499,7 +4519,6 @@ msgid "Set import and export directories and compression options" msgstr "Aanpassen importeer- en exporteer-directories en compressie-opties" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4729,7 +4748,6 @@ msgid "Customize text input fields" msgstr "Tekstvelden aanpassen" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! tekst" @@ -5942,9 +5960,11 @@ msgstr "Vereist dat SQL-Validator geactiveerd is" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Wachtwoord" @@ -6125,7 +6145,6 @@ msgstr "CSV met behulp van LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document-rekenblad" @@ -6147,19 +6166,16 @@ msgstr "Databankexportopties" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV voor MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Tekst" @@ -6220,26 +6236,26 @@ msgstr "De extensie %s ontbreekt. Gelieve uw PHP-configuratie te controleren." msgid "possible deep recursion attack" msgstr "mogelijke diepe recursieaanval" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "De server reageert niet (of de socket van de server is niet juist ingesteld)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "De server reageert niet." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Gelieve de rechten op de folder met de databank na te kijken." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Details..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6252,13 +6268,15 @@ msgid "Change password" msgstr "Wachtwoord wijzigen" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Geen wachtwoord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Type opnieuw" @@ -6280,8 +6298,9 @@ msgstr "Databank aanmaken" msgid "Create" msgstr "Aanmaken" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Geen rechten" @@ -6291,12 +6310,12 @@ msgid "Create table" msgstr "Tabel aanmaken" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Naam" @@ -6436,7 +6455,7 @@ msgid "View output as text" msgstr "Bekijk output als tekst" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Opmaak:" @@ -6956,50 +6975,50 @@ msgstr "De PrimeBase XT Blog door Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Geen gegevens beschikbaar voor GIS-visualisatie." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultatenset terug (0 rijen)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Bekijk de inhoud van een structuur door op de naam te klikken" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Een instelling veranderen door op \"Opties\" te klikken" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Klik op de \"Structuur\"-link om de structuur aan te passen" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Ga naar databank: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Instellingen voor %s wijzigen" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Ga naar tabel: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Structuur van %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Ga naar view: %s" @@ -7070,11 +7089,11 @@ msgstr "" "Gebruik de TAB-toets om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rijnummer: %1$d" @@ -7322,7 +7341,7 @@ msgstr "phpMyAdmin-documentatie" msgid "Reload navigation frame" msgstr "Navigatievenster herladen" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Dit formaat heeft geen opties" @@ -7439,93 +7458,93 @@ msgstr "Geen geldige authenticatiesleutel aanwezig" msgid "Authenticating..." msgstr "Authenticeren..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Velden beëindigd door:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Velden ingesloten door:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Velden ontweken door:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Regels beëindigd door:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Vervang NULL door:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Verwijder CRLF-tekens uit veldwaarden" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel-editie:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Datadump-opties" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Gegevens worden uitgevoerd voor tabel" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Gebeurtenis" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definitie" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tabelstructuur voor tabel" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Structuur voor de view" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Stand-in structuur voor view" @@ -7541,94 +7560,83 @@ msgstr "(vervolgd)" msgid "Structure of table @TABLE@" msgstr "Structuur van de tabel @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Object-aanmaakopties" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Tabeltitel (vervolgd)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Toon vreemde sleutel relaties" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Toon kolomopmerkingen" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Toon beschikbare MIME-types" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Machine" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Genereertijd" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Serverversie" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP-versie" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki-tabel" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Tabelnamen exporteren" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Exporteer tabel hoofdingen" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Genereert een rapport met de gegevens van een enkele tabel)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Rapporttitel:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP-array" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7636,11 +7644,11 @@ msgstr "" "Opmerkingen weergeven (bevat informatie zoals tijdstip van export, PHP-" "versie en serverversie)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Een opmerking toevoegen in de header (\\n om regels af te breken):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7648,25 +7656,25 @@ msgstr "" "Voeg een tijdstip toe waarop databanken aangemaakt, laatst bijgewerkt en " "laatst bekeken werden" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Databanksysteem of oudere MySQL-server om uitvoercompatibiliteit mee te " "maximaliseren:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "%s statement toevoegen" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Statements toevoegen:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7674,32 +7682,39 @@ msgstr "" "Voeg aanhalingstekens toe aan tabel- en kolomnamen (Beschermt tabel- en " "kolomnamen die speciale tekens en sleutelwoorden bevatten)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Object-aanmaakopties" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Tabel leegmaken voor invoegen" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "In plaats van INSERT-opdrachten, gebruik:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED-opdrachten" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE-opdrachten" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Functie om te gebruiken bij het verwijderen van gegevens:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Syntax om te gebruiken bij het toevoegen van gegevens:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7709,7 +7724,7 @@ msgstr "" "  Voorbeeld: INSERT INTO tbl_naam (kol_A,kol_B,kol_C) VALUES " "(1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7719,7 +7734,7 @@ msgstr "" "    Voorbeeld: INSERT INTO tbl_naam VALUES (1,2,3), (4,5,6), " "(7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7727,7 +7742,7 @@ msgstr "" "beide van bovenstaande
      Voorbeeld: INSERT " "INTO tbl_naam (kol_A,kol_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7735,7 +7750,7 @@ msgstr "" "geen van bovenstaande
      Voorbeeld: INSERT " "INTO tbl_naam VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7743,7 +7758,7 @@ msgstr "" "Dump kolommen in binair formaat met hexadecimale notatie (bijvoorbeeld, " "\"abc\" wordt 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7752,50 +7767,45 @@ msgstr "" "gedumpt en opnieuw ingeladen kunnen worden in servers in verschillende " "tijdszones)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedures" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Functies" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Beperkingen voor gedumpte tabellen" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Beperkingen voor tabel" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPES VOOR TABEL" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIES VOOR TABEL" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Fout bij het lezen van gegevens:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Object-aanmaakopties (alle zijn aangeraden)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Views" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Exporteerinhoud" @@ -7870,6 +7880,10 @@ msgstr "Kolomnamen" msgid "This plugin does not support compressed imports!" msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki-tabel" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7930,6 +7944,10 @@ msgstr "SQL-compatibiliteitsmodus:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Gebruik geen AUTO_INCREMENT voor 0-waarden" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8180,11 +8198,12 @@ msgstr "" "Meld opnieuw aan bij phpMyAdmin om het bijgewerkte configuratiebestand te " "laden." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "Geen beschrijving aanwezig" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Deselecteer alles" @@ -8207,9 +8226,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Gebruikersnaam" @@ -8246,34 +8266,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Gebruiker voor de slave-replicatie toevoegen" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Elke gebruiker" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Tekstveld gebruiken" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Elke machine" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "lokaal" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Deze machine" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Gebruik hosttabel" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8289,7 +8318,7 @@ msgstr "Wachtwoord genereren" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8327,8 +8356,8 @@ msgid "Edit event" msgstr "Gebeurtenis bewerken" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fout tijdens het uitvoeren van de opdracht" @@ -8406,7 +8435,8 @@ msgstr "Gelieve een geldig type in te geven voor de gebeurtenis." msgid "You must provide an event definition." msgstr "Gelieve een definitie voor de gebeurtenis in te geven." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Nieuw" @@ -8540,25 +8570,25 @@ msgstr "Gelieve een geldig return-type op te geven voor de routine." msgid "You must provide a routine definition." msgstr "Gelieve een routinedefinitie op te geven." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Resultaten van uitgevoerde routine %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d regel beïnvloed door het laatste statement in de procedure" msgstr[1] "%d regels beïnvloed door het laatste statement in de procedure" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Resultaten van uitgevoerde routine %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Routine uitvoeren" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Routineparameters" @@ -8687,28 +8717,28 @@ msgstr "Geen gebeurtenis met naam %1$s gevonden in databank %2$s" msgid "There are no events to display." msgstr "Er zijn geen gebeurtenissen om weer te geven." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "De tabel %s bestaat niet!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configureer de coördinaten voor de tabel %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema van de databank %s - Pagina %s" @@ -8845,6 +8875,463 @@ msgstr "Onbekende taal: %1$s." msgid "Current Server" msgstr "Huidige server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Geen rechten." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Omvat alle rechten behalve GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Maakt het lezen van gegevens mogelijk." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Maakt het mogelijk om gegevens in te voegen en te vervangen." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Maakt het mogelijk gegevens aan te passen." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Maakt het mogelijk om gegevens te verwijderen." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Maakt het mogelijk om nieuwe databanken en tabellen te maken." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Maakt het mogelijk om databanken en tabellen te verwijderen." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache " +"van de server leeg te maken." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Maakt het mogelijk om de server te stoppen." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Maakt het mogelijk om processen van alle gebruikers te zien" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" +"Maakt het mogelijk om gegevens te importeren en te exporteren van en naar " +"bestanden." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Heeft geen effect in deze MySQL-versie." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Maakt het mogelijk om indexen aan te maken en te verwijderen." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Geeft toegang tot de volledige lijst van databanken." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Maakt het mogelijk verbinding te maken, zelfs als het maximale aantal " +"verbindingen al is bereikt; Dit is vereist voor de meeste administratieve " +"opties zoals het instellen van globale variabelen of het stoppen van threads " +"van andere gebruikers." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Maakt het mogelijk om tijdelijke tabellen te maken." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Nodig om slaves te repliceren." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Geeft het recht aan de gebruiker om te vragen waar de slaves / masters zijn." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Maakt het mogelijk om nieuwe views te maken." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Maakt het mogelijk om triggers te maken en te verwijderen" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Maakt het mogelijk om SHOW CREATE VIEW uit te voeren." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Maakt het mogelijk om opgeslagen routines aan te maken." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" +"Maakt het mogelijk om opgeslagen routines te bewerken en te verwijderen." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" +"Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Maakt het mogelijk om opgeslagen routines uit te voeren." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Geen" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Resource-beperkingen" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Opmerking: het instellen van deze waarden op 0 (nul) verwijdert de limiet." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Beperkt het aantal queries dat een gebruiker mag versturen per uur." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Beperkt het aantal opdrachten, welke een databank of tabel veranderen, die " +"een gebruiker per uur mag uitvoeren." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Beperkt het aantal nieuwe verbindingen die een gebruiker per uur mag openen." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Beperkt het aantal gelijktijdige verbindingen dat de gebruiker open kan " +"hebben." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Tabel-specifieke rechten" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Opmerking: de namen van de MySQL-rechten zijn uitgedrukt in het Engels" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administratie" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globale rechten" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Databank-specifieke rechten" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Maakt het mogelijk nieuwe tabellen te maken." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Maakt het mogelijk tabellen te verwijderen." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Maakt het mogelijk om gebruikers en rechten toe te voegen zonder de " +"rechtentabel opnieuw op te vragen." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Aanmeldingsinformatie" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Wijzig het wachtwoord niet" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Het wachtwoord voor %s is succesvol veranderd." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "U heeft de rechten ingetrokken voor %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Databank voor gebruiker" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Een databank aanmaken met dezelfde naam en alle rechten hierop geven" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Alle rechten geven op de wildcardnaam (gebruikersnaam\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Alle rechten geven op databank "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Gebruikers die toegang hebben tot "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Gebruiker" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Toekennen" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Gebruiker is toegevoegd." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Elke" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globaal" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "databank-specifiek" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "jokerteken" + +# Enkelvoud. +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Geen gebruiker gevonden." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Rechten wijzigen" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Ongedaan maken" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Alles exporteren" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... de oude behouden." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... de oude verwijderen van de gebruikerstabellen." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +"... alle actieve rechten van de oude intrekken en deze daarna verwijderen." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... de oude verwijderen van de gebruikerstabellen en de rechten nadien " +"vernieuwen." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Aanmeldingsinformatie wijzigen / Gebruiker kopiëren" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Een nieuwe gebruiker aanmaken met dezelfde rechten en ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Kolom-specifieke rechten" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Rechten toevoegen op de volgende databank" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Wildcards _ en % moeten worden ge-escaped met een \\ om ze letterlijk te " +"gebruiken" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Rechten toevoegen op de volgende tabel" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "De geselecteerde gebruikers verwijderen" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Trek alle actieve rechten in van alle gebruikers en verwijder deze daarna." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Verwijder de databanken die dezelfde naam hebben als de gebruikers." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Geen gebruikers geselecteerd om te verwijderen!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "De rechten werden opnieuw ingeladen" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "De geselecteerde gebruikers zijn met succes verwijderd." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "U heeft de rechten aangepast voor %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Rechten voor alle gebruikers" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Rechten voor %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Gebruikers overzicht" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL-" +"privilegestabel. De inhoud van deze tabel kan verschillen met de rechten van " +"de server als er handmatig aanpassingen zijn aangebracht. Mocht dit het " +"geval zijn dan moet men %sde rechtentabel vernieuwen%s voordat men verder " +"gaat." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "U heeft een nieuwe gebruiker toegevoegd." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Brondatabank" @@ -8891,11 +9378,11 @@ msgstr "Leegmaken" msgid "Columns" msgstr "Kolommen" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Deze SQL-query opslaan" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Elke gebruiker toegang geven tot deze bladwijzer" @@ -9180,12 +9667,6 @@ msgstr "Softwareversie" msgid "Protocol version" msgstr "Protocolversie" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Gebruiker" - #: main.php:217 msgid "Server charset" msgstr "Karakterset van server" @@ -9714,453 +10195,20 @@ msgstr "Licentie" msgid "disabled" msgstr "uitgeschakeld" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Omvat alle rechten behalve GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" -"Maakt het mogelijk om opgeslagen routines te bewerken en te verwijderen." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Maakt het mogelijk om nieuwe databanken en tabellen te maken." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Maakt het mogelijk om opgeslagen routines aan te maken." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Maakt het mogelijk nieuwe tabellen te maken." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Maakt het mogelijk om tijdelijke tabellen te maken." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" -"Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Maakt het mogelijk om nieuwe views te maken." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Maakt het mogelijk om gegevens te verwijderen." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Maakt het mogelijk om databanken en tabellen te verwijderen." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Maakt het mogelijk tabellen te verwijderen." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Maakt het mogelijk om opgeslagen routines uit te voeren." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" -"Maakt het mogelijk om gegevens te importeren en te exporteren van en naar " -"bestanden." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Maakt het mogelijk om gebruikers en rechten toe te voegen zonder de " -"rechtentabel opnieuw op te vragen." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Maakt het mogelijk om indexen aan te maken en te verwijderen." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Maakt het mogelijk om gegevens in te voegen en te vervangen." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Beperkt het aantal nieuwe verbindingen die een gebruiker per uur mag openen." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Beperkt het aantal queries dat een gebruiker mag versturen per uur." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Beperkt het aantal opdrachten, welke een databank of tabel veranderen, die " -"een gebruiker per uur mag uitvoeren." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Beperkt het aantal gelijktijdige verbindingen dat de gebruiker open kan " -"hebben." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Maakt het mogelijk om processen van alle gebruikers te zien" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Heeft geen effect in deze MySQL-versie." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache " -"van de server leeg te maken." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Geeft het recht aan de gebruiker om te vragen waar de slaves / masters zijn." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Nodig om slaves te repliceren." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Maakt het lezen van gegevens mogelijk." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Geeft toegang tot de volledige lijst van databanken." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Maakt het mogelijk om SHOW CREATE VIEW uit te voeren." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Maakt het mogelijk om de server te stoppen." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Maakt het mogelijk verbinding te maken, zelfs als het maximale aantal " -"verbindingen al is bereikt; Dit is vereist voor de meeste administratieve " -"opties zoals het instellen van globale variabelen of het stoppen van threads " -"van andere gebruikers." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Maakt het mogelijk om triggers te maken en te verwijderen" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Maakt het mogelijk gegevens aan te passen." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Geen rechten." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Geen" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Tabel-specifieke rechten" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Opmerking: de namen van de MySQL-rechten zijn uitgedrukt in het Engels" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administratie" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globale rechten" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Databank-specifieke rechten" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Resource-beperkingen" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Opmerking: het instellen van deze waarden op 0 (nul) verwijdert de limiet." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Aanmeldingsinformatie" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Wijzig het wachtwoord niet" - -# Enkelvoud. -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Geen gebruiker gevonden." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "De gebruiker %s bestaat al!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "U heeft een nieuwe gebruiker toegevoegd." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "U heeft de rechten aangepast voor %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "U heeft de rechten ingetrokken voor %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Het wachtwoord voor %s is succesvol veranderd." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Verwijderen van %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Geen gebruikers geselecteerd om te verwijderen!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "De rechten werden opnieuw ingeladen" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "De geselecteerde gebruikers zijn met succes verwijderd." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "De rechten werden succesvol opnieuw ingeladen." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Rechten wijzigen" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Ongedaan maken" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Alles exporteren" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Elke" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Rechten voor alle gebruikers" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Rechten voor %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Gebruikers overzicht" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Toekennen" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "De geselecteerde gebruikers verwijderen" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Trek alle actieve rechten in van alle gebruikers en verwijder deze daarna." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Verwijder de databanken die dezelfde naam hebben als de gebruikers." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL-" -"privilegestabel. De inhoud van deze tabel kan verschillen met de rechten van " -"de server als er handmatig aanpassingen zijn aangebracht. Mocht dit het " -"geval zijn dan moet men %sde rechtentabel vernieuwen%s voordat men verder " -"gaat." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Kolom-specifieke rechten" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Rechten toevoegen op de volgende databank" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Wildcards _ en % moeten worden ge-escaped met een \\ om ze letterlijk te " -"gebruiken" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Rechten toevoegen op de volgende tabel" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Aanmeldingsinformatie wijzigen / Gebruiker kopiëren" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Een nieuwe gebruiker aanmaken met dezelfde rechten en ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... de oude behouden." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... de oude verwijderen van de gebruikerstabellen." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -"... alle actieve rechten van de oude intrekken en deze daarna verwijderen." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... de oude verwijderen van de gebruikerstabellen en de rechten nadien " -"vernieuwen." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Databank voor gebruiker" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Een databank aanmaken met dezelfde naam en alle rechten hierop geven" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Alle rechten geven op de wildcardnaam (gebruikersnaam\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Alle rechten geven op databank "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Gebruikers die toegang hebben tot "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globaal" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "databank-specifiek" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "jokerteken" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Gebruiker is toegevoegd." - #: server_replication.php:82 msgid "Unknown error" msgstr "Onbekende fout" @@ -11978,37 +12026,37 @@ msgstr "" msgid "Wrong data" msgstr "Verkeerde gegevens" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bladwijzer \"%s\" wordt gebruikt als standaard browsequery." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Weet u zeker dat u de volgende SQL-query wil uitvoeren?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Getoond als PHP-code" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Gevalideerde SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-resultaat" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Gegenereerd door" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de indexen van de tabel `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Label" @@ -13913,6 +13961,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is ingesteld op 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP-array" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 191ba56b60..5f9ea3fdf7 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,7 +19,8 @@ msgstr "" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "" @@ -119,17 +122,17 @@ msgstr "" msgid "Table comments" msgstr "" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "" msgid "Default" msgstr "" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "" @@ -241,19 +247,22 @@ msgstr "" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "" @@ -261,8 +270,8 @@ msgstr "" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "" @@ -278,74 +287,74 @@ msgstr "" msgid "The database name is empty!" msgstr "" -#: db_operations.php:328 +#: db_operations.php:327 #, possible-php-format msgid "Database %1$s has been renamed to %2$s" msgstr "" -#: db_operations.php:332 +#: db_operations.php:331 #, possible-php-format msgid "Database %1$s has been copied to %2$s" msgstr "" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "" -#: db_operations.php:505 +#: db_operations.php:504 #, possible-php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, possible-php-format msgid "Add %s" msgstr "" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -355,14 +364,14 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:624 +#: db_operations.php:623 #, possible-php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "" @@ -372,16 +381,18 @@ msgstr "" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "" @@ -391,13 +402,13 @@ msgid "Size" msgstr "" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -405,7 +416,7 @@ msgstr "" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -413,7 +424,7 @@ msgstr "" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -426,92 +437,15 @@ msgid_plural "%s tables" msgstr[0] "" msgstr[1] "" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, possible-php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:795 -#, possible-php-format -msgid "SQL query on database %s:" -msgstr "" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -552,7 +486,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -580,20 +514,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "" @@ -601,31 +536,32 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -669,17 +605,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "" @@ -697,18 +634,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -749,31 +694,31 @@ msgstr "" msgid "Bad type!" msgstr "" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, possible-php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:362 +#: export.php:363 #, possible-php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, possible-php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, possible-php-format msgid "Dump has been saved to file %s." msgstr "" @@ -796,7 +741,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -867,27 +812,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, possible-php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, possible-php-format msgid "" @@ -895,46 +840,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, possible-php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, possible-php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -949,7 +894,7 @@ msgstr "" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -958,7 +903,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1016,16 +961,20 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "" @@ -1045,9 +994,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1289,12 +1238,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "" @@ -1464,10 +1414,10 @@ msgid "Explain output" msgstr "" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "" @@ -1753,7 +1703,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "" @@ -1762,8 +1712,8 @@ msgstr "" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, possible-php-format msgid "%d is not valid row number." msgstr "" @@ -1834,7 +1784,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2307,14 +2257,14 @@ msgid "en" msgstr "" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "" @@ -2325,7 +2275,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2354,6 +2304,10 @@ msgstr "" msgid "Create PHP Code" msgstr "" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2378,7 +2332,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2405,14 +2359,14 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2420,7 +2374,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2428,7 +2382,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "" @@ -2449,16 +2403,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "" @@ -2466,21 +2421,20 @@ msgstr "" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "" @@ -2501,21 +2455,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "" @@ -2532,6 +2486,74 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "" + +#: libraries/DBQbe.class.php:1258 +#, possible-php-format +msgid "SQL query on database %s:" +msgstr "" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "" @@ -2572,8 +2594,8 @@ msgstr[1] "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2608,64 +2630,64 @@ msgstr "" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, possible-php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2678,103 +2700,103 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, possible-php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "" @@ -2892,8 +2914,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "" @@ -2909,11 +2931,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -2931,9 +2953,9 @@ msgstr "" msgid "Query" msgstr "" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "" @@ -2942,7 +2964,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3038,50 +3060,50 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, possible-php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, possible-php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, possible-php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, possible-php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, possible-php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, possible-php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3090,7 +3112,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3102,7 +3124,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3141,7 +3163,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3488,7 +3510,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "" @@ -3499,9 +3521,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "" @@ -3615,32 +3638,32 @@ msgid "Disabled" msgstr "" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "" @@ -4038,13 +4061,13 @@ msgstr "" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "" @@ -4067,7 +4090,6 @@ msgstr "" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4107,23 +4129,22 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4132,14 +4153,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "" @@ -4176,7 +4197,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4189,7 +4210,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4206,7 +4227,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4215,7 +4236,7 @@ msgid "Export type" msgstr "" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4268,7 +4289,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "" @@ -4327,7 +4347,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "" @@ -4540,7 +4559,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5606,9 +5624,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5770,7 +5790,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -5792,19 +5811,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -5860,25 +5876,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -5889,13 +5905,15 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "" @@ -5916,8 +5934,9 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "" @@ -5927,12 +5946,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "" @@ -6066,7 +6085,7 @@ msgid "View output as text" msgstr "" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "" @@ -6516,50 +6535,50 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, possible-php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, possible-php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, possible-php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, possible-php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, possible-php-format msgid "Go to view: %s" msgstr "" @@ -6628,11 +6647,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6878,7 +6897,7 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -6985,93 +7004,93 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7087,238 +7106,227 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, possible-php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +msgid "Data creation options" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7385,6 +7393,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, possible-php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7438,6 +7450,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, possible-php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7621,11 +7637,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "" @@ -7645,9 +7662,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -7682,34 +7700,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7723,7 +7750,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, possible-php-format @@ -7759,8 +7786,8 @@ msgid "Edit event" msgstr "" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -7836,7 +7863,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -7964,25 +7992,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, possible-php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, possible-php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, possible-php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8111,28 +8139,28 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, possible-php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, possible-php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, possible-php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8267,6 +8295,432 @@ msgstr "" msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, possible-php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, possible-php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, possible-php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, possible-php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, possible-php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "" + +#: libraries/server_privileges.lib.php:2708 +#, possible-php-format +msgid "Privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, possible-php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8313,11 +8767,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8567,12 +9021,6 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "" - #: main.php:217 msgid "Server charset" msgstr "" @@ -9060,422 +9508,20 @@ msgstr "" msgid "disabled" msgstr "" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, possible-php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "" - -#: server_privileges.php:1405 -#, possible-php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, possible-php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, possible-php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, possible-php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "" - -#: server_privileges.php:1708 -#, possible-php-format -msgid "Privileges for %s" -msgstr "" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, possible-php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, possible-php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, possible-php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11019,37 +11065,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:271 +#: sql.php:275 #, possible-php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" diff --git a/po/pl.po b/po/pl.po index fa1798a993..0ea59caa12 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-12 10:11+0000\n" "Last-Translator: Jan Kowalski \n" "Language-Team: pl_PL\n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Pokaż wszystko" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Szukaj" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Szukaj" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Wykonaj" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza danych %1$s została utworzona." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Komentarz bazy danych: " @@ -121,17 +124,17 @@ msgstr "Komentarz bazy danych: " msgid "Table comments" msgstr "Komentarze tabeli" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Kolumna" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Typ" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Null" msgid "Default" msgstr "Ustawienia domyślne" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Odsyłacze do" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Komentarze" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nie" @@ -243,19 +249,22 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Tak" @@ -263,8 +272,8 @@ msgstr "Tak" msgid "View dump (schema) of database" msgstr "Zobacz zrzut (schemat) bazy danych" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Nie znaleziono żadnych tabel w bazie danych." @@ -280,74 +289,74 @@ msgstr "Odznacz wszystko" msgid "The database name is empty!" msgstr "Nazwa bazy danych jest pusta!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Nazwę bazy danych %1$s zmieniono na %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Baza danych %1$s została przekopiowana do %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Usuń bazę danych" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Baza danych %s została usunięta." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Usuń bazę danych (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopiuj bazę danych do" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Tylko struktura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktura i dane" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Tylko dane" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE przed przekopiowaniem" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartość AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Dodaj ograniczenia" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Przełącz do przekopiowanej bazy danych" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "Przełącz do przekopiowanej bazy danych" msgid "Collation" msgstr "Metoda porównywania napisów" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -366,7 +375,7 @@ msgstr "" "Przechowywanie konfiguracji phpMyAdmin została wyłączona. Aby dowiedzieć " "się, dlaczego kliknij %stutaj%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Edytuj lub eksportuj schemat relacji" @@ -376,16 +385,18 @@ msgstr "Edytuj lub eksportuj schemat relacji" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Rekordy" @@ -395,13 +406,13 @@ msgid "Size" msgstr "Rozmiar" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "w użyciu" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -409,7 +420,7 @@ msgstr "Tworzenie" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -417,7 +428,7 @@ msgstr "Ostatnia aktualizacja" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,92 +442,15 @@ msgstr[0] "%s tabel" msgstr[1] "%s tabel" msgstr[2] "%s tabel" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Musisz wybrać co najmniej jedną kolumnę do wyświetlenia" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Rosnąco" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Malejąco" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sortuj" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Pokaż" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kryteria" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Dodaj/usuń kryteria wierszy" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Dodaj/usuń kolumny" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Zaktualizuj zapytanie" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Użyj tabel" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Lub" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "I" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Wstaw" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Usuń" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Zmodyfikuj" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Przełącz do %svisual builder%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Zapytanie SQL do bazy danych %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Wyślij zapytanie" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "Śledzenie jest aktywne." msgid "Tracking is not active." msgstr "Śledzenie nie jest aktywne." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -587,20 +521,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s to domyślny silnik składowania tego serwera MySQL." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Z zaznaczonymi:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Zaznacz wszystkie" @@ -608,31 +543,32 @@ msgstr "Zaznacz wszystkie" msgid "Check tables having overhead" msgstr "Zaznacz tabele nieoptymalne" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Podgląd wydruku" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Opróżnij" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -676,17 +612,18 @@ msgstr "Tabele śledzone" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Baza danych" @@ -704,18 +641,26 @@ msgstr "Zaktualizowana" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Działanie" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Pokaż" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Usuń dane śledzące tę tabelę" @@ -756,20 +701,20 @@ msgstr "Dziennik bazy danych" msgid "Bad type!" msgstr "Zły typ!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Wybrany typ eksportu musi być zapisany do pliku!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Złe parametry!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Za mało miejsca na zapis pliku %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -777,12 +722,12 @@ msgstr "" "Plik %s już istnieje na serwerze. Zmień nazwę pliku lub zaznacz opcję " "nadpisywania plików." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serwer WWW nie ma uprawnień do zapisania tego pliku %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Zrzut został zapisany do pliku %s." @@ -805,7 +750,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometria" @@ -878,7 +823,7 @@ msgstr "" "Wybierz \"GeomFromText\" z kolumny \"Function\" i wklej poniższy ciąg znaków " "do pola \"Value\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -887,20 +832,20 @@ msgstr "" "Prawdopodobnie próbowano wczytać zbyt duży plik. Proszę zapoznać się " "%sdokumentacją%s, aby obejść to ograniczenie." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Wyświetlanie zakładki" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Zakładka została usunięta." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Nie można odczytać pliku" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -910,7 +855,7 @@ msgstr "" "Próbowano wczytać plik z nieobsługiwaną kompresją (%s). Albo ten typ " "kompresji nie jest obsługiwany, albo jest wyłączony w konfiguracji." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -921,27 +866,27 @@ msgstr "" "konfigurację PHP. Zobacz [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Nie można przekonwertować zestawu znaków pliku bez biblioteki konwersji" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s utworzona" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import zakończony sukcesem, wykonano %d zapytań." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -949,7 +894,7 @@ msgstr "" "Limit czasu wykonania skryptu minął. Aby ukończyć import, proszę ponownie " "przesłać ten sam plik, a import zostanie wznowiony." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -958,8 +903,8 @@ msgstr "" "dane, co zwykle oznacza, że phpMyAdmin nie będzie w stanie ukończyć tego " "importu bez zwiększenia limitów czasowych PHP." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -976,7 +921,7 @@ msgstr "" "phpMyAdmin jest bardziej przyjazny w przeglądarkach WWW obsługujących " "ramki." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrukcje \"DROP DATABASE\" są wyłączone." @@ -985,7 +930,7 @@ msgstr "Instrukcje \"DROP DATABASE\" są wyłączone." msgid "Do you really want to execute \"%s\"?" msgstr "Czy na pewno chcesz wykonać \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!" @@ -1043,16 +988,20 @@ msgstr "Nazwa hosta jest pusta!" msgid "The user name is empty!" msgstr "Nazwa użytkownika jest pusta!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Hasło jest puste!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Dodaj użytkownika" @@ -1072,9 +1021,9 @@ msgstr "Zamknij" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1320,12 +1269,13 @@ msgstr "Dodaj wykres do siatki" msgid "Please add at least one variable to the series" msgstr "Proszę dodać przynajmniej jedną zmienną do serii" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Żaden" @@ -1510,10 +1460,10 @@ msgid "Explain output" msgstr "Wyjaśnij wynik przetworzenia danych" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Czas" @@ -1806,7 +1756,7 @@ msgstr "Pokaż okno zapytań" msgid "No rows selected" msgstr "Nie żadnych wybrano rekordów" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Zmień" @@ -1815,8 +1765,8 @@ msgstr "Zmień" msgid "Query execution time" msgstr "Czas wykonywania zapytania" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d nie jest prawidłowym numerem wiersza." @@ -1893,7 +1843,7 @@ msgstr "Treść punktu danych" msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopiuj" @@ -2382,14 +2332,14 @@ msgid "en" msgstr "ang." #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Błąd" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Zapytanie SQL" @@ -2400,7 +2350,7 @@ msgstr "Zapytanie SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2429,6 +2379,10 @@ msgstr "Bez kodu PHP" msgid "Create PHP Code" msgstr "Utwórz kod PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Wyślij zapytanie" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2453,7 +2407,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "W linii" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profilowanie" @@ -2480,14 +2434,14 @@ msgstr "Brakuje parametru:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Początek" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2495,7 +2449,7 @@ msgstr "Poprzednie" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2503,7 +2457,7 @@ msgstr "Następne" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Koniec" @@ -2524,16 +2478,17 @@ msgstr "Kliknij, aby przełączać" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" @@ -2541,21 +2496,20 @@ msgstr "Struktura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Wstaw" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Przeglądaj" @@ -2576,21 +2530,21 @@ msgstr "Wyszukaj w komputerze:" msgid "Select from the web server upload directory %s:" msgstr "Wybierz katalog serwera WWW dla uploadu %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Brak plików do wysłania" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Wykonaj" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Drukuj" @@ -2607,6 +2561,74 @@ msgstr "Złe uprawnienia pliku konfiguracyjnego, nie powinien być zapisywalny!" msgid "Font size" msgstr "Rozmiar czcionki" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Rosnąco" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Malejąco" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sortuj" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kryteria" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Dodaj/usuń kryteria wierszy" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Dodaj/usuń kolumny" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Zaktualizuj zapytanie" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Użyj tabel" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Lub" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "I" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Wstaw" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Usuń" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Zmodyfikuj" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Zapytanie SQL do bazy danych %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "co najmniej jeden z wyrazów" @@ -2651,8 +2673,8 @@ msgstr[2] "%1$s dopasowań wewnątrz tabeli %2$s" msgid "Delete the matches for the %s table?" msgstr "Usunąć dopasowania do tabeli %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2687,65 +2709,65 @@ msgstr "Wewnątrz tabel:" msgid "Inside column:" msgstr "Wewnątrz kolumny:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Zapisz edytowane dane" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Przywrócić porządek w kolumnie" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Początek wiersza" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Liczba wierszy" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Tryb" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "poziomo" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "poziomo (obrócone nagłówki)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "pionowo" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Nagłówki co %s wierszy" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sortuj wg klucza" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2758,60 +2780,60 @@ msgstr "Sortuj wg klucza" msgid "Options" msgstr "Opcje" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Częściowe teksty" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Pełne teksty" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Klucz relacyjny" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Relacje wyświetlania kolumn" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Pokaż binarne treści" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Pokaż zawartość BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Pokaż binarne treści jako HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Ukryj transformacje przeglądarki" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Znany tekst" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Znane binarne" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Wiersz został usunięty" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Zabij" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2819,44 +2841,44 @@ msgstr "" "Może być w przybliżeniu. Zobacz [a@./Documentation." "html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "w zapytaniu" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Pokaż wiersze" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "wszystkich" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Podgląd wydruku (z pełnymi tekstami)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Wyświetlanie wykresu" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Wizualizacja danych GIS" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Utwórz widok" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Łącze nie znalezione" @@ -2981,8 +3003,8 @@ msgstr "" "usunięty." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Bazy danych" @@ -2998,11 +3020,11 @@ msgid "Tracking" msgstr "Śledzenie" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Wyzwalacze" @@ -3020,9 +3042,9 @@ msgstr "Baza danych wydaje się pusta!" msgid "Query" msgstr "Zapytanie" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Uprawnienia" @@ -3031,7 +3053,7 @@ msgid "Routines" msgstr "Procedury i funkcje" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Zdarzenia" @@ -3130,43 +3152,43 @@ msgstr "Mechanizm %s został wyłączony dla tego serwera MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "nieznany status tabeli: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Źródło bazy danych '%s' nie zostało znalezione!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Docelowej bazy '%s' nie znaleziono!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Niewłaściwa baza danych" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Niewłaściwa nazwa tabeli" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s ma nazwę zmienioną na %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Nie można zapisać preferencji UI tabeli" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3175,7 +3197,7 @@ msgstr "" "Nie udało się czyszczenie preferencji tabeli UI (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3186,7 +3208,7 @@ msgstr "" "odświeżeniu strony. Proszę sprawdzić, czy struktura tabeli została zmieniona." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcja" @@ -3198,7 +3220,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3237,7 +3259,7 @@ msgid "Maximum rows to plot" msgstr "Maksymalna liczba wierszy do wykreślenia" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" @@ -3654,7 +3676,7 @@ msgstr "współdzielone" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabele" @@ -3665,9 +3687,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Dane" @@ -3786,32 +3809,32 @@ msgid "Disabled" msgstr "Wyłączone" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "struktura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "dane" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "struktura i dane" @@ -4236,13 +4259,13 @@ msgstr "Typ kompresji" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Umieść nazwy kolumn w pierwszym wierszu" @@ -4265,7 +4288,6 @@ msgstr "Kolumny poprzedzone przez" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Zamiana NULL na" @@ -4305,23 +4327,22 @@ msgstr "Nazwa szablonu tabeli" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Zrzut tabeli" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Dołącz podpis tabeli" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Nagłówek tabeli" @@ -4330,14 +4351,14 @@ msgid "Continued table caption" msgstr "Kontynuacja nagłówka tabeli" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Etykieta klucza" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Typ MIME" @@ -4374,7 +4395,7 @@ msgid "SQL compatibility mode" msgstr "Tryb zgodności SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Opcje UTWÓRZ TABELĘ:" @@ -4387,7 +4408,7 @@ msgid "Use delayed inserts" msgstr "Użyj opóźnionych dodań" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Wyłącz sprawdzanie kluczy zewnętrznych" @@ -4404,7 +4425,7 @@ msgid "Syntax to use when inserting data" msgstr "Składnia do użycia podczas wstawiania danych" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maksymalna długość utworzonego zapytania" @@ -4413,7 +4434,7 @@ msgid "Export type" msgstr "Rodzaj eksportu" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Obejmij eksport transakcją" @@ -4468,7 +4489,6 @@ msgstr "Dostosuj domyślne opcje" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4527,7 +4547,6 @@ msgid "Set import and export directories and compression options" msgstr "Ustaw katalogi importu i eksportu oraz opcje kompresji" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4758,7 +4777,6 @@ msgid "Customize text input fields" msgstr "Dostosuj pola wprowadzania tekstu" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Tekst Texy!" @@ -5966,9 +5984,11 @@ msgstr "Wymaga włączenia walidatora SQL" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Hasło" @@ -6151,7 +6171,6 @@ msgstr "CSV przy użyciu LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Otwórz dokument arkusza kalkulacyjnego" @@ -6173,19 +6192,16 @@ msgstr "Opcje eksportu bazy danych" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV dla MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Otwórz dokument tekstowy" @@ -6248,7 +6264,7 @@ msgstr "Brak rozszerzenia %s. Proszę sprawdzić konfigurację PHP." msgid "possible deep recursion attack" msgstr "możliwy głęboki atak rekurencji" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6256,19 +6272,19 @@ msgstr "" "Serwer nie odpowiada (lub gniazdo lokalnego serwera nie jest prawidłowo " "skonfigurowane)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Serwer nie odpowiada." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Szczegóły..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6281,13 +6297,15 @@ msgid "Change password" msgstr "Zmień hasło" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Brak hasła" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Ponownie" @@ -6308,8 +6326,9 @@ msgstr "Utwórz bazę danych" msgid "Create" msgstr "Utwórz" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Brak uprawnień" @@ -6319,12 +6338,12 @@ msgid "Create table" msgstr "Utwórz tabelę" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nazwa" @@ -6462,7 +6481,7 @@ msgid "View output as text" msgstr "Pokaż wynik jako tekst" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Format:" @@ -6975,51 +6994,51 @@ msgstr "PrimeBase XT Blog wg Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Nie znaleziono danych do wizualizacji GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero wierszy)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Pokaż zawartość struktury klikając jej nazwę" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\"" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\"" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Idź do bazy danych: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Edytuj ustawienia dla %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Przejdź do tabeli: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Przejdź do widoku: %s" @@ -7090,11 +7109,11 @@ msgstr "" "Użyj TAB, aby przejść z wartości do wartości, lub CTRL+strzałki do " "poruszania się w dowolnym miejscu" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Wyświetl zapytanie SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Id wstawionego wiersza: %1$d" @@ -7340,7 +7359,7 @@ msgstr "Dokumewntacja phpMyAdmina" msgid "Reload navigation frame" msgstr "Przeładuj ramki nawigacji" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Ten format nie ma żadnych opcji" @@ -7454,93 +7473,93 @@ msgstr "Prawidłowy klucz uwierzytelniający nie jest podłączony" msgid "Authenticating..." msgstr "Trwa uwierzytelnianie..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Kolumny oddzielone:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Kolumny dołączyć:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Kolumna uciekła z:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Linie zakończone z:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Zamiana NULL na:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Usuń znaki nowej lini z kolumn" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Wydanie Excela:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Opcje eksportu danych" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Zrzut danych tabeli" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Zdarzenie" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Określenie" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struktura tabeli dla tabeli" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktura widoku" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Zastąpiona struktura widoku" @@ -7556,94 +7575,83 @@ msgstr "(kontynuacja)" msgid "Structure of table @TABLE@" msgstr "Struktura tabeli @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Opcje tworzenia obiektu" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Podpis tabeli (kontynuowanie)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Wyświetlanie związki z kluczem zewnętrznym" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Wyświetl komentarze" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Wyświetl typy MIME" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Host" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Czas wygenerowania" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Wersja serwera" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Wersja PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Tabela MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Eksport nazw tabel" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Eksport nagłówków tabeli" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Generuje raport zawierający danej pojedynczej tabeli.)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Tytuł raportu:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "tablica PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7651,11 +7659,11 @@ msgstr "" "Wyświetl komentarze (zawiera informacje takie jak znacznik czasowy " "eksportu, wersję PHP, wersję serwera)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Dodatkowe komentarz niestandardowych nagłówków (\\ndzieli wiersze):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7663,25 +7671,25 @@ msgstr "" "Dołącz znacznik czasu, gdy bazy danych zostały stworzone, ostatnio " "aktualizowane i ostatnio sprawdzane" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "System bazy danych lub starszego serwera MySQL w celu maksymalizacji " "zgodności produkcji z:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Dodaj oświadczenie %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Cecha:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7689,32 +7697,39 @@ msgstr "" "Załącz tabelę i nazwę kolumny z odwrotnym cudzysłowem (Chroni kolumn i " "nazwy tabeli utworzonych ze znakami specjalnymi lub słowami kluczowymi)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Opcje tworzenia obiektu" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Tabela Truncate przed wstawieniem" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Zamiast zapytań INSERT użyj:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "Zapytania INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "Zapytania INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Funkcja eksportu danych:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Składnia do użycia podczas wstawiania danych:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7724,7 +7739,7 @@ msgstr "" "    Np: INSERTI NTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7734,7 +7749,7 @@ msgstr "" "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7742,7 +7757,7 @@ msgstr "" "obu powyższych
Przykład:INSERT INTO tbl_name (col_A,col_B) " "VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7750,7 +7765,7 @@ msgstr "" "żadne z powyższych
Przykład: INSERT INTO tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7758,7 +7773,7 @@ msgstr "" "Zrzuć binarne kolumny w postaci szesnastkowej (np. \"abc\" zmienia się na " "0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7766,50 +7781,45 @@ msgstr "" "Zrzuć znacznik czasu kolumn w UTC (włączenie znacznik czasu kolumn bedzie " "zrzucone i przełądowane między serwerami w różnych strefach czasowych)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedury" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funkcje" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Ograniczenia dla zrzutów tabel" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Ograniczenia dla tabeli" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "TYPY MIME TABELI" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELACJE TABELI" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Błąd odczytu danych:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Opcje tworzenia obiektów (wszystkie są polecane)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Widoki" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Eksportuj zawartość" @@ -7883,6 +7893,10 @@ msgstr "Nazwy kolumn" msgid "This plugin does not support compressed imports!" msgstr "Ten moduł nie obsługuje skompresowanych importów!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Tabela MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7941,6 +7955,10 @@ msgstr "Tryb zgodności SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nie używaj AUTO_INCREMENT dla wartości zerowych" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8184,11 +8202,12 @@ msgstr "" "Zaloguj się ponownie do phpMyAdmin, żeby załadować zmieniony plik " "konfiguracyjny." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "brak opisu" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Odznacz wszystkie" @@ -8210,9 +8229,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Nazwa użytkownika" @@ -8249,34 +8269,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Dodaj użytkownika replikacji na serwerze podrzędnym" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Dowolny użytkownik" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Użyj pola tekstowego" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Dowolny host" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Host lokalny" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Ten host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Użyj tabeli hostów" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8292,7 +8321,7 @@ msgstr "Generuj hasło" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8329,8 +8358,8 @@ msgid "Edit event" msgstr "Edytuj wydarzenie" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Błąd w przetwarzaniu wywołania" @@ -8406,7 +8435,8 @@ msgstr "Musisz podać prawidłowy typ zdarzenia." msgid "You must provide an event definition." msgstr "Należy podać definicję zdarzeń." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Nowy" @@ -8540,7 +8570,12 @@ msgstr "Musisz podać poprawny typ wartości zwracanej do procedury." msgid "You must provide a routine definition." msgstr "Należy podać definicję procedury." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Wynik wykonanych procedur %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8548,18 +8583,13 @@ msgstr[0] "%d wiersz dotyczy ostatniego sprawozdania wewnątrz procedury" msgstr[1] "%d wierszy dotyczy ostatniego sprawozdania wewnątrz procedury" msgstr[2] "%d wierszy dotyczy ostatniego sprawozdania wewnątrz procedury" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Wynik wykonanych procedur %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Wykonaj procedurę" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Parametry procedury" @@ -8688,28 +8718,28 @@ msgstr "Nie znaleziono zdarzenia %1$s w bazie danych %2$s" msgid "There are no events to display." msgstr "Nie ma żadnych zdarzeń do wyświetlenia." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabela '%s' nie istnieje!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Proszę skonfigurować współrzędne dla tabeli %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schemat bazy danych %s - Strona %s" @@ -8846,6 +8876,452 @@ msgstr "Nieznany język: %1$s." msgid "Current Server" msgstr "Bieżący serwer" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Brak uprawnień." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Wszystkie uprawnienia, oprócz GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Pozwól czytać dane." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Pozwól dodawać i zamieniać dane." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Pozwól zmieniać dane." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Pozwól usuwać dane." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Pozwól tworzyć nowe bazy danych i tabele." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Pozwól usuwać bazy danych i tabele." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Pozwól wyłączyć serwer." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Pozwól oglądać procesy wszystkich użytkowników" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Pozwól importować i eksportować dane z/do plików." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nie ma żadnych skutków w tej wersji MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Pozwól tworzyć i usuwać indeksy." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Pozwól zmieniać strukturę istniejących tabel." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Daj dostęp do pełnej listy baz danych." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Pozwól na połączenie, nawet jeśli osiągnięta została maksymalna ilość " +"połączeń; Wymagane dla większość operacji administracyjnych, takich jak " +"ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Pozwala tworzyć tabele tymczasowe." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Pozwól blokować tabele dla aktualnego wątku." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Potrzebne dla replikacji serwera podrzędnego." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Pozwól tworzyć widoki." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Pozwól tworzyć i usuwać wyzwalacze" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Pozwól tworzyć procedury składowane." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Pozwól modyfikować i usuwać procedury składowane." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Pozwól wykonywać procedury składowane." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Brak" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ograniczenia zasobów" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Ogranicz liczbę zapytań, które może wysłać użytkownik w ciągu godziny." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Ogranicz liczbę poleceń zmieniających jakąkolwiek tabelę lub bazę danych, " +"które może wykonać użytkownik w ciągu godziny." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Ogranicz liczbę nowych połączeń, które może otworzyć użytkownik w ciągu " +"godziny." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Uprawnienia specyficzne dla tabel" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Uwaga: uprawnienia MySQL są oznaczone w języku angielskim" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administracja" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globalne uprawnienia" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Uprawnienia specyficzne dla baz danych" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Pozwól tworzyć nowe tabele." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Pozwól usuwać tabele." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Pozwól dodawać użytkowników i nadawać uprawnienia bez przeładowywania tabeli " +"uprawnień." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Dane użytkownika" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Nie zmieniaj hasła" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Hasło dla %s zostało zmienione." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Masz cofnięte uprawnienia dla %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Baza danych dla użytkownika" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" +"Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " +"(nazwaużytkownika_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Przyznanie wszystkich uprawnień do bazy danych "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Użytkownicy mają dostęp do \"%s\"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Użytkownik" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Nadawanie" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Użytkownik został dodany." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Dowolny" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "ogólny" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "specyficzne dla bazy danych" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "znak wieloznaczny" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Żadnego użytkownika nie znaleziono." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Edytuj uprawnienia" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Cofnij" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Eksport wszystkiego" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... pozostaw starego." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... usunąć starą z tabel użytkowników." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +"... unieważnij wszystkie aktywne uprawnienia ze starej i usuń je później." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "... usuń starą z tabel użytkownika i przeładuj uprawnienia później." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Zmień dane użytkownika / Kopiuj użytkownika" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Uprawnienia specyficzne dla kolumn" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Dodaj uprawnienia dla następującej bazy danych" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Symbole wieloznaczne % i _ należy uciec z \\ z nich korzystać dosłownie" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Dodaj uprawnienia dla następującej tabeli" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Usuń zaznaczonych użytkowników" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Przeładuj uprawnienia" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Wybrani użytkownicy zostali usunięci pomyślnie." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Zaktualizowano uprawnienia dla %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Uprawnienia dla wszystkich użytkowników" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Uprawnienia dla %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Omówienie użytkowników" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień " +"MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, " +"może się różnić od uprawnień jakich faktycznie używa serwer. W takim " +"przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Dodałeś nowego użytkownika." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Źródło bazy danych" @@ -8892,11 +9368,11 @@ msgstr "Wyczyść" msgid "Columns" msgstr "Kolumny" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Niech każdy użytkownik ma dostęp do tej zakładki" @@ -9179,12 +9655,6 @@ msgstr "Wersja oprogramowania" msgid "Protocol version" msgstr "Wersja protokołu" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Użytkownik" - #: main.php:217 msgid "Server charset" msgstr "Kodowanie znaków serwera" @@ -9709,442 +10179,20 @@ msgstr "Licencja" msgid "disabled" msgstr "wyłączone" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Wszystkie uprawnienia, oprócz GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Pozwól zmieniać strukturę istniejących tabel." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Pozwól modyfikować i usuwać procedury składowane." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Pozwól tworzyć nowe bazy danych i tabele." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Pozwól tworzyć procedury składowane." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Pozwól tworzyć nowe tabele." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Pozwala tworzyć tabele tymczasowe." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Pozwól tworzyć widoki." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Pozwól usuwać dane." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Pozwól usuwać bazy danych i tabele." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Pozwól usuwać tabele." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Pozwól wykonywać procedury składowane." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Pozwól importować i eksportować dane z/do plików." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Pozwól dodawać użytkowników i nadawać uprawnienia bez przeładowywania tabeli " -"uprawnień." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Pozwól tworzyć i usuwać indeksy." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Pozwól dodawać i zamieniać dane." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Pozwól blokować tabele dla aktualnego wątku." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Ogranicz liczbę nowych połączeń, które może otworzyć użytkownik w ciągu " -"godziny." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Ogranicz liczbę zapytań, które może wysłać użytkownik w ciągu godziny." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Ogranicz liczbę poleceń zmieniających jakąkolwiek tabelę lub bazę danych, " -"które może wykonać użytkownik w ciągu godziny." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Pozwól oglądać procesy wszystkich użytkowników" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nie ma żadnych skutków w tej wersji MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Potrzebne dla replikacji serwera podrzędnego." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Pozwól czytać dane." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Daj dostęp do pełnej listy baz danych." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Pozwól wyłączyć serwer." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Pozwól na połączenie, nawet jeśli osiągnięta została maksymalna ilość " -"połączeń; Wymagane dla większość operacji administracyjnych, takich jak " -"ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Pozwól tworzyć i usuwać wyzwalacze" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Pozwól zmieniać dane." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Brak uprawnień." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Brak" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Uprawnienia specyficzne dla tabel" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Uwaga: uprawnienia MySQL są oznaczone w języku angielskim" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administracja" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globalne uprawnienia" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Uprawnienia specyficzne dla baz danych" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ograniczenia zasobów" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Dane użytkownika" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Nie zmieniaj hasła" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Żadnego użytkownika nie znaleziono." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Użytkownik %s już istnieje!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Dodałeś nowego użytkownika." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Zaktualizowano uprawnienia dla %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Masz cofnięte uprawnienia dla %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Hasło dla %s zostało zmienione." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Przeładuj uprawnienia" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Wybrani użytkownicy zostali usunięci pomyślnie." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Uprawnienia były przeładowane pomyślnie." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Edytuj uprawnienia" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Cofnij" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Eksport wszystkiego" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Dowolny" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Uprawnienia dla wszystkich użytkowników" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Uprawnienia dla %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Omówienie użytkowników" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Nadawanie" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Usuń zaznaczonych użytkowników" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień " -"MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, " -"może się różnić od uprawnień jakich faktycznie używa serwer. W takim " -"przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Uprawnienia specyficzne dla kolumn" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Dodaj uprawnienia dla następującej bazy danych" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Symbole wieloznaczne % i _ należy uciec z \\ z nich korzystać dosłownie" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Dodaj uprawnienia dla następującej tabeli" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Zmień dane użytkownika / Kopiuj użytkownika" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... pozostaw starego." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... usunąć starą z tabel użytkowników." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -"... unieważnij wszystkie aktywne uprawnienia ze starej i usuń je później." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "... usuń starą z tabel użytkownika i przeładuj uprawnienia później." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Baza danych dla użytkownika" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" -"Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " -"(nazwaużytkownika_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Przyznanie wszystkich uprawnień do bazy danych "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Użytkownicy mają dostęp do \"%s\"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "ogólny" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "specyficzne dla bazy danych" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "znak wieloznaczny" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Użytkownik został dodany." - #: server_replication.php:82 msgid "Unknown error" msgstr "Nieznany błąd" @@ -11937,37 +11985,37 @@ msgstr "Klucz powinien zawierać litery, cyfry [em]i[/em] znaki specjalne." msgid "Wrong data" msgstr "Nieprawidłowe dane" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Korzystanie z zakładki \"%s\" jako domyślne przeglądanie zapytania." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Czy na pewno chcesz wywołać tę kwerendę?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Pokaż jako kod PHP" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Weryfikacje SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Wynik SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Wygenerowany przez" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Nazwa" @@ -13843,6 +13891,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert jest ustawiony na 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "tablica PHP" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/pt.po b/po/pt.po index 0b77d9abad..e1b7374710 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: portuguese \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Mostrar tudo" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Pesquisar" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Pesquisar" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Executar" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "A base de dados %1$s foi criada." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Comentário da Base de Dados: " @@ -120,17 +123,17 @@ msgstr "Comentário da Base de Dados: " msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Coluna" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tipo" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Nulo" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Nulo" msgid "Default" msgstr "Omissão" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Links para" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Comentários" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Não" @@ -242,19 +248,22 @@ msgstr "Não" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Sim" @@ -262,8 +271,8 @@ msgstr "Sim" msgid "View dump (schema) of database" msgstr "Ver o esquema da base de dados" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada na base de dados." @@ -279,74 +288,74 @@ msgstr "Limpa Todas as Selecções" msgid "The database name is empty!" msgstr "O nome da base de dados está vazia!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "O nome da base de dados %1$s foi alterado para %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "A base de dados %1$s foi copiada para %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Alterar o nome da base de dados para" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Remover a Base de Dados" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "A base de dados %s foi eliminada." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Apagar a Base de Dados (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Copiar a Base de Dados para" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Somente a estrutura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Apenas dados" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Criar a Base de Dados antes de copiar (CREATE DATABASE)" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Adicionar restrições (constraints)" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Mudar para a Base de Dados copiada" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Mudar para a Base de Dados copiada" msgid "Collation" msgstr "Agrupamento (Collation)" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "As configurações do phpMyAdmin para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %shere%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Editar ou exporta o esquema relacional (schema)" @@ -375,16 +384,18 @@ msgstr "Editar ou exporta o esquema relacional (schema)" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Registos" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Tamanho" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "em uso" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Criação" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Última actualização" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -429,92 +440,15 @@ msgid_plural "%s tables" msgstr[0] "%s tabela" msgstr[1] "%s tabelas" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Tem que escolher pelo menos uma coluna para mostrar" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Ascendente" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Descendente" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Ordenação" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Mostrar" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Critérios" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Adicionar/Remover Linhas de Critérios" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Adicionar/Remover Colunas" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Atualizar consulta" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Usar Tabelas" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Ou" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "E" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins." - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Elim" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modificar" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Mudar para %sConstrutor Gráfico%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Consulta SQL na base de dados %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Executar Consulta" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -555,7 +489,7 @@ msgstr "Detecção de Alterações está activa." msgid "Tracking is not active." msgstr "Detecção de Alterações está desactivada." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o storage engine por defeito neste MySQL server." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Com os seleccionados:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Todos" @@ -606,31 +541,32 @@ msgstr "Todos" msgid "Check tables having overhead" msgstr "Verificar tabelas com overhead" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Limpa" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "Tabelas em tracking" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Base de Dados" @@ -702,18 +639,26 @@ msgstr "Actualizado" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Estado" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Acções" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Mostrar" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Apagar dados de tracking para esta tabela" @@ -754,20 +699,20 @@ msgstr "Log da Base de Dados" msgid "Bad type!" msgstr "Mau tipo!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "O tipo de export seleccionado tem de ser gravado em ficheiro!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Parâmetros inválidos!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Não existe espaço suficiente para gravar o ficheiro %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -775,12 +720,12 @@ msgstr "" "O ficheiro %s já existe no servidor, mude o nome do ficheiro ou verifique a " "opção de substituição (re-escrita)." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web não tem permissões para gravar o ficheiro %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "O Dump foi gravado para o ficheiro %s." @@ -803,7 +748,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometria" @@ -876,7 +821,7 @@ msgstr "" "Escolhe \"GeomFromText\" da coluna \"Função\" e cola a linha de caracteres " "abaixo no campo \"Valor\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -886,20 +831,20 @@ msgstr "" "favor reveja a %sdocumentação%s para encontrar formas de contornar este " "limite." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Mostrando Marcador" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Marcador apagado com sucesso." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Não foi possível ler o ficheiro" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -910,7 +855,7 @@ msgstr "" "suporte não se encontra implementado ou está desabilitado na sua " "configuração." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -921,30 +866,30 @@ msgstr "" "sua configuração PHP. Veja [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Impossível converter o conjunto de caracteres do ficheiro sem a biblioteca " "de conversão" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Não foi possível carregar os import plugins, por favor verifique a sua " "instalação!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import terminou com sucesso, %d queries executados." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -952,7 +897,7 @@ msgstr "" "Script timeout atingido, se pretender concluir o import, por favor volte a " "submeter o mesmo ficheiro que o import continuará." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -961,8 +906,8 @@ msgstr "" "significa que o phpMyAdmin não conseguirá terminar este import, sem que se " "incremente os tempos de limite de php." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -979,7 +924,7 @@ msgstr "" "O phpMyAdmin torna-se mais agradável se usado num browser que suporte " "frames." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Os comandos \"DROP DATABASE\" estão inibidos." @@ -988,7 +933,7 @@ msgstr "Os comandos \"DROP DATABASE\" estão inibidos." msgid "Do you really want to execute \"%s\"?" msgstr "Você realmente deseja executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Estará prestes a DESTRUIR uma base de dados completa!" @@ -1046,17 +991,21 @@ msgstr "O nome da máquina está vazio!" msgid "The user name is empty!" msgstr "O nome do utilizador está vazio!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Indique a palavras-passe!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "" "As palavras-passe são diferentes!\\nLembre-se de confirmar a palavra-passe!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Adicionar utilizador" @@ -1076,9 +1025,9 @@ msgstr "Fechar" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1324,12 +1273,13 @@ msgstr "Adicionar gráfico a grelha" msgid "Please add at least one variable to the series" msgstr "Por favor adicione pelo menos uma variável à serie" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Nenhum" @@ -1515,10 +1465,10 @@ msgid "Explain output" msgstr "Explicar SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Tempo" @@ -1812,7 +1762,7 @@ msgstr "Mostrar Caixa do query" msgid "No rows selected" msgstr "Nenhum registo(linha) seleccionado." -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Muda" @@ -1821,8 +1771,8 @@ msgstr "Muda" msgid "Query execution time" msgstr "Tempo de execução da consulta" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1898,7 +1848,7 @@ msgstr "Conteúdo do ponto de dados" msgid "Ignore" msgstr "Ignora" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Copiar" @@ -2385,14 +2335,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Erro" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Comando SQL" @@ -2403,7 +2353,7 @@ msgstr "Comando SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2432,6 +2382,10 @@ msgstr "sem código PHP" msgid "Create PHP Code" msgstr "Criar código PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Executar Consulta" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2456,7 +2410,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2483,14 +2437,14 @@ msgstr "Parâmetros em falta:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Início" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2498,7 +2452,7 @@ msgstr "Anterior" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2506,7 +2460,7 @@ msgstr "Seguinte" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Fim" @@ -2527,16 +2481,17 @@ msgstr "Clique para alternar" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Estrutura" @@ -2544,21 +2499,20 @@ msgstr "Estrutura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insere" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Procurar" @@ -2579,21 +2533,21 @@ msgstr "Procurar no seu computador:" msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir da directoria de upload do servidor %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Não é possivel alcançar a directoria que configurou para fazer upload" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Executar" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Imprimir" @@ -2612,6 +2566,74 @@ msgstr "" msgid "Font size" msgstr "Tamanho da fonte" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Ascendente" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Descendente" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Ordenação" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Critérios" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Adicionar/Remover Linhas de Critérios" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Adicionar/Remover Colunas" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Atualizar consulta" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Usar Tabelas" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Ou" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "E" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins." + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Elim" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modificar" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Consulta SQL na base de dados %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "pelo menos uma das palavras" @@ -2654,8 +2676,8 @@ msgstr[1] "%1$s resultados na tabela %2$s" msgid "Delete the matches for the %s table?" msgstr "Apagar os semelhantes para a %s tabela?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2690,71 +2712,71 @@ msgstr "Dentro de Tabela(s):" msgid "Inside column:" msgstr "Dentro da coluna:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Adicionar/Remover Campos" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy msgid "Start row" msgstr "Estado" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "Número de registos por página" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Seg" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontal (cabeçalhos rodados)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Ordenar por chave" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2768,115 +2790,115 @@ msgstr "Ordenar por chave" msgid "Options" msgstr "Operações" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Texto parcial" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Texto inteiro" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Esquema relacional" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Esquema relacional" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Mostrar conteúdo binário como HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Transformação do navegador" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Registo eliminado" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Termina" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "na pesquisa" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Mostrando registos" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Vista de impressão (com texto inteiro)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar o esquema de PDF" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Versão do servidor" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Link não encontrado" @@ -3003,8 +3025,8 @@ msgstr "" "Os Índices %1$s e %2$s parecem ser iguais ou um deles pode ter sido removido." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Base de Dados" @@ -3020,11 +3042,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3042,9 +3064,9 @@ msgstr "" msgid "Query" msgstr "Pesquisa por formulário" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilégios" @@ -3053,7 +3075,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" @@ -3155,45 +3177,45 @@ msgstr "%s está desactivado neste servidor MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Este servidor MySQL não suporta o mecanismo de armazenamento %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "Estado da tabela desconhecido: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Pesquisar na Base de Dados" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s não encontrado!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Base de Dados inválida" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Nome de tabela inválido" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Erro ao mudar o nome da tabela %1$s para %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %s renomeada para %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Não foi possível salvar as preferências de interface da tabela" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3202,7 +3224,7 @@ msgstr "" "Falha ao limpar as preferências de interface da tabela (consulte $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3214,7 +3236,7 @@ msgstr "" "estrutura da tabela foi alterada." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funções" @@ -3227,7 +3249,7 @@ msgstr "Operações" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3272,7 +3294,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3636,7 +3658,7 @@ msgstr "compartilhado" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabelas" @@ -3647,9 +3669,10 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Dados" @@ -3773,32 +3796,32 @@ msgid "Disabled" msgstr "Desactidado" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "estrutura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "dados" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "estrutura e dados" @@ -4231,13 +4254,13 @@ msgstr "Compressão" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Colocar os nomes das colunas na primeira linha" @@ -4264,7 +4287,6 @@ msgstr "Campos precedidos por" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Substituir NULL por" @@ -4306,25 +4328,24 @@ msgstr "Nome do ficheiro modelo" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s tabela(s)" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Incluir a legenda da tabela" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Legenda da tabela" @@ -4333,14 +4354,14 @@ msgid "Continued table caption" msgstr "Continuação da legenda da tabela" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-type" @@ -4382,7 +4403,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4396,7 +4417,7 @@ msgid "Use delayed inserts" msgstr "Instrucções de inserção múltiplas" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4414,7 +4435,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4424,7 +4445,7 @@ msgid "Export type" msgstr "Tipo de Exportação" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4479,7 +4500,6 @@ msgstr "Opções de exportação da Base de Dados" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "Dados CSV" @@ -4542,7 +4562,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4783,7 +4802,6 @@ msgid "Customize text input fields" msgstr "Opções de exportação da Base de Dados" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5897,9 +5915,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Palavra-passe" @@ -6066,7 +6086,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6088,19 +6107,16 @@ msgstr "Opções de exportação da Base de Dados" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "dados CSV para MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6156,25 +6172,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6185,13 +6201,15 @@ msgid "Change password" msgstr "Alterar a palavra-passe" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Sem palavra-passe" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Confirma" @@ -6214,8 +6232,9 @@ msgstr "Criar nova base de dados" msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Sem Privilégios" @@ -6226,12 +6245,12 @@ msgid "Create table" msgstr "Criar uma Página nova" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nome" @@ -6397,7 +6416,7 @@ msgid "View output as text" msgstr "envia" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6862,51 +6881,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Somente a estrutura" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6978,12 +6997,12 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7239,7 +7258,7 @@ msgstr "Documentação do phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7357,84 +7376,84 @@ msgstr "Nenhuma chave de autenticação válida foi conectada" msgid "Authenticating..." msgstr "A Autenticar..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Linhas terminadas por" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Campos delimitados por" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Campos precedidos por" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Linhas terminadas por" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Substituir NULL por" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Edição Excel" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Opções de exportação da Base de Dados" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Enviado" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7442,25 +7461,25 @@ msgstr "Enviado" msgid "Definition" msgstr "Descrição" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Estrutura da tabela" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Somente estrutura" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 #, fuzzy msgid "Stand-in structure for view" msgstr "Somente estrutura" @@ -7477,258 +7496,249 @@ msgstr "(continuação)" msgid "Structure of table @TABLE@" msgstr "estructura da tabela @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Opções de tranformação" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Legenda da tabela" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Mostrando comentários das Colunas" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "MIME-types disponíveis" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Máquina" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Data de Criação" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versão do servidor" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "versão do PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy msgid "Export table names" msgstr "Tipo de Exportação" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horizontal (cabeçalhos rodados)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy msgid "Report title:" msgstr "Tipo de Exportação" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Itens" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Itens" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Opções de tranformação" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "Processos" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "Funções" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 #, fuzzy msgid "Constraints for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Permite ler dados." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 #, fuzzy msgid "Export contents" msgstr "Tipo de Exportação" @@ -7798,6 +7808,10 @@ msgstr "Nome dos Campos" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7851,6 +7865,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8043,11 +8061,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "sem Descrição" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Nenhum" @@ -8067,9 +8086,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Nome do Utilizador" @@ -8106,34 +8126,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Qualquer utilizador" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Usar campo de texto" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Qualquer máquina" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Este Anfitrião" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Usar a tabela do anfitrião" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8147,7 +8176,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8185,8 +8214,8 @@ msgid "Edit event" msgstr "Enviado" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" @@ -8272,7 +8301,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8415,25 +8445,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +msgid "Execution results of routine %s" +msgstr "Permite criar novas tabelas." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -msgid "Execution results of routine %s" -msgstr "Permite criar novas tabelas." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8589,29 +8619,29 @@ msgstr "Não foram encontradas tabelas na base de dados" msgid "There are no events to display." msgstr "Tabelas em tracking" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "A tabela \"%s\" não existe!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure as cordenadas para a tabela %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8759,6 +8789,459 @@ msgstr "" msgid "Current Server" msgstr "Servidor" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Sem privilégios." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "inclui todos os privilégios excepto Conceção - GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Permite ler dados." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Permite inserir e substituir dados." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Permite alterar dados." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Permite apagar dados." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Permite criar novas Bases de Dados e tabelas." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Permite apagar Bases de Dados e tabelas." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Permite desligar o servidor." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Permite importar dados de... e exportar dados para ficheiros." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Não tem efeito nesta versão do MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Permite criar e apagar indexes." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Permite alterar a estrutura de tabelas existentes." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Dá acesso à lista de bases de dados completa." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Permite criar tabelas temporárias." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +#, fuzzy +msgid "Allows creating new views." +msgstr "Permite criar novas tabelas." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Permite criar e apagar indexes." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +#, fuzzy +msgid "Allows creating stored routines." +msgstr "Permite criar novas tabelas." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +#, fuzzy +msgid "Allows altering and dropping stored routines." +msgstr "Permite criar e apagar indexes." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +#, fuzzy +msgid "Allows executing stored routines." +msgstr "Permite criar novas tabelas." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Nenhum" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Limites do recurso" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limits the number of new connections the user may open per hour." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Privilégios específicos da tabela" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Nota: os nomes dos privilégios do MySQL são em Inglês" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administração" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Privilégios Globais" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Privilégios específicos da Base de Dados" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Permite criar novas tabelas." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Permite apagar Bases de Dados." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Permite adicionar utilizadores e privilégios sem recarregar a tabela de " +"privilégios." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Informação de Login" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Mantendo a palavra-passe" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "A palavra-passe para %s foi alterada com sucesso." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Anulou os privilégios para %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Verificar Privilégios para a Base de Dados "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Utilizadores que tem acesso a "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Utilizador" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Conceder/Grant" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "A Vista %s foi eliminada" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Todos" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Especifico da Base de Dados" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Nenhum utilizador encontrado." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Alterar Privilegios" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Anula" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Exportar" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... manter o antigo." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... apagar o antigo das tabelas do utilizador." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... revogar todos os privilégios activos do antigo e a seguir apagá-lo." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... apagar o antigo das tabelas do utilizador e depois recarregue os " +"privilégios." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Mudar a informação de login / Copiar Utilizador" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Criar um novo utilizador com os mesmo privilégios e ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Privilégios específicos da Coluna" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Adicionar privilégios na base de dados seguinte" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Todos privilégios na tabela seguinte" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Remover utilizadores seleccionados" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "A recarregar privilégios" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Os utilizadores selecionado foram apagados com sucesso." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Actualizou os privilégios de %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privilégios" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privilégios" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da " +"tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos " +"privilégios que o servidor usa se alterações manuais nele forem feitas. " +"Neste caso, deve %sreload the privileges%s antes de continuar." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "O utilizador selecionado não se encontra na tabela de privilégios." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Acrescentou um novo utilizador." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -8809,11 +9292,11 @@ msgstr "" msgid "Columns" msgstr "Nome dos Campos" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" @@ -9113,12 +9596,6 @@ msgstr "Versão do servidor" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Utilizador" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9670,449 +10147,20 @@ msgstr "" msgid "disabled" msgstr "Desactidado" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "inclui todos os privilégios excepto Conceção - GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Permite alterar a estrutura de tabelas existentes." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -#, fuzzy -msgid "Allows altering and dropping stored routines." -msgstr "Permite criar e apagar indexes." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Permite criar novas Bases de Dados e tabelas." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -#, fuzzy -msgid "Allows creating stored routines." -msgstr "Permite criar novas tabelas." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Permite criar novas tabelas." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Permite criar tabelas temporárias." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -#, fuzzy -msgid "Allows creating new views." -msgstr "Permite criar novas tabelas." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Permite apagar dados." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Permite apagar Bases de Dados e tabelas." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Permite apagar Bases de Dados." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -#, fuzzy -msgid "Allows executing stored routines." -msgstr "Permite criar novas tabelas." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Permite importar dados de... e exportar dados para ficheiros." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Permite adicionar utilizadores e privilégios sem recarregar a tabela de " -"privilégios." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Permite criar e apagar indexes." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Permite inserir e substituir dados." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Não tem efeito nesta versão do MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Permite ler dados." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Dá acesso à lista de bases de dados completa." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Permite desligar o servidor." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Permite criar e apagar indexes." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Permite alterar dados." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Sem privilégios." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Nenhum" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Privilégios específicos da tabela" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Nota: os nomes dos privilégios do MySQL são em Inglês" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administração" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Privilégios Globais" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Privilégios específicos da Base de Dados" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Limites do recurso" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Informação de Login" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Mantendo a palavra-passe" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Nenhum utilizador encontrado." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "O utilizador %s já existe!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Acrescentou um novo utilizador." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Actualizou os privilégios de %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Anulou os privilégios para %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "A palavra-passe para %s foi alterada com sucesso." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "A apagar %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "A recarregar privilégios" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Os utilizadores selecionado foram apagados com sucesso." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Alterar Privilegios" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Anula" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Exportar" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Todos" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilégios" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilégios" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Conceder/Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Remover utilizadores seleccionados" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da " -"tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos " -"privilégios que o servidor usa se alterações manuais nele forem feitas. " -"Neste caso, deve %sreload the privileges%s antes de continuar." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "O utilizador selecionado não se encontra na tabela de privilégios." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Privilégios específicos da Coluna" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Adicionar privilégios na base de dados seguinte" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Todos privilégios na tabela seguinte" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Mudar a informação de login / Copiar Utilizador" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Criar um novo utilizador com os mesmo privilégios e ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... manter o antigo." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... apagar o antigo das tabelas do utilizador." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... revogar todos os privilégios activos do antigo e a seguir apagá-lo." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... apagar o antigo das tabelas do utilizador e depois recarregue os " -"privilégios." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Verificar Privilégios para a Base de Dados "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Utilizadores que tem acesso a "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Especifico da Base de Dados" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "A Vista %s foi eliminada" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11716,41 +11764,41 @@ msgstr "" msgid "Wrong data" msgstr "Sem bases de dados" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Confirma : " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Resultado SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Gerado por" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etiqueta" diff --git a/po/pt_BR.po b/po/pt_BR.po index 6208d2daef..1fd3fb89b0 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-16 22:05+0200\n" "Last-Translator: Bruno Rafael \n" "Language-Team: brazilian_portuguese \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Mostrar tudo" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Procurar" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Executar" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Banco de dados %1$s foi criado." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Comentário do Banco de Dados: " @@ -120,17 +123,17 @@ msgstr "Comentário do Banco de Dados: " msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Coluna" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tipo" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Nulo" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Nulo" msgid "Default" msgstr "Padrão" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Links para" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Comentários" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Não" @@ -242,19 +248,22 @@ msgstr "Não" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Sim" @@ -262,8 +271,8 @@ msgstr "Sim" msgid "View dump (schema) of database" msgstr "Ver o esquema do Banco de Dados" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada no banco de dados." @@ -279,74 +288,74 @@ msgstr "Desmarcar Todos" msgid "The database name is empty!" msgstr "O nome do Banco de Dados está em branco!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Banco de Dados %1$s foi renomeado para %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Banco de Dados %1$s foi copiado para %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Renomear Banco de Dados para" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Remover Banco de Dados" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Banco de Dados %s foi eliminado." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Apagar o Banco de Dados (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Copiar Banco de Dados para" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Dados apenas" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Adicionar restrições" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Mudar para o Banco de Dados copiado" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Mudar para o Banco de Dados copiado" msgid "Collation" msgstr "Colação" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Editar ou exportar esquema relacional" @@ -375,16 +384,18 @@ msgstr "Editar ou exportar esquema relacional" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Registros" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Tamanho" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "em uso" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Criação" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Última atualização" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -429,92 +440,15 @@ msgid_plural "%s tables" msgstr[0] "%s tabela" msgstr[1] "%s tabelas" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Você deve escolher pelo menos uma coluna para exibir" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Ascendente" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Descendente" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Ordenar" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Mostrar" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Critério" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Adicionar/Remover critérios de linha" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Adicionar/Remover colunas" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Atualizar a consulta SQL" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Usar tabelas" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Ou" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "E" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Inserir" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Deletar" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modificar" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Alterar para %sconstrutor visual%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Consulta SQL ao Banco de Dados %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Enviar consulta SQL" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -555,7 +489,7 @@ msgstr "Rastreamento está ativo." msgid "Tracking is not active." msgstr "Rastreamento não está ativo." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Com marcados:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Marcar todos" @@ -606,31 +541,32 @@ msgstr "Marcar todos" msgid "Check tables having overhead" msgstr "Verificar sobre-carga" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Limpar" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "Tabelas rastreadas" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Banco de Dados" @@ -702,18 +639,26 @@ msgstr "Atualizado" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Ação" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Mostrar" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Excluir dados de monitoramento desta tabela" @@ -754,20 +699,20 @@ msgstr "Registro de log do Banco de Dados" msgid "Bad type!" msgstr "Tipo incorreto!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Tipo de exportação selecionada tem que ser salvo no arquivo!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Parâmetros incorretos!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espaço insuficiente para salvar o arquivo %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -775,12 +720,12 @@ msgstr "" "O arquivo %s já existe no servidor, mude o nome do arquivo ou verifique sua " "opção de sobrescrever." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web não tem permissão para salvar o arquivo %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump foi salvo no arquivo %s." @@ -803,7 +748,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometria" @@ -876,7 +821,7 @@ msgstr "" "Selecione \"GeomFromText\" no campo \"Function\" e cole a string abaixo no " "campo \"Value\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -885,20 +830,20 @@ msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "O marcador foi removido." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "O arquivo não pode ser lido" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -909,7 +854,7 @@ msgstr "" "suporte para ele não está implementado ou pode ter sido desabilitado por sua " "configuração." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -920,28 +865,28 @@ msgstr "" "sua configuração do PHP. Verifique a [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Impossível converter conjunto de caracteres deste arquivo sem a biblioteca " "de conversão" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Não foi possível carregar os plugins, verifique sua instalação!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importação finalizada com sucesso, %d consultas executadas." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -949,7 +894,7 @@ msgstr "" "Script passou do tempo limite, se você deseja terminar a importação, reenvie " "o mesmo arquivo que a importação será resumida." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -958,8 +903,8 @@ msgstr "" "que o phpMyAdmin não é capaz de finalizar essa importação à menos que você " "aumente o tempo limite do PHP." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -975,7 +920,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin é mais amigável com um navegador capaz de exibir frames." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "O comando \"DROP DATABASE\" está desabilitado." @@ -984,7 +929,7 @@ msgstr "O comando \"DROP DATABASE\" está desabilitado." msgid "Do you really want to execute \"%s\"?" msgstr "Você realmente deseja executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR um banco de dados completo!" @@ -1042,16 +987,20 @@ msgstr "O nome do servidor está vazio!" msgid "The user name is empty!" msgstr "O nome do usuário está em branco!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "A senha está em branco!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Adicionar usuário" @@ -1071,9 +1020,9 @@ msgstr "Fechar" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1325,12 +1274,13 @@ msgstr "Adicionar gráfico ajustado na grade" msgid "Please add at least one variable to the series" msgstr "Por favor adicione no mínimo uma variável à série" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Nenhum" @@ -1518,10 +1468,10 @@ msgid "Explain output" msgstr "Demonstrar saída" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Tempo" @@ -1816,7 +1766,7 @@ msgstr "Mostrar caixa de consulta" msgid "No rows selected" msgstr "Nenhum registro selecionado" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Alterar" @@ -1825,8 +1775,8 @@ msgstr "Alterar" msgid "Query execution time" msgstr "Tempo de execução da busca" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." @@ -1900,7 +1850,7 @@ msgstr "Conteúdo do ponteiro de dados" msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Copiar" @@ -2390,14 +2340,14 @@ msgid "en" msgstr "ing" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Erro" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "consulta SQL" @@ -2408,7 +2358,7 @@ msgstr "consulta SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2437,6 +2387,10 @@ msgstr "sem código PHP" msgid "Create PHP Code" msgstr "Criar código PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Enviar consulta SQL" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2461,7 +2415,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "na linha" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Perfil" @@ -2488,14 +2442,14 @@ msgstr "Parâmetros perdidos:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Início" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2503,7 +2457,7 @@ msgstr "Anterior" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2511,7 +2465,7 @@ msgstr "Próximo" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Fim" @@ -2532,16 +2486,17 @@ msgstr "Clique para alternar" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Estrutura" @@ -2549,21 +2504,20 @@ msgstr "Estrutura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Inserir" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Visualizar" @@ -2584,22 +2538,22 @@ msgstr "Procurar no seu computador:" msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir do diretório de upload do servidor %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Executar" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Imprimir" @@ -2618,6 +2572,74 @@ msgstr "" msgid "Font size" msgstr "Tamanho da fonte" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Ascendente" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Descendente" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Ordenar" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Critério" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Adicionar/Remover critérios de linha" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Adicionar/Remover colunas" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Atualizar a consulta SQL" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Usar tabelas" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Ou" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "E" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Inserir" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Deletar" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modificar" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Consulta SQL ao Banco de Dados %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "pelo menos uma das palavras" @@ -2660,8 +2682,8 @@ msgstr[1] "%1$s resultados dentro da tabela %2$s" msgid "Delete the matches for the %s table?" msgstr "Excluir correspondentes para a tabela %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2696,65 +2718,65 @@ msgstr "Dentro da(s) tabela(s):" msgid "Inside column:" msgstr "Dentro do campo:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Salvar dados editados" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Restaurar ordem da coluna" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Linha inicial" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Número de linhas" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Modo" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontal (cabeçalhos rotacionados)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Cabeçalho a cada %s linhas" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Ordenar pela chave" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2767,103 +2789,103 @@ msgstr "Ordenar pela chave" msgid "Options" msgstr "Opções" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Chave de relação" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Exibir coluna relacional" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Mostrar conteúdo binário" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Exibir conteúdo BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Mostrar conteúdo binário como HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Ocultar transformações do navegador" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Texto bem conhecido" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Binario bem conhecido" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Registro eliminado" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Matar" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Pode ser aproximado. Veja o FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "na consulta" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Mostrando registros" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Ver impressão (com textos completos)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Exibir gráfico" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Criar visualização" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Link não encontrado" @@ -2989,8 +3011,8 @@ msgstr "" "removida." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Banco de Dados" @@ -3006,11 +3028,11 @@ msgid "Tracking" msgstr "Rastreando" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Gatilhos" @@ -3028,9 +3050,9 @@ msgstr "Banco de Dados parece estar vazio!" msgid "Query" msgstr "Procurar por exemplo" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilégios" @@ -3039,7 +3061,7 @@ msgid "Routines" msgstr "Rotinas" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Eventos" @@ -3137,44 +3159,44 @@ msgstr "%s está desabilitado neste servidor MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Esse servidor MySQL não suporta o stored engine %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "Status da tabela desconhecida: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Procurar no Banco de Dados" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s não encontrado!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Banco de Dados inválido" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Nome de tabela inválida" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Erro ao renomear tabela %1$s para %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Table %1$s renomeada para %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Não foi possível salvar as preferências visuais da tabela" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3183,7 +3205,7 @@ msgstr "" "Falha ao limpar as preferências da tabela UI (veja $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3195,7 +3217,7 @@ msgstr "" "estrutura da tabela foi alterada." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Função" @@ -3207,7 +3229,7 @@ msgstr "Operador" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3252,7 +3274,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" @@ -3617,7 +3639,7 @@ msgstr "compartilhado" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabelas" @@ -3628,9 +3650,10 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Dados" @@ -3749,32 +3772,32 @@ msgid "Disabled" msgstr "Desabilitado" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "estrutura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "dados" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "estrutura e dados" @@ -4201,13 +4224,13 @@ msgstr "Compressão" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Colocar os nomes das colunas na primeira linha" @@ -4230,7 +4253,6 @@ msgstr "Colunas escapadas por" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Substituir NULL por" @@ -4270,23 +4292,22 @@ msgstr "Modelo de nome da tabela" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Esvaziar tabela" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Incluir legenda da tabela" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Leganda da Tabela" @@ -4295,14 +4316,14 @@ msgid "Continued table caption" msgstr "Continuação da legenda da tabela" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Rótulo da chave" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME" @@ -4339,7 +4360,7 @@ msgid "SQL compatibility mode" msgstr "Modo de compatibilidade SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CRIAR TABELA opções:" @@ -4352,7 +4373,7 @@ msgid "Use delayed inserts" msgstr "Usar inserções demoradas" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Desabilitar verificação de chaves estrangeiras" @@ -4369,7 +4390,7 @@ msgid "Syntax to use when inserting data" msgstr "Sintaxe a utilizar ao inserir dados" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Tamanho máximo da consulta gerada" @@ -4378,7 +4399,7 @@ msgid "Export type" msgstr "Tipo de exportação" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Encapsular exportação numa transação" @@ -4435,7 +4456,6 @@ msgstr "Personalizar opções padrão" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4494,7 +4514,6 @@ msgid "Set import and export directories and compression options" msgstr "Define diretórios de importação e exportação e opções de compressão" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4726,7 +4745,6 @@ msgid "Customize text input fields" msgstr "Personalizar campos de entrada de texto" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texto Texy!" @@ -5919,9 +5937,11 @@ msgstr "Requer validador SQL para ser habilitado" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Senha" @@ -6103,7 +6123,6 @@ msgstr "CSV usando LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Planilha Open Document" @@ -6125,19 +6144,16 @@ msgstr "Opções de exportação do Banco de Dados" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV para dados MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Abrir Documento de Texto" @@ -6196,7 +6212,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "possível ataque de recursão profunda" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6204,20 +6220,20 @@ msgstr "" "O servidor não está respondendo (ou o soquete do servidor local não está " "configurado corretamente)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "O servidor não está respondendo." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" "Por favor verifique os privilégios do diretório que contém o banco de dados." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detalhes..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6229,13 +6245,15 @@ msgid "Change password" msgstr "Alterar a senha" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Sem senha" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Re-digite" @@ -6256,8 +6274,9 @@ msgstr "Criar banco de dados" msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Sem privilégios" @@ -6267,12 +6286,12 @@ msgid "Create table" msgstr "Criar tabela" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nome" @@ -6410,7 +6429,7 @@ msgid "View output as text" msgstr "Ver saida como texto" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Formato:" @@ -6929,52 +6948,52 @@ msgstr "O PrimeBase XT Blog por Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Não foram encontrados dados para a visualização GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou um conjunto vazio (ex. zero registros)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Visualize o conteúdo da estrutura clicando neste nome" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Altere qualquer uma destas configurações clicando no link \"Opções\" " "correspondente" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Edite a estrutura clicando em \"Estrutura\"" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Ir para bando de dados: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Editar configurações para %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Ir para tabela: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Estrutura do %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7047,11 +7066,11 @@ msgstr "" "Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover " "em qualquer direção" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" @@ -7299,7 +7318,7 @@ msgstr "Documentação do phpMyAdmin" msgid "Reload navigation frame" msgstr "Recarregar frame de navegação" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Esse formato não tem opções" @@ -7414,94 +7433,94 @@ msgstr "Nenhuma chave de autenticação válida foi conectada" msgid "Authenticating..." msgstr "Autenticando..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Colunas separadas com:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Colunas delimitadas por:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Campos escapou com:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Linhas terminadas com:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Substituir NULL com:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" "Remover retorno do carro/caractere de alimentação de linha dentro de colunas" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Edição do Excel:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Evento" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definição" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Estrutura da tabela" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Estrutura para visualizar" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Estrutura stand-in para visualizar" @@ -7517,97 +7536,86 @@ msgstr "(continuação)" msgid "Structure of table @TABLE@" msgstr "Estrutura da tabela @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Opções de criação de objetos" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Legenda da tabela(continuação)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Desabilitar verificação de chaves estrangeiras" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Exibir comentários" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Mostrar os MIME-type" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Servidor" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Tempo de Geração" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versão do Servidor" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Versão do PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Tabela MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy msgid "Export table names" msgstr "Tipo de exportação" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horizontal (cabeçalhos rotacionados)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Gerado um relatório contendo dados da tabela simples)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Título do Relatório:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "Array PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7615,11 +7623,11 @@ msgstr "" "Mostrar comentários (incluindo informação como data e hora de exportação, " "versão do PHP e versão do servidor)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Adicionar comentário pessoal no cabeçalho (\\n quebras de linha):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7627,25 +7635,25 @@ msgstr "" "Incluir data e hora quando bancos de dados forem criados, atualizados pela " "última vez e checados pela última vez." -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Sistema de banco de dados ou servidor de MySQL antigo para maximizar saída " "de compatível com:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Adicionar comando %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Adicionar instruções:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7653,32 +7661,39 @@ msgstr "" "Envolver nomes de tabela e colunas com crase (Proteger nomes de colunas e " "tabelas formados com caracteres especiais ou palavras chaves)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Opções de criação de objetos" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Em vez de declarar INSERT, use:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "declarações INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "declarações INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Função usada quando despejar dados:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Sintaxe para usar quando inserir dados:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7688,7 +7703,7 @@ msgstr "" "    Exemplo: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7698,7 +7713,7 @@ msgstr "" "    Exemplo: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7706,7 +7721,7 @@ msgstr "" "acima referidos
      Exemplo: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 #, fuzzy msgid "" "neither of the above
      Example: INSERT INTO " @@ -7715,7 +7730,7 @@ msgstr "" "Nenhuma das opções acima
      Exemplo: INSERT " "INTO tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7723,7 +7738,7 @@ msgstr "" "Esvaziar colunas binárias em notação hexadecimal (por exemplo, \"abc\" " "seria 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7732,50 +7747,45 @@ msgstr "" "serem esvaziadas e recarregadas entre servidores em zonas horárias " "diferentes)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedimentos" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funções" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Restrições para as tabelas dumpadas" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Restrições para a tabela" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPES PARA TABELA" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELAÇÕES PARA A TABELA" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Erro ao ler dados:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Opções de criação de objeto (todas são recomendadas)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Visualizações" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Exportar conteúdo" @@ -7849,6 +7859,10 @@ msgstr "Nome das colunas" msgid "This plugin does not support compressed imports!" msgstr "Esse plugin não suporta importações comprimidas!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Tabela MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7907,6 +7921,10 @@ msgstr "Modo de compatibilidade SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Não use AUTO_INCREMENT para valores zerados" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8160,11 +8178,12 @@ msgstr "" "Logar novamente no phpMyAdmin para carregar o arquivo de configuração " "atualizado." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "sem Descrição" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Desmarcar todos" @@ -8187,9 +8206,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Nome do usuário" @@ -8226,34 +8246,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Adicionar escravo de replicação de usuário" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Qualquer usuário" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Usar campo texto" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Qualquer servidor" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Esse Servidor" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Usar Tabela do Servidor" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8269,7 +8298,7 @@ msgstr "Gerar Senha" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8306,8 +8335,8 @@ msgid "Edit event" msgstr "Editar evento" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Erro no processamento da requisição" @@ -8383,7 +8412,8 @@ msgstr "Você deve informar um tipo válido para o evento." msgid "You must provide an event definition." msgstr "Você deve informar uma definição do evento." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Novo" @@ -8522,25 +8552,25 @@ msgstr "Você deve informar um tipo de retorno válido para a rotina." msgid "You must provide a routine definition." msgstr "Você deve informar uma definição da rotina." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Resultados da execução da rotina %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d linha afetada pela última instrução dentro do procedimento" msgstr[1] "%d linhas afetadas pela última instrução dentro do procedimento" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Resultados da execução da rotina %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Executar rotina" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Parâmetros da rotina" @@ -8669,29 +8699,29 @@ msgstr "Nenhum evento com o nome %1$s foi encontrado no banco de dados %2$s" msgid "There are no events to display." msgstr "Não existem eventos para serem mostrados." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "A tabela \"%s\" não existe!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure as coordenadas para a tabela %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8829,6 +8859,464 @@ msgstr "Linguagem desconhecida: %1$s." msgid "Current Server" msgstr "Servidor Atual" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Sem privilégios." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Incluir todos os privilégios, exceto GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Permitir leitura dos dados." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Permitir inserir e substituir dados." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Permitir modificar dados." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Permitir apagar dados." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Permitir criar novas tabelas e Banco de Dados." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Permitir eliminar Banco de Dados e tabelas." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Permitir recarregar configurações do servidor e descarregar o cache do " +"servidor." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Permitir desligar o servidor." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Permitir visualizar processos de todos os usuários" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Permitir importar dados e exportar dados em arquivos." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Sem efeitos nesta versão do MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Permitir criar e eliminar índices." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Permitir alterar a estrutura das tabelas existentes." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Permitir acesso completo à lista de Bancos de Dados." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Permitir conectar, se o numero máximo de conexões for alcançado; Necessário " +"para muitas operações administrativas, como setar variáveis globais e matar " +"processos de outros usuários." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Permitir criar tabelas temporárias." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Permitir bloquear tabelas para a processo atual." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Precisar dos escravos de replicação." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Permitir criar novas visões." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Permitir iniciar eventos no cronograma de eventos" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Permitir criar e e largar em cadeia" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Permitir executar consultas SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Permitir criar stored routines." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Permitir alterar e apagar stored routines." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Permitir criar, apagar e renomear contas dos usuários." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Permitir executar stored routines." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Nenhum" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Limite dos recursos" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Limitar o número de consultas que podem ser enviadas ao servidor por hora." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Limitar o número de comandos que alteram Bancos de Dados ou tabelas que o " +"usuário pode executar por hora." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Limitar o numero de novas conexões que o usuário pode abrir por hora." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Privilégios específicos da tabela" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Nota: nomes de privilégios do MySQL são expressos em inglês" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administração" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Privilégios globais" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Privilégios específicos do Banco de Dados" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Permitir criar novas tabelas." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Permitir eliminar tabelas." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Permitir adicionar usuários e privilégios sem recarregar a tabela de " +"privilégios." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Informação de login" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Não mudar a senha" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "A senha para %s foi modificada com sucesso." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Você revogou os privilégios para %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Banco de Dados para usuário" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Criar Banco de Dados com o mesmo nome e conceder todos os privilégios" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Conceder todos os privilégios no banco de dados "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Usuários que têm acesso à "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Usuário" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Conceder/Grant" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Visão %s foi apagada" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Qualquer" + +#: libraries/server_privileges.lib.php:1622 +#, fuzzy +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Específico do Banco de Dados" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "coringa" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Nenhum usuário(s) encontrado." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Editar Privilégios" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Revogar" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Exportar" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... manter o antigo." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... apagar o antigo da tabela de usuários." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... revogar todos privilégios do usuário antigo e depois apagar ele." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... apagar o antigo da tabela de usuários e depois recarregar os " +"privilégios." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Mudar informações de login / Copiar usuário" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Criar um novo usuário com os mesmos privilégios e ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Privilégios específicos da coluna" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Adicionar privilégios nas seguintes Banco de Dados" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Coringas _ e % precisam ser precedidos com uma \\ para serem usados " +"literalmente" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Adicionar privilégios nas seguintes tabelas" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Remover os usuários selecionados" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Revogar todos os privilégios ativos dos usuarios e depois apagar eles." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Nenhum usuário selecionado para exclusão!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Recarregando os privilégios" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Os usuários selecionados foram apagados com sucesso." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Você mudou os priviléios para %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privilégios" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privilégios" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Avaliação dos usuários" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela " +"de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos " +"privilégios que o servidor usa se alterações manuais forem feitas nele. " +"Neste caso, você deve usar %sRELOAD PRIVILEGES%s antes de continuar.." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Você adicionou um novo usuário." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -8879,11 +9367,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Nome das colunas" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Gravar essa consulta SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" @@ -9190,12 +9678,6 @@ msgstr "Exibir versões" msgid "Protocol version" msgstr "Versão do Protocolo" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Usuário" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -9756,454 +10238,20 @@ msgstr "" msgid "disabled" msgstr "Desabilitado" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Incluir todos os privilégios, exceto GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Permitir alterar a estrutura das tabelas existentes." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Permitir alterar e apagar stored routines." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Permitir criar novas tabelas e Banco de Dados." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Permitir criar stored routines." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Permitir criar novas tabelas." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Permitir criar tabelas temporárias." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Permitir criar, apagar e renomear contas dos usuários." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Permitir criar novas visões." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Permitir apagar dados." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Permitir eliminar Banco de Dados e tabelas." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Permitir eliminar tabelas." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Permitir iniciar eventos no cronograma de eventos" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Permitir executar stored routines." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Permitir importar dados e exportar dados em arquivos." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Permitir adicionar usuários e privilégios sem recarregar a tabela de " -"privilégios." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Permitir criar e eliminar índices." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Permitir inserir e substituir dados." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Permitir bloquear tabelas para a processo atual." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Limitar o numero de novas conexões que o usuário pode abrir por hora." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Limitar o número de consultas que podem ser enviadas ao servidor por hora." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Limitar o número de comandos que alteram Bancos de Dados ou tabelas que o " -"usuário pode executar por hora." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Permitir visualizar processos de todos os usuários" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Sem efeitos nesta versão do MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Permitir recarregar configurações do servidor e descarregar o cache do " -"servidor." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Precisar dos escravos de replicação." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Permitir leitura dos dados." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Permitir acesso completo à lista de Bancos de Dados." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Permitir executar consultas SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Permitir desligar o servidor." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Permitir conectar, se o numero máximo de conexões for alcançado; Necessário " -"para muitas operações administrativas, como setar variáveis globais e matar " -"processos de outros usuários." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Permitir criar e e largar em cadeia" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Permitir modificar dados." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Sem privilégios." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Nenhum" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Privilégios específicos da tabela" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Nota: nomes de privilégios do MySQL são expressos em inglês" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administração" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Privilégios globais" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Privilégios específicos do Banco de Dados" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Limite dos recursos" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Informação de login" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Não mudar a senha" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Nenhum usuário(s) encontrado." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "O usuário %s já existe!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Você adicionou um novo usuário." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Você mudou os priviléios para %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Você revogou os privilégios para %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "A senha para %s foi modificada com sucesso." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Eliminando %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Nenhum usuário selecionado para exclusão!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Recarregando os privilégios" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Os usuários selecionados foram apagados com sucesso." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Editar Privilégios" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Revogar" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Exportar" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Qualquer" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilégios" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilégios" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Avaliação dos usuários" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Conceder/Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Remover os usuários selecionados" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Revogar todos os privilégios ativos dos usuarios e depois apagar eles." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela " -"de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos " -"privilégios que o servidor usa se alterações manuais forem feitas nele. " -"Neste caso, você deve usar %sRELOAD PRIVILEGES%s antes de continuar.." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Privilégios específicos da coluna" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Adicionar privilégios nas seguintes Banco de Dados" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Coringas _ e % precisam ser precedidos com uma \\ para serem usados " -"literalmente" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Adicionar privilégios nas seguintes tabelas" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Mudar informações de login / Copiar usuário" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Criar um novo usuário com os mesmos privilégios e ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... manter o antigo." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... apagar o antigo da tabela de usuários." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... revogar todos privilégios do usuário antigo e depois apagar ele." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... apagar o antigo da tabela de usuários e depois recarregar os " -"privilégios." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Banco de Dados para usuário" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Criar Banco de Dados com o mesmo nome e conceder todos os privilégios" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Conceder todos os privilégios no banco de dados "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Usuários que têm acesso à "%s"" - -#: server_privileges.php:2544 -#, fuzzy -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Específico do Banco de Dados" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "coringa" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Visão %s foi apagada" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11962,37 +12010,37 @@ msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais." msgid "Wrong data" msgstr "Não existem dados" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usando marcador \"%s\" como padrão." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Você realmente deseja executar a Query SQL a seguir?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Exibindo como código PHP" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Resultado SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Gerado por" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com o índice da tabela `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Nome" @@ -13938,6 +13986,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está com valor 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "Array PHP" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/ro.po b/po/ro.po index 9290134e99..6273fc3b6e 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-06-30 17:07+0200\n" "Last-Translator: Alex Marin \n" "Language-Team: romanian \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Arată toate" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Caută" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Caută" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Execută" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza de date %1$s a fost creată." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " @@ -121,17 +124,17 @@ msgstr "Comentarii referitoare la baza de date: " msgid "Table comments" msgstr "Comentarii tabel" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Coloană" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tip" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Nul" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Nul" msgid "Default" msgstr "Setare de bază" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Trimitere la" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Comentarii" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nu" @@ -243,19 +249,22 @@ msgstr "Nu" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Da" @@ -263,8 +272,8 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Vizualizarea schemei bazei de date" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Nu s-a găsit nici un tabel în baza de date." @@ -280,74 +289,74 @@ msgstr "Deselectează tot" msgid "The database name is empty!" msgstr "Cîmpul de denumire al bazei de date este gol!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Baza de date %1$s a fost redenumită în %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Baza de date %1$s a fost copiata la %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Redenumire bază de date în" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Elimină baza de date" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Baza de date %s a fost aruncată." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Ștergeți baza de date (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Copiază baza de date" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Numai structura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Structura și date" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Numai date" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Adăugare %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Adaugă constrângeri" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Schimbă la tabela copiată" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "Schimbă la tabela copiată" msgid "Collation" msgstr "Interclasare" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -366,7 +375,7 @@ msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce, click %saici%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Editați sau exportați schema relațională" @@ -376,16 +385,18 @@ msgstr "Editați sau exportați schema relațională" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Linie" @@ -395,13 +406,13 @@ msgid "Size" msgstr "Mărime" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "în folosință" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -409,7 +420,7 @@ msgstr "Creare" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -417,7 +428,7 @@ msgstr "Ultima actualizare" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,95 +442,16 @@ msgstr[0] "%s tabelă" msgstr[1] "%s tabele" msgstr[2] "%s tabele" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Trebuie să alegeți cel puțin o coloană pentru a putea afișa" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Crescătoare" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Descrescător" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sortare" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Afișează" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Criteriu" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Adaugă/șterge criteriu" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Adaugă/Șterge coloane" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Reînnoire comandă" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Utilizare tabele" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Sau" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Și" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Modificare" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Schimbă la tabela copiată" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Comandă SQL pe baza de date %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Trimite comanda" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -560,7 +492,7 @@ msgstr "Monitorizarea este activată." msgid "Tracking is not active." msgstr "Monitorizarea nu este activată." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -589,20 +521,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Cele bifate:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Marchează toate" @@ -610,31 +543,32 @@ msgstr "Marchează toate" msgid "Check tables having overhead" msgstr "Verificare depășit" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportă" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Vizualizare imprimare" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Golește" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -679,17 +613,18 @@ msgstr "Tabelele urmărite" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Baza de date" @@ -707,18 +642,26 @@ msgstr "Actualizat(ă)" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Stare" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Acțiune" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Afișează" + #: db_tracking.php:98 js/messages.php:34 #, fuzzy msgid "Delete tracking data for this table" @@ -766,22 +709,22 @@ msgstr "Jurnalul (log) bazei de date" msgid "Bad type!" msgstr "Tip interogare" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Tipul selectat pentru export trebuie salvat într-un fișier!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Routines" msgid "Bad parameters!" msgstr "Rutine" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spațiu insuficient pentru salvarea fișierului %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -789,12 +732,12 @@ msgstr "" "Fișierul %s există deja pe server. Schimbați denumirea fișierului sau bifați " "opțiunea de suprascriere." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serverul web nu are drepturile necesare pentru a salva fișierul %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Copia a fost salvată în fișierul %s." @@ -818,7 +761,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -901,7 +844,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -910,20 +853,20 @@ msgstr "" "Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " "%sdocumentație%s pentru căi de ocolire a acestei limite." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Afișînd semn de carte" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Eticheta a fost ștearsă." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Fișierul nu poate fi citit" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -934,7 +877,7 @@ msgstr "" "suportul pentru aceasta nu este implementat, fie este dezactivat de " "configurația dumneavoastră." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -944,41 +887,41 @@ msgstr "" "a fost trimit, ori mărimea fișierului a depășit mărimea maximă permisă de " "configurația PHP-ului dumneavoastră. Vedeți FAQ 1.16." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nu au putut fi încărcate modulele adiționale de import, vă rog verificați " "instalarea!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Semnul de carte %s a fost creat" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importul s-a terminat cu succes, %d interogări executate." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -995,7 +938,7 @@ msgstr "" "phpMyAdmin are o interfață mai prietenoasă cu un navigator ce lucreaza cu " "cadre." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." @@ -1005,7 +948,7 @@ msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." msgid "Do you really want to execute \"%s\"?" msgstr "Sigur doriți să " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Sunteți pe cale să DISTRUGEȚI o întreagă bază de date!" @@ -1066,16 +1009,20 @@ msgstr "Numele gazdei este gol!" msgid "The user name is empty!" msgstr "Numele de utilizator este gol!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Parola este goală!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Parolele nu corespund!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Adaugă utilizator" @@ -1099,9 +1046,9 @@ msgstr "Închide" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1372,12 +1319,13 @@ msgstr "Aliniere la grilă" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Nici unul(a)" @@ -1573,10 +1521,10 @@ msgid "Explain output" msgstr "Explică SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Timp" @@ -1900,7 +1848,7 @@ msgstr "Afișează casuță interogare" msgid "No rows selected" msgstr "Niciun rând selectat" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Schimbare" @@ -1909,8 +1857,8 @@ msgstr "Schimbare" msgid "Query execution time" msgstr "Durata de execuție a interogării" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d nu este un număr valid de rînduri." @@ -1991,7 +1939,7 @@ msgstr "Mărime pointer date" msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Copiază" @@ -2502,14 +2450,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Eroare" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Comanda SQL" @@ -2520,7 +2468,7 @@ msgstr "Comanda SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2550,6 +2498,10 @@ msgstr "fără cod PHP" msgid "Create PHP Code" msgstr "Creează cod PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Trimite comanda" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2576,7 +2528,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Motoare" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Creare profil" @@ -2605,7 +2557,7 @@ msgstr "Rutine" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2614,7 +2566,7 @@ msgstr "Începe" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2624,7 +2576,7 @@ msgstr "Anterior" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2634,7 +2586,7 @@ msgstr "Următorul" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2659,16 +2611,17 @@ msgstr "Click pentru a selecta" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Structură" @@ -2676,21 +2629,20 @@ msgstr "Structură" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Inserare" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Navigare" @@ -2712,21 +2664,21 @@ msgstr "Caută în calculatorul tău:" msgid "Select from the web server upload directory %s:" msgstr "director de încărcare al serverului Web" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Nu sunt fișiere pentru încărcare" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Execută" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Listare" @@ -2745,6 +2697,76 @@ msgstr "" msgid "Font size" msgstr "Dimensiune font" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Crescătoare" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Descrescător" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sortare" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Criteriu" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Adaugă/șterge criteriu" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Adaugă/Șterge coloane" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Reînnoire comandă" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Utilizare tabele" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Sau" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Și" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Modificare" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Comandă SQL pe baza de date %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "cel puțin unul dintre cuvinte" @@ -2789,8 +2811,8 @@ msgstr[2] "%s rezultat(e) în interiorul tabelului %s" msgid "Delete the matches for the %s table?" msgstr "Ștergeți potrivirile pentru tabelul %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2827,74 +2849,74 @@ msgstr "În interiorul tabelei(lor):" msgid "Inside column:" msgstr "In interiorul coloanei::" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy msgid "Save edited data" msgstr "Directorul de bază pentru date" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Adaugă/șterge coloane" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Dum" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Număr de cîmpuri" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Lun" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "orizontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "orizontal (colontitlu rotativ)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Capete de tabel la fiecare %s rânduri" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sortare după cheie" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2907,113 +2929,113 @@ msgstr "Sortare după cheie" msgid "Options" msgstr "Opțiuni" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Texte parțiale" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Texte întregi" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Cheie relațională" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relational display field" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Afişează conţinut binar" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Afişează conţinut BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Afișează conținutul binar ca HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Ascunde transformarea browser-ului" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Text Bine Cunoscut" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 #, fuzzy msgid "Well Known Binary" msgstr "Binar Bine Cunoscut" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Linia a fost ștearsă" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Oprește" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Poate fi aproximativ. Vezi FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "în interogarea" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Afișează înregistrări" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Vizualizare listare (împreună cu text)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Arată schema PDF" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Creare relație" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Legatură nevalidă" @@ -3138,8 +3160,8 @@ msgid "" msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Baze de date" @@ -3156,11 +3178,11 @@ msgid "Tracking" msgstr "Urmărire" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Declanșatori" @@ -3178,9 +3200,9 @@ msgstr "Baza de date pare a fi goală!" msgid "Query" msgstr "Interogare prin exemplu" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Drepturi de acces" @@ -3189,7 +3211,7 @@ msgid "Routines" msgstr "Rutine" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Evenimente" @@ -3290,53 +3312,53 @@ msgstr "%s a fost dezactivat pentru acest server MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Acest server MySQL nu susține motorul de stocare %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "status tabel necunoscut: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Baza de date sursă" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nu a fost găsită!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Bază de date nevalidă" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Denumire de tabel nevalidă" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Eroare la redenumirea tabelului %1$s în %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelului %s i s-a dat un numele de %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3345,7 +3367,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funcție" @@ -3357,7 +3379,7 @@ msgstr "Operand" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3402,7 +3424,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Caută printre valori necunoscute" @@ -3765,7 +3787,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabele" @@ -3776,9 +3798,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Date" @@ -3908,33 +3931,33 @@ msgid "Disabled" msgstr "Dezactivat" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Structură" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4368,13 +4391,13 @@ msgstr "Compresie" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Pune numele coloanelor în primul rând" @@ -4399,7 +4422,6 @@ msgstr "Cîmpuri realizate de" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Înlocuire NULL cu" @@ -4441,25 +4463,24 @@ msgstr "Șablon nume tabel" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "Dump tabel" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Include captură tabel" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Captură tabel" @@ -4468,14 +4489,14 @@ msgid "Continued table caption" msgstr "Continuare captură tabel" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Tasta label" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Tip MIME" @@ -4514,7 +4535,7 @@ msgid "SQL compatibility mode" msgstr "Regim de compatibilitate SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "opțiuni CREARE TABLE:" @@ -4527,7 +4548,7 @@ msgid "Use delayed inserts" msgstr "Folosește inserări întîrziate" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Dezactivare verificări de cheie străine" @@ -4544,7 +4565,7 @@ msgid "Syntax to use when inserting data" msgstr "Sintaxa ce va fi folosită la inserarea datelor" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Lungimea maximă a interogării create" @@ -4554,7 +4575,7 @@ msgid "Export type" msgstr "Modul de export" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Cuprinde exportarea într-o tranzacție" @@ -4611,7 +4632,6 @@ msgstr "Opțiuni de exportare a bazei de date" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4677,7 +4697,6 @@ msgstr "" "Setează directoarele de importare și exportare și opțiunile de compresie" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4931,7 +4950,6 @@ msgid "Customize text input fields" msgstr "Opțiuni de exportare a bazei de date" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! text" @@ -6192,9 +6210,11 @@ msgstr "Are nevoie de SQL Validator pentru a fi activată" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Parola" @@ -6380,7 +6400,6 @@ msgstr "CSV folosind LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Foaie de calcul Open Document" @@ -6404,19 +6423,16 @@ msgstr "Opțiuni de exportare a bazei de date" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "Date CSV pentru MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Text Open Document" @@ -6472,7 +6488,7 @@ msgstr "Extensia %s lipsește. Vă rugăm să vă verificați configurația PHP. msgid "possible deep recursion attack" msgstr "posibil atac adânc recursiv" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6480,23 +6496,23 @@ msgstr "" "Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat " "corect)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serverul nu răspunde" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" "Vă rugăm să verificați drepturile de acces ale directorului ce conține baza " "de date." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detalii..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6507,13 +6523,15 @@ msgid "Change password" msgstr "Schimbare parolă" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Nu există parolă" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Re-tastează" @@ -6536,8 +6554,9 @@ msgstr "Creează bază de date nouă" msgid "Create" msgstr "Creează" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Nu există drepturi de acces" @@ -6547,12 +6566,12 @@ msgid "Create table" msgstr "Creare tabel" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nume" @@ -6712,7 +6731,7 @@ msgid "View output as text" msgstr "Trimite" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7232,51 +7251,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Numai structura" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" @@ -7353,11 +7372,11 @@ msgstr "" "Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți " "pentru a merge în oricare direcție" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rînd inserat: %1$d" @@ -7610,7 +7629,7 @@ msgstr "Documentație phpMyAdmin" msgid "Reload navigation frame" msgstr "Personalizează cadrul principal" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7729,84 +7748,84 @@ msgstr "Nicio cheie valida de autentificare conectată" msgid "Authenticating..." msgstr "Se autentifică..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Linii terminate de" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Cîmpuri încadrate de" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Cîmpuri realizate de" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Linii terminate de" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Înlocuire NULL cu" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Ediția Excel" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy #| msgid "Databases display options" msgid "Data dump options" msgstr "Opțiuni de afișare a bazelor de date" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Salvarea datelor din tabel" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Eveniment" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7814,24 +7833,24 @@ msgstr "Eveniment" msgid "Definition" msgstr "Descriere" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Structura de tabel pentru tabelul" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Structură pentru vizualizare" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7847,262 +7866,253 @@ msgstr "(continuare)" msgid "Structure of table @TABLE@" msgstr "Structura tabelului @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Opțiuni de transformare" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Captură tabel" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Dezactivare verificări de cheie străine" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Arată comentariile coloanei" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Tipuri MIME disponibile" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Gazda" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Timp de generare" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versiune server" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Versiune PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy msgid "Export table names" msgstr "Modul de export" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "orizontal (colontitlu rotativ)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Generează un raport conținînd datele unui singur tabel)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Titlu raport" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Adăugare comentariu la antet (\\n înseamnă delimitare de rînd)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Comenzi" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Comenzi" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Opțiuni de transformare" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Proceduri" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funcții" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Restrictii pentru tabele" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "TIPURI MIME PENTRU TABEL" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELAȚII PENTRU TABEL" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Permite citirea datelor." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Vizualizare" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 #, fuzzy msgid "Export contents" msgstr "Modul de export" @@ -8173,6 +8183,10 @@ msgstr "Denumirile coloanelor" msgid "This plugin does not support compressed imports!" msgstr "Modulul opțional nu suportă importuri comprimate!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." @@ -8231,6 +8245,10 @@ msgstr "Regim de compatibilitate SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8495,11 +8513,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "Nu există descriere" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Demarchează toate" @@ -8522,9 +8541,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Nume utilizator" @@ -8559,34 +8579,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Oricare utilizator" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Utilizare cîmp text" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Oricare gazdă" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Această gazdă" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Utilizare tabel gazde" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8602,7 +8631,7 @@ msgstr "Generează parolă" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8640,8 +8669,8 @@ msgid "Edit event" msgstr "Editează evenimentul" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Eroare în procesarea cererii" @@ -8721,7 +8750,8 @@ msgstr "Trebuie să introduceți un tip valid pentru eveniment." msgid "You must provide an event definition." msgstr "Trebuie să introduceți o definiție pentru eveniment." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Nou" @@ -8871,7 +8901,12 @@ msgstr "Rutina trebuie să întoarcă un tip valid." msgid "You must provide a routine definition." msgstr "Trebuie să introduceți o definiție a rutinei." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Rezultatele execuției rutinei %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8879,18 +8914,13 @@ msgstr[0] "%d rând afectat de ultima declarație din cadrul procedurii" msgstr[1] "%d rânduri afectate de ultima declarație din cadrul procedurii" msgstr[2] "%d rânduri afectate de ultima declarație din cadrul procedurii" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Rezultatele execuției rutinei %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Executați rutina" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Parametrii rutinei" @@ -9047,29 +9077,29 @@ msgstr "Nu s-a găsit nici un tabel în baza de date." msgid "There are no events to display." msgstr "Nu există evenimente de afișat." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabelul „%s” nu există!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configureaza coordonatelepentru tabelul %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9217,6 +9247,471 @@ msgstr "Limbă necunoscută: %1$s." msgid "Current Server" msgstr "Server Curent" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Fără drepturi." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Include toate privilegiile, excluzand GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Permite citirea datelor." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Permite inserarea și înlocuirea datelor." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Permite schimbarea datelor." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Permite stergere de date." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Permite crearea de noi baze de date și tabele." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Permite stergerea unei baze de date sau a unor tabele." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Permite reîncărcarea setărilor de server și golirea memoriei cache a " +"serverului." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Permite oprirea serverului." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" +"Permite importarea datelor in fisiere și exportarea acestora din fisiere." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nu are efect în această versiune MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Permite crearea și stergerea indexurilor." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Permite alterarea structurii la tabelele deja existente." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Permite accesul la lista completă a bazelor de date." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Permite conexiuni, chiar dacă s-a atins numărul maxim de conexiuni; Necesară " +"pentru majoritatea operațiunilor administrative, cum ar fi setarea " +"variabilelor globale sau oprirea firelor de execuție a altor utilizatori." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Permite crearea de tabele temporare." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Permite blocarea tabelelor din firul curent de execuție." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Necesară pentru „slave replication”." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Permite utilizatorului de a interoga locația slave/master." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Permite crearea noilor viziuni." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Permite crearea și eliminarea declanșatorilor" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Permite executarea interogărilor SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Permite crearea rutinelor stocate." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Permite alterarea și aruncarea rutinelor stocate." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Permite executarea rutinelor stocate." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Nici unul(a)" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Limitare de resurse" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Observație: Prin stabilirea acestor opțiuni la 0 (zero) se elimină " +"restricția." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Limiteaza numarul de comenzi care pot fi trimise de utilizator către server " +"într-o oră." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei " +"baze de date executabile de utilizator într-o oră." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Limitează numărul de noi conexiuni care pot fi deschise de utilizator într-o " +"oră." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Drepturi specifice de tabele" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Important: numele drepturilor de acces MySQL apar în engleză" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administrare" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Privilegii globale" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Drepturi specifice bazei de date" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Permite crearea de noi tabele." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Permite aruncarea a unei baze de date." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor " +"de drepturi." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Informații de autentificare" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Nu schimbați parola" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Parola pentru %s a fost schimbată cu succes." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Drepturile tale au fost revocate pentru %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Bază de date pentru utilizatorul" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Creează o bază de date cu același nume și acordă toate privilegiile" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Verifică privilegiile pentru baza de date "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Utilizatorul are acces la "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Utilizator" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Permite" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Vizualizarea %s a fost eliminată" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Oricare" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "specific bazei de date" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "Metacaracter" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Nu s-a găsit nici un utilizator." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Editează drepturile de acces" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Revocare" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Exportă" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... menține cel vechi." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... șterge cel vechi din tabelul de utilizatori." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ...revocă toate privilegiile active de la utilizatorul vechi și șterge-l " +"după aceea." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Schimbă informațiile de autentificare/Copiază utilizator" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Creează un utilizator nou cu aceleași privilegii și..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Drepturi specifice coloanei" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Adaugă drepturi la baza de date următoare" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "Metacaracterele _ și % trebuiesc însoțite de \\ pentru a le aplica" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Adaugă drepturi la următorul tabel" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Eliminarea utilizatorilor selectați" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " +"acestora." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Aruncă baza de date care are același nume ca utilizatorul." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Nici un utilizator ales pentru ștergere!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Reîncărcarea drepturilor" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Utilizatorii selectați au fost eliminați." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Ați actualizat privilegiile pentru %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Drepturi de acces" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Drepturi de acces" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Descriere utilizator" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " +"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " +"În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " +"drepturilor%s." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Ați adăugat un nou utilizator." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Baza de date sursă" @@ -9267,11 +9762,11 @@ msgstr "Calendar" msgid "Columns" msgstr "Denumirile coloanelor" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" @@ -9576,12 +10071,6 @@ msgstr "Versiune server" msgid "Protocol version" msgstr "Versiune protocol" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Utilizator" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -10126,461 +10615,20 @@ msgstr "" msgid "disabled" msgstr "Dezactivat" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Include toate privilegiile, excluzand GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Permite alterarea structurii la tabelele deja existente." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Permite alterarea și aruncarea rutinelor stocate." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Permite crearea de noi baze de date și tabele." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Permite crearea rutinelor stocate." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Permite crearea de noi tabele." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Permite crearea de tabele temporare." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Permite crearea noilor viziuni." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Permite stergere de date." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Permite stergerea unei baze de date sau a unor tabele." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Permite aruncarea a unei baze de date." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Permite executarea rutinelor stocate." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" -"Permite importarea datelor in fisiere și exportarea acestora din fisiere." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor " -"de drepturi." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Permite crearea și stergerea indexurilor." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Permite inserarea și înlocuirea datelor." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Permite blocarea tabelelor din firul curent de execuție." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Limitează numărul de noi conexiuni care pot fi deschise de utilizator într-o " -"oră." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Limiteaza numarul de comenzi care pot fi trimise de utilizator către server " -"într-o oră." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei " -"baze de date executabile de utilizator într-o oră." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nu are efect în această versiune MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Permite reîncărcarea setărilor de server și golirea memoriei cache a " -"serverului." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Permite utilizatorului de a interoga locația slave/master." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Necesară pentru „slave replication”." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Permite citirea datelor." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Permite accesul la lista completă a bazelor de date." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Permite executarea interogărilor SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Permite oprirea serverului." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Permite conexiuni, chiar dacă s-a atins numărul maxim de conexiuni; Necesară " -"pentru majoritatea operațiunilor administrative, cum ar fi setarea " -"variabilelor globale sau oprirea firelor de execuție a altor utilizatori." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Permite crearea și eliminarea declanșatorilor" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Permite schimbarea datelor." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Fără drepturi." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Nici unul(a)" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Drepturi specifice de tabele" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Important: numele drepturilor de acces MySQL apar în engleză" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administrare" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Privilegii globale" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Drepturi specifice bazei de date" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Limitare de resurse" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Observație: Prin stabilirea acestor opțiuni la 0 (zero) se elimină " -"restricția." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Informații de autentificare" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Nu schimbați parola" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Nu s-a găsit nici un utilizator." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Ați adăugat un nou utilizator." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Ați actualizat privilegiile pentru %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Drepturile tale au fost revocate pentru %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Parola pentru %s a fost schimbată cu succes." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Șterge %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Nici un utilizator ales pentru ștergere!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Reîncărcarea drepturilor" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Utilizatorii selectați au fost eliminați." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Editează drepturile de acces" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Revocare" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Exportă" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Oricare" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Drepturi de acces" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Drepturi de acces" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Descriere utilizator" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Permite" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Eliminarea utilizatorilor selectați" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " -"acestora." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Aruncă baza de date care are același nume ca utilizatorul." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " -"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " -"În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " -"drepturilor%s." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Drepturi specifice coloanei" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Adaugă drepturi la baza de date următoare" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "Metacaracterele _ și % trebuiesc însoțite de \\ pentru a le aplica" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Adaugă drepturi la următorul tabel" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Schimbă informațiile de autentificare/Copiază utilizator" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Creează un utilizator nou cu aceleași privilegii și..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... menține cel vechi." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... șterge cel vechi din tabelul de utilizatori." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ...revocă toate privilegiile active de la utilizatorul vechi și șterge-l " -"după aceea." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Bază de date pentru utilizatorul" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Creează o bază de date cu același nume și acordă toate privilegiile" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Verifică privilegiile pentru baza de date "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Utilizatorul are acces la "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "specific bazei de date" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "Metacaracter" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Vizualizarea %s a fost eliminată" - #: server_replication.php:82 msgid "Unknown error" msgstr "Eroare necunoscută" @@ -12221,41 +12269,41 @@ msgstr "" msgid "Wrong data" msgstr "Nu sînt baze de date" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Sigur doriți să " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Afișare ca și cod PHP" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validează SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Rezultat SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Generat de" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etichetă" @@ -14111,6 +14159,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert este setat la 0" +#~ msgid "PDF" +#~ msgstr "PDF" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/ru.po b/po/ru.po index bead9f23a6..152b316321 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,20 +3,21 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" -"PO-Revision-Date: 2012-06-29 18:49+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" +"PO-Revision-Date: 2012-07-27 17:27+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Показать все" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Поиск" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Поиск" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "OK" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База данных %1$s была создана." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Комментарий к базе данных: " @@ -121,17 +124,17 @@ msgstr "Комментарий к базе данных: " msgid "Table comments" msgstr "Комментарий к таблице" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Поле" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Тип" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Null" msgid "Default" msgstr "По умолчанию" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Связи" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Комментарии" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Нет" @@ -243,19 +249,22 @@ msgstr "Нет" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Да" @@ -263,8 +272,8 @@ msgstr "Да" msgid "View dump (schema) of database" msgstr "Отобразить дамп (схему) базы данных" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Таблиц в базе данных не обнаружено." @@ -280,74 +289,74 @@ msgstr "Снять выделение" msgid "The database name is empty!" msgstr "Не указано имя базы данных!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "База данных %1$s переименована в %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "База данных %1$s скопирована в %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Переименовать базу данных в" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Удалить базу данных" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "База данных %s была удалена." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Удалить базу данных (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Скопировать базу данных в" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Только структура" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Структура и данные" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Только данные" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Перед копированием создать базу данных (CREATE DATABASE)" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Добавить %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Добавить ограничения" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Переключиться на скопированную базу данных" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "Переключиться на скопированную базу да msgid "Collation" msgstr "Сравнение" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -366,7 +375,7 @@ msgstr "" "Некоторые из расширенных возможностей phpMyAdmin недоступны. Для определения " "причины нажмите %sздесь%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Редакция или экспорт схемы связей" @@ -376,16 +385,18 @@ msgstr "Редакция или экспорт схемы связей" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Таблица" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Строки" @@ -395,13 +406,13 @@ msgid "Size" msgstr "Размер" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "используется" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -409,7 +420,7 @@ msgstr "Создание" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -417,7 +428,7 @@ msgstr "Последнее обновление" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,93 +442,16 @@ msgstr[0] "%s таблица" msgstr[1] "%s таблицы" msgstr[2] "%s таблиц" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "" "Для выполнения запроса, должен быть выбран отображаемый столбец/столбцы" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "По возрастанию" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "По убыванию" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Отсортировать" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Показать" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Критерий" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Добавить/удалить строки критериея" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Добавить/удалить столбцы" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Дополнить запрос" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Использовать таблицы" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Или" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "И" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Вставить" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Удалить" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Изменить" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Переключиться на %sвизуальный составитель запросов%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-запрос к базе данных %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Выполнить запрос" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -558,7 +492,7 @@ msgstr "Слежение включено." msgid "Tracking is not active." msgstr "Слежение выключено." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -588,20 +522,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "С отмеченными:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Отметить все" @@ -609,31 +544,32 @@ msgstr "Отметить все" msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Очистить" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -677,17 +613,18 @@ msgstr "Отслеживаемые таблицы" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "База данных" @@ -705,18 +642,26 @@ msgstr "Обновлён" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Состояние" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Действие" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Показать" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Удалить данные слежения за таблицей" @@ -757,20 +702,20 @@ msgstr "Журнал базы данных" msgid "Bad type!" msgstr "Ошибочный тип!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Выбранный тип экспорта возможен только в файл!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Ошибочные параметры!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Для сохранения файла %s недостаточно дискового пространства." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -778,12 +723,12 @@ msgstr "" "Файл %s уже существует на сервере, измените имя или включите параметр " "перезаписи." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Не достаточно прав для сохранения файла %s на веб-сервере." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп был сохранен в файл %s." @@ -806,7 +751,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Геометрия" @@ -879,7 +824,7 @@ msgstr "" "Из поля функции выберите \"GeomFromText\" и вставьте строку ниже, как " "значение" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -888,20 +833,20 @@ msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Отображение закладки" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Закладка удалена." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Ошибка при чтении файла" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -912,7 +857,7 @@ msgstr "" "может быть импортирован. Поддержка данного метода еще не реализована, либо " "отключена при конфигурировании." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -922,28 +867,28 @@ msgstr "" "импортируемого файла превышает максимально допустимый, заданный в настройках " "PHP. Смотрите [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Без необходимой библиотеки невозможна конвертация кодировки файла" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Отсутствуют модули импорта. Проверьте содержимое установленной копии " "phpMyAdmin!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Закладка "%s" создана" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импорт успешно завершен, запросов выполнено: %d." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -952,7 +897,7 @@ msgstr "" "его выбрав тот же файл, и процесс продолжится с того места на котором " "остановился." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -961,8 +906,8 @@ msgstr "" "означает, что phpMyAdmin не сможет завершить процесс импорта до тех пор, " "пока не будет увеличено ограничение времени выполнения php-сценариев." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -977,7 +922,7 @@ msgstr "Назад" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для работы phpMyAdmin нужен браузер с поддержкой фреймов." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена." @@ -986,7 +931,7 @@ msgstr "Команда \"DROP DATABASE\" (удалить базу данных) msgid "Do you really want to execute \"%s\"?" msgstr "Вы действительно хотите выполнить запрос \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "База данных будет полностью УДАЛЕНА!" @@ -1044,16 +989,20 @@ msgstr "Пустое имя хоста!" msgid "The user name is empty!" msgstr "Не задано имя пользователя!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Пароль не задан!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Добавить пользователя" @@ -1073,9 +1022,9 @@ msgstr "Закрыть" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1321,12 +1270,13 @@ msgstr "Добавить график к сетке" msgid "Please add at least one variable to the series" msgstr "Пожалуйста, добавьте в серию хотя бы одну переменную" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Нет" @@ -1513,10 +1463,10 @@ msgid "Explain output" msgstr "Анализ результатов" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Время" @@ -1809,7 +1759,7 @@ msgstr "Отобразить поле запроса" msgid "No rows selected" msgstr "Для совершения действия необходимо выбрать одну или несколько строк" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Изменить" @@ -1818,8 +1768,8 @@ msgstr "Изменить" msgid "Query execution time" msgstr "Время выполнения запроса" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "Число %d не является правильным номером строки." @@ -1892,7 +1842,7 @@ msgstr "Содержание точки данных" msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Копировать" @@ -2384,14 +2334,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Ошибка" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-запрос" @@ -2402,7 +2352,7 @@ msgstr "SQL-запрос" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2431,6 +2381,10 @@ msgstr "Убрать PHP-код" msgid "Create PHP Code" msgstr "PHP-код" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Выполнить запрос" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2455,7 +2409,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Быстрая правка" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Профилирование" @@ -2482,14 +2436,14 @@ msgstr "Отсутствующий параметр:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Начало" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2497,7 +2451,7 @@ msgstr "Предыдущая" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2505,7 +2459,7 @@ msgstr "Следующая" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Конец" @@ -2527,16 +2481,17 @@ msgstr "Кликните для переключения" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" @@ -2544,21 +2499,20 @@ msgstr "Структура" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Вставить" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Обзор" @@ -2579,21 +2533,21 @@ msgstr "Обзор вашего компьютера:" msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Файлы для загрузки отсутствуют" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Выполнить" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Печать" @@ -2612,6 +2566,74 @@ msgstr "" msgid "Font size" msgstr "Размер шрифта" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "По возрастанию" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "По убыванию" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Отсортировать" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Критерий" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Добавить/удалить строки критериея" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Добавить/удалить столбцы" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Дополнить запрос" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Использовать таблицы" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Или" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "И" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Вставить" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Удалить" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Изменить" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-запрос к базе данных %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "любое из слов" @@ -2654,8 +2676,8 @@ msgstr[2] "%1$s соответствий в таблице %2$s msgid "Delete the matches for the %s table?" msgstr "Удалить соответствия для таблицы %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2690,64 +2712,64 @@ msgstr "В таблицах:" msgid "Inside column:" msgstr "В поле:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Сохранить отредактированные данные" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Восстановить порядок столбцов" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Начальная строка" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Количество строк" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Режим" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "горизонтальном" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "горизонтальном (повернутые заголовки)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "вертикальном" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Заголовки каждые %s строк" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Сортировать по индексу" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2760,60 +2782,60 @@ msgstr "Сортировать по индексу" msgid "Options" msgstr "Параметры" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Сокращенные тексты" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Полные тексты" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Ссылочный ключ" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Отображение связанного поля" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Показать бинарные данные" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Показать BLOB содержимое" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Показывать бинарные данные в виде HEX значений" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Скрыть преобразование" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Текст (WKT)" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Бинарный (WKB)" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Запись была удалена" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Завершить" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2821,44 +2843,44 @@ msgstr "" "Может быть приблизительно. Смотрите [a@./Documentation." "html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "по запросу" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Отображает строки" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "всего" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Запрос занял %01.4f сек." -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Версия для печати (полностью)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Отобразить график" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Визуализация GIS данных" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Создать представление" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Связь не найдена" @@ -2984,8 +3006,8 @@ msgid "" msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Базы данных" @@ -3001,11 +3023,11 @@ msgid "Tracking" msgstr "Слежение" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Триггеры" @@ -3023,9 +3045,9 @@ msgstr "Пустая база данных!" msgid "Query" msgstr "Запрос по шаблону" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Привилегии" @@ -3034,7 +3056,7 @@ msgid "Routines" msgstr "Процедуры" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "События" @@ -3134,43 +3156,43 @@ msgstr "Тип таблиц %s был отключен на данном MySQL msgid "This MySQL server does not support the %s storage engine." msgstr "Данный сервер MySQL не поддерживает тип таблиц %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "Неизвестный статус таблицы: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "База данных `%s`, являющаяся источником, не найдена!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "База данных `%s`, являющаяся целевой, не найдена!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Некорректная база данных" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Неправильное имя таблицы" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Ошибка при переименовании таблицы %1$s в %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблица %1$s была переименована в %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Не получилось сохранить настройки интерфейса таблицы" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3179,7 +3201,7 @@ msgstr "" "Ошибка при очистке таблицы содержащей настройки пользовательского интерфейса " "(смотрите переменную $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3191,7 +3213,7 @@ msgstr "" "проверьте изменена ли структура таблицы." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функция" @@ -3203,7 +3225,7 @@ msgstr "Оператор" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3242,7 +3264,7 @@ msgid "Maximum rows to plot" msgstr "Максимальное количество строк для построения" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Обзор внешних значений" @@ -3658,7 +3680,7 @@ msgstr "общий" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Таблицы" @@ -3669,9 +3691,10 @@ msgstr "Таблицы" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Данные" @@ -3792,32 +3815,32 @@ msgid "Disabled" msgstr "Недоступно" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "структура" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "данные" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "структура и данные" @@ -4245,13 +4268,13 @@ msgstr "Упаковать" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Поместить названия полей в первой строке" @@ -4274,7 +4297,6 @@ msgstr "Символ экранирования" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Заменить NULL на" @@ -4314,23 +4336,22 @@ msgstr "Шаблон имени таблицы" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Сохранение таблицы" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Добавить заголовок таблицы" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Заголовок таблицы" @@ -4339,14 +4360,14 @@ msgid "Continued table caption" msgstr "Заголовок таблицы (продолжение)" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Идентификатор метки" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-тип" @@ -4383,7 +4404,7 @@ msgid "SQL compatibility mode" msgstr "Режим совместимости SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Параметры CREATE TABLE:" @@ -4396,7 +4417,7 @@ msgid "Use delayed inserts" msgstr "Использовать отложенные вставки (DELAYED)" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Отключить проверку внешних ключей" @@ -4413,7 +4434,7 @@ msgid "Syntax to use when inserting data" msgstr "Использовать синтаксис при вставке данных" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Максимальная длина создаваемого запроса" @@ -4422,7 +4443,7 @@ msgid "Export type" msgstr "Тип экспорта" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Заключить экспорт в транзакцию" @@ -4481,7 +4502,6 @@ msgstr "Настройте параметры экспорта использу #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4540,7 +4560,6 @@ msgid "Set import and export directories and compression options" msgstr "Установите директории импорта и экспорта, а так же параметры архивации" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4771,7 +4790,6 @@ msgid "Customize text input fields" msgstr "Настройте отображение текстовых полей" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! текст" @@ -5978,9 +5996,11 @@ msgstr "Требуется подключенный SQL валидатор" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Пароль" @@ -6163,7 +6183,6 @@ msgstr "CSV, используя LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" @@ -6185,19 +6204,16 @@ msgstr "Параметры экспорта базы данных" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV для MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "OpenDocument текст" @@ -6261,26 +6277,26 @@ msgstr "Расширение %s не найдено. Пожалуйста, пр msgid "possible deep recursion attack" msgstr "возможная атака глубокой рекурсии" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Сервер не отвечает (либо локальный сокет сервера MySQL неверно настроен)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Сервер не отвечает." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Детали..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ошибка при указании соединения для controluser в конфигурации." @@ -6291,13 +6307,15 @@ msgid "Change password" msgstr "Изменить пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Подтверждение" @@ -6318,8 +6336,9 @@ msgstr "Создать базу данных" msgid "Create" msgstr "Создать" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Нет привилегий" @@ -6329,12 +6348,12 @@ msgid "Create table" msgstr "Создать таблицу" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Имя" @@ -6474,7 +6493,7 @@ msgid "View output as text" msgstr "Отобразить вывод как текст" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Формат:" @@ -6987,50 +7006,50 @@ msgstr "Блог Пола Маккалаха (Paul McCullagh) посвященн msgid "No data found for GIS visualization." msgstr "Данные для визуализации GIS не найдены." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Просмотреть детали структуры нажав на её имя" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Изменить любую настройку нажав на соответствующую ссылку \"Параметры\"" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Отредактировать структуру перейдя по ссылке \"Структура\"" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Перейти к базе данных: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Отредактировать настройки для %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Перейти к таблице: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Структура %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Перейти к представлению (VIEW): %s" @@ -7101,11 +7120,11 @@ msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" @@ -7351,7 +7370,7 @@ msgstr "Документация phpMyAdmin" msgid "Reload navigation frame" msgstr "Обновить фрейм навигации" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Для этого формата нет настраиваемых параметров" @@ -7465,93 +7484,93 @@ msgstr "Отсутствует действенный подключенный msgid "Authenticating..." msgstr "Идентификация..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Разделитель полей:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Значения полей обрамлены:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Символ экранирования:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Разделитель строк:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Заменить NULL на:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Удалить из полей символы разрыва строк" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Версия Excel:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Параметры сохранения данных" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Дамп данных таблицы" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Событие" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Определение" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Структура таблицы" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Структура для представления" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Дублирующая структура для представления" @@ -7567,94 +7586,83 @@ msgstr "(продолжение)" msgid "Structure of table @TABLE@" msgstr "Структура таблицы @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Параметры создания объектов" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Заголовок таблицы (продолжение)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Отобразить связи внешних ключей" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Отобразить комментарии" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Отобразить MIME типы" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Хост" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Время создания" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Версия сервера" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Версия PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Таблица MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Экспорт имен таблиц" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Экспорт заголовков таблиц" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Создание отчета содержащего данные одной таблицы)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Заголовок отчета:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "Массив PHP" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7662,13 +7670,13 @@ msgstr "" "Вывести комментарии (включает такую информацию, как: время экспорта, " "версия PHP, и версия MySQL сервера)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Добавить в заголовок собственный комментарий (\n" " для разделения строк):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7676,25 +7684,25 @@ msgstr "" "Включить время создания базы данных, время последнего обновления, и время " "последней проверки" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Максимальная совместимость с системой базы данных, или устаревшей версией " "MySQL:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Добавить выражение %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Добавить выражения:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7702,32 +7710,38 @@ msgstr "" "Заключить имена таблиц и полей в обратные кавычки (Защищает имена таблиц " "и полей содержащих специальные символы или зарезервированные слова)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Параметры создания данных" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Очистить таблицу перед добавлением данных" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Использовать вместо INSERT выражения:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Использовать оператор при сохранении данных:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Использовать синтаксис при вставке данных:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7737,7 +7751,7 @@ msgstr "" "    Пример: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7747,7 +7761,7 @@ msgstr "" "      Пример: INSERT INTO tbl_name VALUES (1,2,3), " "(4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7756,7 +7770,7 @@ msgstr "" "INSERT INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7764,7 +7778,7 @@ msgstr "" "ни один из выше перечисленных
      Пример: " "INSERT INTO tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7772,7 +7786,7 @@ msgstr "" "Сохранение бинарных полей в шестнадцатеричном виде (к примеру, \"abc\" " "станет 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7781,50 +7795,45 @@ msgstr "" "поля с типом TIMESTAMP между серверами находящимися в различных временных " "зонах)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Процедуры" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Функции" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Ограничения внешнего ключа сохраненных таблиц" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Ограничения внешнего ключа таблицы" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПЫ ТАБЛИЦЫ" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "СВЯЗИ ТАБЛИЦЫ" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Ошибка считывания данных:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Параметры создания объекта (рекомендуется выбрать все)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Представления" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Экспортировать содержимое" @@ -7898,6 +7907,10 @@ msgstr "Названия столбцов" msgid "This plugin does not support compressed imports!" msgstr "Этот модуль не поддерживает импорт сжатых данных!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Таблица MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7957,6 +7970,10 @@ msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" "Не использовать атрибут AUTO_INCREMENT для нулевых значений" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8190,11 +8207,12 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Перезайдите в phpMyAdmin, чтобы загрузить обновленный конфигурационный файл." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "нет описания" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Снять выделение" @@ -8216,9 +8234,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Имя пользователя" @@ -8255,34 +8274,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Добавьте подчиненного пользователя репликации" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Любой пользователь" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Использовать текстовое поле" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Любой хост" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Локальный" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Этот хост" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Использовать таблицу хостов" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8298,7 +8326,7 @@ msgstr "Создать пароль" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8334,8 +8362,8 @@ msgid "Edit event" msgstr "Редактировать событие" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Ошибка при обработке запроса" @@ -8411,7 +8439,8 @@ msgstr "Необходимо задать корректный тип событ msgid "You must provide an event definition." msgstr "Вы должны задать определение события." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Новый" @@ -8545,7 +8574,12 @@ msgstr "Необходимо задать корректный возвраща msgid "You must provide a routine definition." msgstr "Вы должны задать определение процедуры." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Результаты выполнения процедуры %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8553,18 +8587,13 @@ msgstr[0] "Последним выражением в процедуре был msgstr[1] "Последним выражением в процедуре были затронуты %d строки" msgstr[2] "Последним выражением в процедуре было затронуто %d строк" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Результаты выполнения процедуры %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Выполнить процедуру" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Параметры процедуры" @@ -8693,28 +8722,28 @@ msgstr "В базе данных %2$s не найдено событие с им msgid "There are no events to display." msgstr "Отсутствуют события для отображения." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Таблица %s не существует!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Измените координаты таблицы %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Схема базы данных %s - Страница %s" @@ -8851,6 +8880,458 @@ msgstr "Неизвестный язык: %1$s." msgid "Current Server" msgstr "Текущий сервер" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Нет привилегий." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Содержит все привилегии, за исключением GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Разрешает выборку данных." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Разрешает вставку и замену данных." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Разрешает изменение данных." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Разрешает удаление данных." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Разрешает создание новых баз данных и таблиц." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Разрешает удаление баз данных и таблиц." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Разрешает остановку сервера." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Разрешает просмотр процессов всех пользователей" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Разрешает импорт и экспорт данных в файлы." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Не доступно в данной версии MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Разрешает создание и удаление индексов." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Разрешает изменение структуры существующих таблиц." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Разрешает доступ к полному списку баз данных." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Разрешает установку соединения, даже при достижении максимального количества " +"соединений. (Требуется для большинства административных задач, таких как " +"установка глобальных переменных или завершение процессов других " +"пользователей)." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Разрешает создание временных таблиц." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Разрешает блокировку таблиц для текущего потока." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Необходимо для подчиненных серверов при репликации." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Разрешает запрашивать местонахождение головного и подчиненных серверов." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Разрешает создание новых представлений (CREATE VIEW)." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Разрешает настройку отложенных событий" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Разрешает создание и удаление триггеров" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Разрешает создание хранимых процедур." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Разрешает изменение и удаление хранимых процедур." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" +"Разрешает создание, удаление и переименование учетных записей пользователей." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Разрешает выполнение хранимых процедур." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Нет" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ограничение на использование ресурсов" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Замечание: Установка значения параметров в 0 (ноль), снимает ограничения." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Максимальное количество запросов, которые пользователь может отправить в " +"течение часа." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Максимальное количество команд изменяющих какую-либо таблицу или базу " +"данных, которые пользователь может выполнить в течение часа." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Максимальное количество новых подключений, которые пользователь может " +"установить в течение часа." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Максимальное количество одновременных подключений одного пользователя." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Привилегии уровня таблицы" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Примечание: типы привилегий MySQL отображаются по-английски" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Администрирование" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Глобальные привилегии" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Привилегии уровня базы данных" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Разрешает создание новых таблиц." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Разрешает удаление таблиц." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Разрешает добавление пользователей и привилегий без перезагрузки таблиц " +"привилегий." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Информация учетной записи" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Не менять пароль" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Пароль для %s был успешно изменен." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Отменены привилегии для %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "База данных для пользователя" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" +"Создать базу данных с именем пользователя в названии и предоставить на нее " +"полные привилегии" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" +"Предоставить полные привилегии на базы данных подпадающие под шаблон (имя " +"пользователя\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Выставить полные привилегии на базу данных "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Пользователи с правами доступа к "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Пользователь" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "GRANT" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Пользователь был добавлен." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Любой" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "Глобальный уровень" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Уровень базы данных" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "Групповой символ" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Пользователь не найден." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Редактирование привилегий" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Отменить" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Экспорт" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "и сохранить старого." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "и удалить старого из таблиц пользователей." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr ", отменить все активные привилегии старого и затем удалить его." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Изменить/Копировать учетную запись" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Создать нового пользователя с такими же привилегиями..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Привилегии уровня столбца" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Добавить привилегии на следующую базу" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"При использовании в имени базы данных символов нижнего подчеркивания _ и " +"процента %, необходимо экранировать их символом обратной косой черты \\, в " +"противном случае они будут интерпретированы как групповые символы" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Добавить привилегии на следующую таблицу" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Удалить выделенных пользователей" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Отменить все активные привилегии пользователей и затем удалить их." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Не выбраны пользователи подлежащие удалению!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Перезагрузка привилегий" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Выбранные пользователи были успешно удалены." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Были изменены привилегии для %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Привилегии всех пользователей" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Привилегии для %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Обзор учетных записей" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Примечание: phpMyAdmin получает информацию о пользовательских привилегиях " +"непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может " +"отличаться от привилегий, используемых сервером, если они были изменены " +"вручную. В таком случае необходимо %sперезагрузить привилегии%s." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Выделенный пользователь не был найден в таблице привилегий." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Был добавлен новый пользователь." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Источник" @@ -8897,11 +9378,11 @@ msgstr "Очистить" msgid "Columns" msgstr "Столбцы" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" @@ -9180,12 +9661,6 @@ msgstr "Версия программы" msgid "Protocol version" msgstr "Версия протокола" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Пользователь" - #: main.php:217 msgid "Server charset" msgstr "Кодировка сервера" @@ -9709,448 +10184,20 @@ msgstr "Лицензия" msgid "disabled" msgstr "отключено" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Содержит все привилегии, за исключением GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Разрешает изменение структуры существующих таблиц." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Разрешает изменение и удаление хранимых процедур." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Разрешает создание новых баз данных и таблиц." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Разрешает создание хранимых процедур." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Разрешает создание новых таблиц." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Разрешает создание временных таблиц." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" -"Разрешает создание, удаление и переименование учетных записей пользователей." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Разрешает создание новых представлений (CREATE VIEW)." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Разрешает удаление данных." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Разрешает удаление баз данных и таблиц." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Разрешает удаление таблиц." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Разрешает настройку отложенных событий" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Разрешает выполнение хранимых процедур." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Разрешает импорт и экспорт данных в файлы." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Разрешает добавление пользователей и привилегий без перезагрузки таблиц " -"привилегий." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Разрешает создание и удаление индексов." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Разрешает вставку и замену данных." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Разрешает блокировку таблиц для текущего потока." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Максимальное количество новых подключений, которые пользователь может " -"установить в течение часа." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Максимальное количество запросов, которые пользователь может отправить в " -"течение часа." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Максимальное количество команд изменяющих какую-либо таблицу или базу " -"данных, которые пользователь может выполнить в течение часа." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Максимальное количество одновременных подключений одного пользователя." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Разрешает просмотр процессов всех пользователей" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Не доступно в данной версии MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Разрешает запрашивать местонахождение головного и подчиненных серверов." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Необходимо для подчиненных серверов при репликации." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Разрешает выборку данных." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Разрешает доступ к полному списку баз данных." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Разрешает остановку сервера." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Разрешает установку соединения, даже при достижении максимального количества " -"соединений. (Требуется для большинства административных задач, таких как " -"установка глобальных переменных или завершение процессов других " -"пользователей)." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Разрешает создание и удаление триггеров" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Разрешает изменение данных." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Нет привилегий." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Нет" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Привилегии уровня таблицы" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Примечание: типы привилегий MySQL отображаются по-английски" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Администрирование" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Глобальные привилегии" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Привилегии уровня базы данных" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ограничение на использование ресурсов" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Замечание: Установка значения параметров в 0 (ноль), снимает ограничения." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Информация учетной записи" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Не менять пароль" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Пользователь не найден." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Пользователь %s уже существует!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Был добавлен новый пользователь." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Были изменены привилегии для %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Отменены привилегии для %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Пароль для %s был успешно изменен." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Удаление %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Не выбраны пользователи подлежащие удалению!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Перезагрузка привилегий" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Выбранные пользователи были успешно удалены." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Редактирование привилегий" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Отменить" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Экспорт" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Любой" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Привилегии всех пользователей" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Привилегии для %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Обзор учетных записей" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "GRANT" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Удалить выделенных пользователей" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Отменить все активные привилегии пользователей и затем удалить их." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Примечание: phpMyAdmin получает информацию о пользовательских привилегиях " -"непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может " -"отличаться от привилегий, используемых сервером, если они были изменены " -"вручную. В таком случае необходимо %sперезагрузить привилегии%s." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Выделенный пользователь не был найден в таблице привилегий." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Привилегии уровня столбца" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Добавить привилегии на следующую базу" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"При использовании в имени базы данных символов нижнего подчеркивания _ и " -"процента %, необходимо экранировать их символом обратной косой черты \\, в " -"противном случае они будут интерпретированы как групповые символы" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Добавить привилегии на следующую таблицу" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Изменить/Копировать учетную запись" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Создать нового пользователя с такими же привилегиями..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "и сохранить старого." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "и удалить старого из таблиц пользователей." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr ", отменить все активные привилегии старого и затем удалить его." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "База данных для пользователя" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" -"Создать базу данных с именем пользователя в названии и предоставить на нее " -"полные привилегии" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" -"Предоставить полные привилегии на базы данных подпадающие под шаблон (имя " -"пользователя\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Выставить полные привилегии на базу данных "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Пользователи с правами доступа к "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "Глобальный уровень" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Уровень базы данных" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "Групповой символ" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Пользователь был добавлен." - #: server_replication.php:82 msgid "Unknown error" msgstr "Неизвестная ошибка" @@ -11973,37 +12020,37 @@ msgstr "Ключ должен содержать символы алфавита msgid "Wrong data" msgstr "Ошибочные данные" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Для обзора данных использован запрос из закладки \"%s\"." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Вы действительно хотите выполнить данный запрос?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Отображает как PHP-код" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "SQL синтаксис проверен" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Результат SQL-запроса" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Создан" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Метка" @@ -13901,6 +13948,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert установлен в 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "Массив PHP" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/si.po b/po/si.po index c659ff117d..3ca2b2505b 100644 --- a/po/si.po +++ b/po/si.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" -"PO-Revision-Date: 2012-06-26 19:00+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" +"PO-Revision-Date: 2012-07-28 18:20+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -12,10 +12,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 1.0\n" +"X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "සෙවීම" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "සෙවීම" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "යන්න" @@ -107,7 +110,7 @@ msgstr "%s ගොනුව මෙම පද්ධතියේ නොමැත. msgid "Database %1$s has been created." msgstr "%1$s දත්තගබඩාව සාදන ලදි." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "දත්තගබඩා විස්තර: " @@ -117,17 +120,17 @@ msgstr "දත්තගබඩා විස්තර: " msgid "Table comments" msgstr "වගු විස්තර" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -139,34 +142,34 @@ msgstr "තීර" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "වර්ගය" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -175,13 +178,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -189,10 +192,10 @@ msgstr "Null" msgid "Default" msgstr "පෙරනිමි" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -201,10 +204,10 @@ msgstr "සම්බන්ද වන්නේ" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -215,18 +218,21 @@ msgstr "විස්තරය" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "නැත" @@ -239,19 +245,22 @@ msgstr "නැත" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "ඔව්" @@ -259,8 +268,8 @@ msgstr "ඔව්" msgid "View dump (schema) of database" msgstr "දත්තගබඩාවේ නික්ෂේපනය (ක්‍රමානුරූපය) දර්ශනය කරන්න" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත." @@ -276,74 +285,74 @@ msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන msgid "The database name is empty!" msgstr "දත්තගබඩා නම හිස්ව පවතී!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s දත්තගබඩාව %2$s බවට නම වෙනස් කරන ලදි" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s දත්තගබඩාව %2$s වෙතට පිටපත් කරන ලදි" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "දත්තගබඩාව ඉවත් කරන්න" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s දත්තගබඩාව හලන ලදි." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "දත්තගබඩාව හලන්න. (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "සැකිල්ල පමණයි" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "දත්ත පමණයි" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "පිටපත් කිරීමට ප්‍රථම දත්තගබඩාවක් සාදන්න" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "සීමා බාධවන් එක් කරන්න" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙත මාරු වන්න" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -353,7 +362,7 @@ msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙ msgid "Collation" msgstr "Collation" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -362,7 +371,7 @@ msgstr "" "phpMyAdmin හි configuration storage අක්‍රිය කර ඇත. ඇයිදැයි සොයා බැලීමට %sමෙතන%s ක්ලික් " "කරන්න." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න" @@ -372,16 +381,18 @@ msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අ #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "වගුව" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "පේළි" @@ -391,13 +402,13 @@ msgid "Size" msgstr "ප්‍රමාණය" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "භාවිතා වෙමින් පවතී" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -405,7 +416,7 @@ msgstr "සෑදීම" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -413,7 +424,7 @@ msgstr "අවසන් යාවත්කාලීන කිරීම" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -426,92 +437,15 @@ msgid_plural "%s tables" msgstr[0] "%s වගු" msgstr[1] "%s වගු" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "පෙන්වීම සඳහා අවම වශයෙන් එක් තීරයක්වත් තෝරාගත යුතුයි" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "ආරෝහන" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "අවරෝහන" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "සුබෙදන්න" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "පෙන්වන්න" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "නිර්ණායක" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "තීර එක් කරන්න/ඉවත් කරන්න" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "විමසුම යාවත්කාලීන කරන්න" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "වගු භාවිතා කරන්න" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "හෝ" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "සහ" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "ඇතුල්" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "ඉවත්" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "වෙනස් කිරීම" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sදෘශ්‍ය ගොඩනංවනය%s වෙත යන්න" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "%s දත්තගබඩාව මත SQL විමසුම:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "විමසුම ඉදිරිපත් කරන්න" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -552,7 +486,7 @@ msgstr "අවධානය සක්‍රීයයි." msgid "Tracking is not active." msgstr "අවධානය අක්‍රීයයි." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -581,20 +515,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s මෙම සේවාදායකයේ පෙරනිමි ගබඩා යන්ත්‍රයයි." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "තෝරාගත්:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" @@ -602,31 +537,32 @@ msgstr "සියල්ල කතිර කොටුගත කරන්න" msgid "Check tables having overhead" msgstr "පිරිවැයක් සහිත වගු පරීක්ෂා කරන්න" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "අපනයනය" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "හිස් කරන්න" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -670,17 +606,18 @@ msgstr "අවධානය සක්‍රීය වගු" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "දත්තගබඩාව" @@ -698,18 +635,26 @@ msgstr "යාවත්කාලීන කරන ලදි" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "තත්වය" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "ක්‍රියාව" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "පෙන්වන්න" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "මෙම වගුවේ අවධානය පිළිබඳ දත්ත ඉවත් කරන්න" @@ -751,20 +696,20 @@ msgstr "දත්තගබඩා ලොගය" msgid "Bad type!" msgstr "වැරදි වර්ගය!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "තෝරාගත් අපනයන වර්ගය ගොනුව තුල සුරැකිය යුතුයි!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "වැරදි පරාමිතියන්!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s ගොනුව සුරැකීමට ප්‍රමාණවත් ඉඩ අවකාශ නොමැත." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -772,12 +717,12 @@ msgstr "" "%s ගොනුව මේ වන විටත් සේවාදායකයෙහි පවතී, ගොනු නාමය වෙනස් කරන්න නැතහොත් උඩින් ලිවීමේ හැකියාව " "සලකා බලන්න." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "වෙබ් සේවාදායකයට %s ගොනුව සුරැකීමට අවසර නොමැත." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකින ලදි." @@ -800,7 +745,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "ජ්‍යාමිතිය" @@ -870,10 +815,10 @@ msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -"\"Function\" තීරුවෙන් \"GeomFromText\" තෝරා පහත ඇති දේ \"Value\" ක්ෂේත්‍රයට පිටපත් " +"\"ශ්‍රිතය\" තීරුවෙන් \"GeomFromText\" තෝරා පහත ඇති දේ \"අගය\" ක්ෂේත්‍රයට පිටපත් " "කරන්න" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -882,20 +827,20 @@ msgstr "" "ඔබ උඩුගත කරන ගොනුව විශාල වැඩි විය හැක. මෙම සීමාවන් ඉක්මවීමේ ක්‍රම සඳහා කරුණාකර %sලියකියවිලි" "%s බලන්න." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "පොත් සලකුණ පෙන්වන්න" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "පොත් සලකුණ ඉවත් කරන ලදි." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "ගොනුව කියවිය නොහැක" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -903,7 +848,7 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -913,26 +858,26 @@ msgstr "" "විශාලත්වය PHP වින්‍යාසයන්හි අනුමත ප්‍රමාණයට වැඩ විශාල වීම මීට හේතු විය හැකිය. [a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a] බලන්න." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "අක්ෂර කට්ටල හැරවීම් පුස්තකාලය නොමැතිව ගොනුවේ අක්ෂර කට්ටලය හැරවීම කල නොහැක" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "ආනයනය පේනු පූරණය අසමත් විය. ඔබගේ ස්ථාපිතය පරීක්ෂා කරන්න!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "%s පොත් සලකුණ සාදන ලදි" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "ආනයනය සාර්ථකව අවසන් කරන ලදි, විමසුම්%d ක්‍රියාත්මක කරන ලදි." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -940,7 +885,7 @@ msgstr "" "විධානාවලිය ක්‍රියාත්මක වීමට ලබා දුන් කාලය අවසන් විය. ඔබට ආනයනය සම්පූර්ණ කිරීමට අවශ්‍ය නම් එම " "ආනයන ගොනුවම නැවත ආනයනය සඳහා යොමු කරන්න." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -948,8 +893,8 @@ msgstr "" "කෙසේ නමුදු අවසන් වාරයේදී කිසිදු දත්තයක් ලබා ගත නොහැකි විය. මෙයින් අදහස් වන්නේ ඔබගේ php කාල " "සීමාව වැඩි කිරීමකින් තොරව phpMyAdmin හට මෙම ආනයනය සම්පූර්ණ කිරීමට හැකි නොවන බවය." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -964,7 +909,7 @@ msgstr "ආපසු" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "frame සහය ඇති බ්‍රව්සර සමග phpMyAdmin වඩා හොඳින් ක්‍රියා කරයි." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ප්‍රකාශ අක්‍රීය කර ඇත." @@ -973,7 +918,7 @@ msgstr "\"DROP DATABASE\" ප්‍රකාශ අක්‍රීය කර ඇ msgid "Do you really want to execute \"%s\"?" msgstr "\"%s\" ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!" @@ -1031,16 +976,20 @@ msgstr "දාරක නම හිස්ව පවතී!" msgid "The user name is empty!" msgstr "භාවිත නාමය හිස්ව පවතී!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "මුරපදය හිස්ව පවතී!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "මුරපද නොගැලපේ!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "භාවිතා කරන්නෙක් එක් කරන්න" @@ -1060,9 +1009,9 @@ msgstr "වසන්න" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1304,12 +1253,13 @@ msgstr "ජාලකයට ප්‍රස්තාර එක් කරන්න msgid "Please add at least one variable to the series" msgstr "කරුණාකර ශ්‍රේණියට අවම වශයෙන් එක විචල්‍යයක්වත් ඇතුලත් කරන්න" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "කිසිවක් නැත" @@ -1486,10 +1436,10 @@ msgid "Explain output" msgstr "ප්‍රතිදානය පහදන්න" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "කාලය" @@ -1782,7 +1732,7 @@ msgstr "විමසුම් කවුළුව පෙන්වන්න" msgid "No rows selected" msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "වෙනස් කරන්න" @@ -1791,8 +1741,8 @@ msgstr "වෙනස් කරන්න" msgid "Query execution time" msgstr "විමසුම ක්‍රියාත්මක කිරීමේ කාලය" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d වලංගු පේළි අංකයක් නොවේ." @@ -1863,7 +1813,7 @@ msgstr "ලක්ෂයට අදාල දත්ත" msgid "Ignore" msgstr "නොසලකන්න" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "පිටපත් කරන්න" @@ -2345,14 +2295,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "දෝෂය" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL විමසුම" @@ -2363,7 +2313,7 @@ msgstr "SQL විමසුම" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2392,6 +2342,10 @@ msgstr "PHP කේත නොමැතිව" msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "විමසුම ඉදිරිපත් කරන්න" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2416,7 +2370,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "පේළිගත" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2443,14 +2397,14 @@ msgstr "නොමැති පරාමිතිය:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "ඇරඹුම" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2458,7 +2412,7 @@ msgstr "පෙර" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2466,7 +2420,7 @@ msgstr "මීලඟ" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "අවසන" @@ -2487,16 +2441,17 @@ msgstr "මාරු කිරීමට ක්ලික් කරන්න" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "සැකිල්ල" @@ -2504,21 +2459,20 @@ msgstr "සැකිල්ල" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "ඇතුල් කරන්න" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "පිරික්සන්න" @@ -2539,21 +2493,21 @@ msgstr "පරිගණකය තුළ පිරික්සන්න:" msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "ක්‍රියාත්මක කරන්න" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "මුද්‍රණය කරන්න" @@ -2570,6 +2524,74 @@ msgstr "වින්‍යාස ගොනුව සඳහා වැරදි msgid "Font size" msgstr "ෆොන්ටයෙහි ප්‍රමාණය" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "ආරෝහන" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "අවරෝහන" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "සුබෙදන්න" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "නිර්ණායක" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "තීර එක් කරන්න/ඉවත් කරන්න" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "විමසුම යාවත්කාලීන කරන්න" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "වගු භාවිතා කරන්න" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "හෝ" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "සහ" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "ඇතුල්" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "ඉවත්" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "වෙනස් කිරීම" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "%s දත්තගබඩාව මත SQL විමසුම:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "අවම වශයෙන් එක් වචනයක්වත්" @@ -2610,8 +2632,8 @@ msgstr[1] "%2$s තුල ගැලපීම් %1$s කි" msgid "Delete the matches for the %s table?" msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2646,64 +2668,64 @@ msgstr "වගු තුල:" msgid "Inside column:" msgstr "තීරය තුල:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "සංස්කරණය කල දත්ත සුරකින්න" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "තීර අනුපිලිවල ප්‍රතිෂ්ඨාපනය කරන්න" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "ආරම්භක පේළිය" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "පේළි ගණන" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "ප්‍රකාරය" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "තිරස්" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "තිරස් (rotated headers)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "සිරස්" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "ශීර්ෂක, පේළි %s කට වරක්" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "යතුර අනුව තෝරන්න" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2716,60 +2738,60 @@ msgstr "යතුර අනුව තෝරන්න" msgid "Options" msgstr "විකල්ප" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "අර්ධ පෙළ" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "පූර්ණ පෙළ" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "සබැඳි යතුර" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "සබැඳි දර්ශන තීරය" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "ද්වීමය දත්ත පෙන්වන්න" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "BLOB දත්ත පෙන්වන්න" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "ද්වීමය දත්ත HEX ලෙස පෙන්වන්න" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "බ්‍රව්සර රූපාන්තරනය සඟවන්න" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "පේළිය ඉවත් කරන ලදි" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "නවතා දමන්න" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2777,44 +2799,44 @@ msgstr "" "සමහර විට ආසන්න වශයෙන්. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/" "a] බලන්න" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "විමසුම තුල" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "පේළි පෙන්වමින්" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "මුළු එකතුව" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "මුද්‍රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "ප්‍රස්තාරගත කරන්න" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "ජ්‍යාමිතික දත්ත නිරූපණය" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "සබැඳිය හමු නොවිණි" @@ -2934,8 +2956,8 @@ msgid "" msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "දත්තගබඩා" @@ -2951,11 +2973,11 @@ msgid "Tracking" msgstr "අවධානය" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "ප්‍රේරක" @@ -2973,9 +2995,9 @@ msgstr "දත්තගබඩාව හිස්ය!" msgid "Query" msgstr "විමසුම" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "වරප්‍රසාද" @@ -2984,7 +3006,7 @@ msgid "Routines" msgstr "නෛත්‍යක" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "සිද්ධි" @@ -3080,43 +3102,43 @@ msgstr "මෙම MySQL සේවාදායකයේ %s අක්‍රීය msgid "This MySQL server does not support the %s storage engine." msgstr "මෙම MySQL සේවාදායකයේ %s ගබඩා යන්ත්‍රය භාවිත කල නොහැක." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "වගු තත්වය සඳහා නොහඳුනන අගයක්: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "`%s` මූලාශ්‍ර දත්තගබඩාව හමු නොවිණි!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "`%s` ඉලක්කගත දත්තගබඩාව හමු නොවිණි!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "වලංගු නොවන දත්තගබඩාව" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "වලංගු නොවන වගු නම" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s වගුව %2$s ලෙසට නම වෙනස් කරන ලදි." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3125,7 +3147,7 @@ msgstr "" "අතුරුමුහුණත සඳහා තේරීම් අඩංගු ගොනුව පවිත්‍ර කිරීම අසමත් විය ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s බලන්න)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3136,7 +3158,7 @@ msgstr "" "ඇත. අදාල වගුවේ සැකිල්ල වෙනස් වී ඇත්දැයි පරීක්ෂාකර බලන්න." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "ශ්‍රිතය" @@ -3148,7 +3170,7 @@ msgstr "මෙහෙයවනය" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3187,7 +3209,7 @@ msgid "Maximum rows to plot" msgstr "උපරිම තීර ගණන" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "අන්‍ය අගයන් පිරික්සන්න" @@ -3583,7 +3605,7 @@ msgstr "හවුල්" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "වගු" @@ -3594,9 +3616,10 @@ msgstr "වගු" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "දත්ත" @@ -3712,32 +3735,32 @@ msgid "Disabled" msgstr "අක්‍රිය" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "සැකිල්ල" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "දත්ත" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "සැකිල්ල සහ දත්ත" @@ -4153,13 +4176,13 @@ msgstr "හැකිළීම" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "තීර නම් පළමු පේළියේ යොදන්න" @@ -4182,7 +4205,6 @@ msgstr "තීර මගහැරීමේ සළකුණ" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL වෙනුවට භාවිතා කරන්න" @@ -4222,23 +4244,22 @@ msgstr "ගොනු නාම ටෙම්ප්ලේටය" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "වගු නික්ෂේපනය" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "වගු ශිර්ෂ පාඨ ඇතුලත් කරන්න" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "වගු සිරස් තලය" @@ -4247,14 +4268,14 @@ msgid "Continued table caption" msgstr "සබැඳි වගු සිරස්තල" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "ලේබල යතුර" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME වර්ගය" @@ -4291,7 +4312,7 @@ msgid "SQL compatibility mode" msgstr "SQL ගැලපුම් ප්‍රකාරය" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE විකල්ප:" @@ -4304,7 +4325,7 @@ msgid "Use delayed inserts" msgstr "ප්‍රමාදිත ඇතුල් කිරීම භාවිතා කරන්න" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "අන්‍ය මූල පරීක්ෂා අක්‍රිය කරන්න" @@ -4321,7 +4342,7 @@ msgid "Syntax to use when inserting data" msgstr "දත්ත ඇතුල් කිරීමේදී භාවිතා කල යුතු වාග් රීතිය" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "නිර්මිත විමසුමේ උපරිම දිග" @@ -4330,7 +4351,7 @@ msgid "Export type" msgstr "අපනයන වර්ගය" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "අපනයන transaction යක් තුල අඩංගු කරන්න" @@ -4385,7 +4406,6 @@ msgstr "පෙරනිමි විකල්ප රිසි සේ සකස #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4444,7 +4464,6 @@ msgid "Set import and export directories and compression options" msgstr "ආනයන, අපනයන ඩිරෙක්ටරි සහ හැකිලුම් සඳහා විකල්ප තෝරාගන්න" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4664,7 +4683,6 @@ msgid "Customize text input fields" msgstr "පෙළ ආදාන ක්ෂේත්‍රයන් රිසි සේ සකසන්න" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! පෙළ" @@ -5796,9 +5814,11 @@ msgstr "SQL වලංගු කරණය සක්‍රීය කිරීම #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "මුරපදය" @@ -5968,7 +5988,6 @@ msgstr "LOAD DATA භාවිතයෙන් CSV" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document පැතුරුම්පත" @@ -5990,19 +6009,16 @@ msgstr "දත්තගබඩා අපනයන විකල්ප" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS එක්සෙල් සඳහා CSV" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "මයික්‍රොසොෆ්ට් වර්ඩ් 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document පෙළ" @@ -6058,25 +6074,25 @@ msgstr "%s දිගුව සොයාගත නොහැක. කරුණා msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි (හෝ සේවාදායකයේ සොකට් නිවැරදිව සකසා නැත)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "තොරතුරු..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "වින්‍යාසයන් හි අර්ථදක්වා ඇති පරිදි පරිපාලක භාවිතා කරන්නා ලෙස සම්බන්ධ වීම අසමත් විය." @@ -6087,13 +6103,15 @@ msgid "Change password" msgstr "මුරපදය වෙනස් කරන්න" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "මුරපදයක් නැත" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "නැවත ටයිප් කරන්න" @@ -6114,8 +6132,9 @@ msgstr "දත්තගබඩාවක් සාදන්න" msgid "Create" msgstr "සාදන්න" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "වරප්‍රසාද නොමැත" @@ -6125,12 +6144,12 @@ msgid "Create table" msgstr "වගුව සාදන්න" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "නම" @@ -6271,7 +6290,7 @@ msgid "View output as text" msgstr "ප්‍රතිදානය පෙළ ලෙස දර්ශනය කරන්න" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "ආකෘතිය:" @@ -6730,50 +6749,50 @@ msgstr "Paul McCullagh ගේ PrimeBase XT බ්ලොගය" msgid "No data found for GIS visualization." msgstr "ජ්‍යාමිතික නිරූපණයට දත්ත කිසිවක් හමු නොවිණි." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL හිස් ප්‍රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "පහත සැකිලි අලුතින් සාදා හෝ වෙනස් කර ඇත. මෙහිදී ඔබට:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "සැකිල්ලක අන්තර්ගතය එහි නම මත ක්ලික් කිරීමෙන් බලන්න" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "අදාල \"විකල්ප\" සබැඳිය මත ක්ලික් කිරීමෙන් එහි ඕනෑම සිටුවමක් වෙනස් කරන්න" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "\"සැකිල්ල\" සබැඳිය ඔස්සේ යාමෙන් සැකිල්ල සංස්කරණය කරන්න" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "%s දත්තගබඩාව වෙත යන්න" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "%s සඳහා සිටුවම් සංස්කරණය කරන්න" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "%s වගුව වෙත යන්න" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "%s හි සැකිල්ල" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "%s දසුන වෙත යන්න" @@ -6842,11 +6861,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" @@ -7092,7 +7111,7 @@ msgstr "phpMyAdmin ලියකියවිලි" msgid "Reload navigation frame" msgstr "යාත්‍රණ රාමුව ප්‍රතිපූර්ණය කරන්න" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "මෙම ආකෘතියේ ආකෘති-විශේෂී තෝරා ගැනීම් කිසිවක් නැත" @@ -7204,93 +7223,93 @@ msgstr "වලංගු සත්‍යාපන යතුරක් සම්බ msgid "Authenticating..." msgstr "සත්‍යාපනය කෙරෙමින්..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "තීර වෙන් කිරීමේ සළකුණ:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "තීර ඇවුරුම් සළකුණ:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "තීර මගහැරීමේ සළකුණ:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "පේළි අවසන් කිරීමේ සළකුණ:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "NULL වෙනුවට භාවිතා කරන්න:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "තීර තුළ අඩංගු carriage return/line feed අනු ලකුණු ඉවත් කරන්න" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "එක්සෙල් සංස්කරණය:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "දත්ත නික්ෂේපන විකල්ප" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "වගු සඳහා නික්ෂේප දත්ත" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "සිද්ධිය" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "අර්ථ දැක්වීම" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "වගුවක් සඳහා වගු සැකිල්ල" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "දසුන සඳහා සැකිල්ල" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "දසුන සැදීම සඳහා තාවකාලික සැකිල්ල" @@ -7306,94 +7325,83 @@ msgstr "(ඉදිරියට)" msgid "Structure of table @TABLE@" msgstr "වගුවේ සැකිල්ල @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "වස්තු නිර්මාණය කිරීමේ විකල්ප" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "වගු සිරස්තලය (සබැඳි)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "අන්‍ය යතුරු සබඳතා පෙන්වන්න" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "විස්තර පෙන්වන්න" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "MIME වර්ග පෙන්වන්න" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "දායකයා" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "උත්පාදන වේලාව" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "සේවාදායකයේ අනුවාදය" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP අනුවාදය" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki වගු" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "වගු නම් අපනයනය කරන්න" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "වගු ශීර්ෂක අපනයනය කරන්න" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(තනි වගුවක දත්ත ඇතුලත් කරමින් වාර්තාවක් සාදයි)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "වාර්තා මාතෘකාව:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP ආරාව" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7401,34 +7409,34 @@ msgstr "" "විස්තර පෙන්වන්න (අපනයන වේලාව, PHP අනුවාදය සහ සේවාදායකයේ අනුවාදය වැනි තොරතුරු ඇතුලත් " "කරන්න)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "හෙඩිමට වෙනත් විස්තර එක් කරන්න (\\n පේළි වි‍භේදනය):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" "දත්තගබඩා සෑදූ, අවසන් වරට යාවත්කාලීන කල හා අවසන් වරට පරීක්ෂා කල වේලාවන් ඇතුලත් කරන්න" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "ප්‍රතිදාන අනුකූලතාව උපරිම කල යුතු පැරණි MySQL සේවාදායකය හෝ වෙනත් දත්තගබඩා පද්ධතිය:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "%s ප්‍රකාශය එක්කරන්න" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "ප්‍රකාශ එක් කරන්න:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7436,32 +7444,39 @@ msgstr "" "වගු සහ තීර නාමයන් පසු උධෘත මගින් අවුරන්න (විශේෂ අනුලකුණු හෝ මූල පද වලින් සැදි වගු සහ තීර " "නාමයන් ආරක්ෂා කරයි)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "වස්තු නිර්මාණය කිරීමේ විකල්ප" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "ඇතුල් කිරීම් වලට පෙර වගුව හිස් කරන්න" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "INSERT ප්‍රකාශ වෙනුවට භාවිතා කරන්න:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED ප්‍රකාශ" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE ප්‍රකාශ" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "දත්ත නික්ෂේපනයේදී භාවිතා කල යුතු ශ්‍රිතය:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "දත්ත ඇතුළු කිරීමේදී භාවිතා කලයුතු වාග් රීතිය:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7471,7 +7486,7 @@ msgstr "" "  උදාහරණ: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)" "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7481,7 +7496,7 @@ msgstr "" "    උදාහරණ: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7489,7 +7504,7 @@ msgstr "" "ඉහත දෙවර්ගයම
      උදාහරණ: INSERT INTO tbl_name " "(col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7497,14 +7512,14 @@ msgstr "" "ඉහත එක් වර්ගයක්වත් නොව
      උදාහරණ: INSERT INTO " "tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" "ද්වීමය තීර hexadecimal ලෙස නික්ෂේපනය කරන්න (උදාහරණ: \"abc\", 0x616263 ලෙස)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7512,50 +7527,45 @@ msgstr "" "TIMESTAMP තීර UTC ලෙස නික්ෂේපනය කරන්න (වෙනස් වේලා කලාපවල ඇති සේවාදායක අතර " "TIMESTAMP තීර නික්ෂේපනය හා ප්‍රතිපූරණයට අවස්ථාව ලබා දේ)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "ක්‍රියාපටිපාටිය" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "ශ්‍රිත" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "වගුව සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "දත්ත කියවීමේදී දෝෂයකි:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "වස්තු නිර්මාණය කිරීමේ විකල්ප (සියල්ලම නිර්දේශ කෙරේ)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "දසුන්" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "අන්තර්ගතය අපනයනය කරන්න" @@ -7628,6 +7638,10 @@ msgstr "තීර නම්" msgid "This plugin does not support compressed imports!" msgstr "මෙම පේණුව හැකිළු ආනයන සඳහා සහාය නොදක්වයි!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki වගු" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7683,6 +7697,10 @@ msgstr "SQL ගැළපුම් ප්‍රකාරය:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "ශුන්‍ය අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7899,11 +7917,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "යාවත්කාලීන කරන ලද වින්‍යාස ගොනුව පූරණය සඳහා phpMyAdmin වෙත නැවත වරක් ඇතුල් වන්න." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "විස්තරයක් නොමැත" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න" @@ -7925,9 +7944,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "භාවිත නාමය" @@ -7963,34 +7983,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "ඕනෑම භාවිතා කරන්නෙක්" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "ඕනෑම දායකයෙක්" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "ස්වදේශී" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "මෙම දායකයා" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "දායක වගුව භාවිතා කරන්න" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8005,7 +8034,7 @@ msgstr "මුරපදය උත්පාදනය කරන්න" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8041,8 +8070,8 @@ msgid "Edit event" msgstr "සිද්ධිය සංස්කරණය කරන්න" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය" @@ -8118,7 +8147,8 @@ msgstr "ඔබ සිද්ධිය සඳහා වලංගු වර්ග msgid "You must provide an event definition." msgstr "ඔබ සිද්ධි අර්ථ දැක්වීමක් ලබාදිය යුතුයි." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "නව" @@ -8248,25 +8278,25 @@ msgstr "නෛත්‍යකය සඳහා ඔබ වලංගු ප්‍ msgid "You must provide a routine definition." msgstr "ඔබ නෛත්‍යක අර්ථදක්වීමක් ලබා දිය යුතුය." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "%s නෛත්‍යකයේ ප්‍රතිදානය" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "කාර්ය පටිපාටියේ අවසන් ප්‍රකාශය ක්‍රියාත්මක කිරීමෙන් පේළි %d කට බලපෑවේ ය" msgstr[1] "කාර්ය පටිපාටියේ අවසන් ප්‍රකාශය ක්‍රියාත්මක කිරීමෙන් පේළි %d කට බලපෑවේ ය" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "%s නෛත්‍යකයේ ප්‍රතිදානය" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "නෛත්‍යකය ක්‍රියාත්මක කරන්න" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "නෛත්‍යක පරාමිති" @@ -8395,28 +8425,28 @@ msgstr "%2$s දත්තගබඩාවේ %1$s නමින් සිද්ධ msgid "There are no events to display." msgstr "පෙන්වීම සඳහා සිද්ධි නොමැත." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "%s නමින් වගුවක් නොපවතියි!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "කරුණාකර %s වගුව සඳහා ඛණ්ඩාංක අගයන් සිටුවන්න" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "%s දත්තගබඩාවේ ක්‍රමානුරූපය - %sවන පිටුව" @@ -8551,6 +8581,435 @@ msgstr "%1$s නොදන්නා භාෂාවකි." msgid "Current Server" msgstr "වත්මන් සේවාදායකය" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "වරප්‍රසාද නොමැත." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "ප්‍රේරක සැදීමට හා ඉවත් කිරීමට අවසර ලබා දෙයි" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "කිසිවක් නැත" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "සම්පත් සීමා" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැ‍‍බේ." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "වගු-විශේෂී වරප්‍රසාද" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "සටහන: MySQL වරප්‍රසාද නම් සඳහන් වනුයේ ඉංග්‍රීසියෙනි" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "පරිපාලනය" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "ගෝලීය වරප්‍රසාද" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "ලොගින තොරතුරු" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "මුරපදය වෙනස් නොකරන්න" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s ගේ මුරපදය සාර්ථකව වෙනස් කරන ලදි." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "ඔබ %s සඳහා වරප්‍රසාද අහෝසි කර ඇත" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්‍රසාද එයට දෙන්න" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr ""%s" දත්තගබඩාව සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr ""%s" වෙත ප්‍රවේශ වරප්‍රසාද ඇති භාවිතා කරන්නන්" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "භාවිතා කරන්නා" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "ප්‍රදානය කරන්න" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "භාවිතා කරන්නා එක් කරන ලදි." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "ඕනෑම" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "ගෝලීය" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "දත්තගබඩා විශේෂිත" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "අව්‍යවස්ථිත කාඩ්පත" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "භාවිතා කරන්නන් හමු නොවිණි." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "වරප්‍රසාද සංස්කරණය කරන්න" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "අහෝසි කරන්න" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "සියල්ල අපනයනය කරන්න" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... පැරණි එක තබා ගන්න." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... පැරැන්නෙන් සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "තීර-විශේෂී වරප්‍රසාද" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "පහත දත්තගබඩාවට වරප්‍රසාද එක් කරන්න" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "භාවිතා කරන්නන්ගේ සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "වරප්‍රසාද පූරණය කෙරෙමින්" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "ඔබ %s සඳහා වරප්‍රසාද අලුත් කර ඇත." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "සියලුම භාවිතා කරන්නන් සඳහා වරප්‍රසාද" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "%s සඳහා වරප්‍රසාද" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "භාවිතා කරන්නන් පිළිබඳ දළ විශ්ලේෂණය" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. " +"සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " +"වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍රසාද වගුවේ හමු නොවිණි." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "මූලාශ්‍ර දත්ත ගබඩාව" @@ -8597,11 +9056,11 @@ msgstr "මකන්න" msgid "Columns" msgstr "තීර" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" @@ -8864,12 +9323,6 @@ msgstr "මෘදුකාංග අනුවාදය" msgid "Protocol version" msgstr "ප්‍රෝටකෝල අනුවාදය" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "භාවිතා කරන්නා" - #: main.php:217 msgid "Server charset" msgstr "සේවාදායකයේ අක්ෂර කට්ටලය" @@ -9369,425 +9822,20 @@ msgstr "" msgid "disabled" msgstr "අක්‍රීයයි" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "ප්‍රේරක සැදීමට හා ඉවත් කිරීමට අවසර ලබා දෙයි" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "වරප්‍රසාද නොමැත." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "කිසිවක් නැත" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "වගු-විශේෂී වරප්‍රසාද" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "සටහන: MySQL වරප්‍රසාද නම් සඳහන් වනුයේ ඉංග්‍රීසියෙනි" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "පරිපාලනය" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "ගෝලීය වරප්‍රසාද" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "සම්පත් සීමා" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැ‍‍බේ." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "ලොගින තොරතුරු" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "මුරපදය වෙනස් නොකරන්න" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "භාවිතා කරන්නන් හමු නොවිණි." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "ඔබ %s සඳහා වරප්‍රසාද අලුත් කර ඇත." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "ඔබ %s සඳහා වරප්‍රසාද අහෝසි කර ඇත" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s ගේ මුරපදය සාර්ථකව වෙනස් කරන ලදි." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s ඉවත් කරමින් පවතී" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "වරප්‍රසාද පූරණය කෙරෙමින්" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "සාර්ථකව වරප්‍රසාද පූරණය කරන්න ලදි." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "වරප්‍රසාද සංස්කරණය කරන්න" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "අහෝසි කරන්න" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "සියල්ල අපනයනය කරන්න" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "ඕනෑම" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "සියලුම භාවිතා කරන්නන් සඳහා වරප්‍රසාද" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "%s සඳහා වරප්‍රසාද" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "භාවිතා කරන්නන් පිළිබඳ දළ විශ්ලේෂණය" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "ප්‍රදානය කරන්න" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "භාවිතා කරන්නන්ගේ සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. " -"සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " -"වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍රසාද වගුවේ හමු නොවිණි." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "තීර-විශේෂී වරප්‍රසාද" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "පහත දත්තගබඩාවට වරප්‍රසාද එක් කරන්න" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... පැරණි එක තබා ගන්න." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... පැරැන්නෙන් සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්‍රසාද එයට දෙන්න" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr ""%s" දත්තගබඩාව සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr ""%s" වෙත ප්‍රවේශ වරප්‍රසාද ඇති භාවිතා කරන්නන්" - -#: server_privileges.php:2544 -msgid "global" -msgstr "ගෝලීය" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "දත්තගබඩා විශේෂිත" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "අව්‍යවස්ථිත කාඩ්පත" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "භාවිතා කරන්නා එක් කරන ලදි." - #: server_replication.php:82 msgid "Unknown error" msgstr "හඳුනා නොගත් දෝෂය" @@ -11392,37 +11440,37 @@ msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em] msgid "Wrong data" msgstr "වැරදි දත්ත" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "පහත විමසුම ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "PHP කේත ලෙස පෙන්වමින්" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "තහවුරු කරන ලද SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL ප්‍රතිළුල" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "උත්පාදනය කරන ලද්දේ" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "ලේබලය" @@ -13174,6 +13222,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP ආරාව" + #~ msgid "rows" #~ msgstr "පිරික්සන්න" diff --git a/po/sk.po b/po/sk.po index 39578863b0..11e8b4ea3e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-24 11:02+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Zobraziť všetko" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Hľadať" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Hľadať" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Vykonaj" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databáza %1$s bola vytvorená." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Komentár k databáze: " @@ -120,17 +123,17 @@ msgstr "Komentár k databáze: " msgid "Table comments" msgstr "Komentár k tabuľke" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Stĺpec" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Typ" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Nulový" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Nulový" msgid "Default" msgstr "Predvolené" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Linkovať na" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Komentáre" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nie" @@ -242,19 +248,22 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Áno" @@ -262,8 +271,8 @@ msgstr "Áno" msgid "View dump (schema) of database" msgstr "Zobraziť dump (schému) databázy" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Neboli nájdené žiadne tabuľky v tejto databáze." @@ -279,74 +288,74 @@ msgstr "Odznačiť všetko" msgid "The database name is empty!" msgstr "Meno databázy je prázdne!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databáza %1$s bola premenovaná na %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databáza %1$s bola skopírovaná do %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Premenovať databázu na" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Odstrániť databázu" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Databáza %s bola zmazaná." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Odstrániť databázu (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Skopírovať databázu do" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Iba štruktúru" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Štruktúru a dáta" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Iba dáta" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Pridať %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Pridať obmedzenia" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Prepnúť na skopírovanú databázu" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Prepnúť na skopírovanú databázu" msgid "Collation" msgstr "Zotriedenie" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "Konfiguračná pamäť phpMyAdmina bola deaktivovaná. Ak chcete zistiť prečo, " "kliknite %ssem%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Upraviť alebo exportovať relačnú schému" @@ -375,16 +384,18 @@ msgstr "Upraviť alebo exportovať relačnú schému" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabuľka" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Riadkov" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Veľkosť" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "práve sa používa" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Vytvorenie" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Posledná zmena" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -430,92 +441,15 @@ msgstr[0] "%s tabuľka" msgstr[1] "%s tabuľky" msgstr[2] "%s tabuliek" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Zvolte prosím aspoň jeden stĺpec, ktorý chcete zobraziť" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Vzostupne" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Zostupne" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Triediť" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Ukázať" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kritéria" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Pridať/Odobrať riadky s kritériami" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Pridať/Odobrať stĺpce" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Aktualizovať dopyt" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Použiť tabuľky" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Alebo" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "A" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Vložiť" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Zmazať" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Zmeniť" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Prepnúť do %svizuálneho návrhára%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL dopyt v databáze %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Odošli dopyt" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -556,7 +490,7 @@ msgstr "Sledovanie je aktívne." msgid "Tracking is not active." msgstr "Sledovanie nie je aktívne." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "Na tomto MySQL serveri je prednastaveným úložným systémom %s." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Výber:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Označiť všetko" @@ -606,31 +541,32 @@ msgstr "Označiť všetko" msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportovať" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Vyprázdniť" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "Sledované tabuľky" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Databáza" @@ -702,18 +639,26 @@ msgstr "Aktualizované" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Stav" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Akcia" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Ukázať" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky" @@ -754,20 +699,20 @@ msgstr "Databázový log" msgid "Bad type!" msgstr "Nesprávny typ!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Vybraný typ exportu musí byť uložený do súboru!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Chybné parametre!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatok miesta pre uloženie súboru %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -775,12 +720,12 @@ msgstr "" "Súbor %s už existuje na servery, zmente názov súboru alebo zvolte prepísanie " "súboru." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávenia na uloženie do súboru %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis bol uložený do súboru %s." @@ -803,7 +748,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometria" @@ -876,7 +821,7 @@ msgstr "" "Z voľby „Funkcie“ zvoľte „GeomFromText“ a vložte nižšie uvedený text ako " "hodnotu" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -885,20 +830,20 @@ msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Zobrazujem obľúbený príkaz" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Záznam z obľúbených bol zmazaný." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Súbor sa nedá prečítať" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -908,7 +853,7 @@ msgstr "" "Pokúsili ste sa načítať súbor s nepodporovanou kompresiou (%s). Buď nie je " "zahrnutá podpora tejto kompresie alebo bola deaktivovaná v konfigurácii." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,28 +863,28 @@ msgstr "" "jeho veľkosť prekročila maximálnu veľkosť povolenú v PHP konfigurácii. Pozri " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Bez potrebnej knižnice nemožno previesť konverziu znakovej sady" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nebolo možné načítať importovacie pluginy, skontrolujte prosím vašu " "inštaláciu!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Príkaz %s bol zaradený medzi obľúbené" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import bol úspešne ukončený, bolo vykonaných %d dopytov." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -947,7 +892,7 @@ msgstr "" "Časový limit behu skriptu vypršal. Ak chcete import súboru dokončiť, " "odošlite znova formulár a import bude pokračovať." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -956,8 +901,8 @@ msgstr "" "že phpMyAdmin nebude schopný dokončiť tento import, pokiaľ nebude zvýšený " "časový limit behu skriptu v php." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -972,7 +917,7 @@ msgstr "Späť" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funguje lepšie s prehliadačmi podporujúcimi rámy." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Príkaz \"DROP DATABASE\" je zakázaný." @@ -981,7 +926,7 @@ msgstr "Príkaz \"DROP DATABASE\" je zakázaný." msgid "Do you really want to execute \"%s\"?" msgstr "Skutočne chcete vykonať príkaz \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZMAZAŤ celú databázu!" @@ -1040,16 +985,20 @@ msgstr "Názov hostiteľa je prázdny!" msgid "The user name is empty!" msgstr "Meno používateľa je prázdne!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Heslo je prázdne!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Pridať používateľa" @@ -1069,9 +1018,9 @@ msgstr "Zavrieť" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1316,12 +1265,13 @@ msgstr "Pridať graf do mriežky" msgid "Please add at least one variable to the series" msgstr "Pridajte prosím aspoň jednu hodnotu do série" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Žiadny" @@ -1507,10 +1457,10 @@ msgid "Explain output" msgstr "Vysvetliť výstup" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Čas" @@ -1804,7 +1754,7 @@ msgstr "Zobrazit vyhľadávacie pole" msgid "No rows selected" msgstr "Nebol vybraný žiadny riadok" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Zmeniť" @@ -1813,8 +1763,8 @@ msgstr "Zmeniť" msgid "Query execution time" msgstr "Čas behu dopytu" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d nie je platné číslo riadku." @@ -1853,7 +1803,6 @@ msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pre priblíženie kliknite na sekciu grafu." #: js/messages.php:306 -#| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "Kliknite na tlačidlo Obnoviť zoom na návrat do pôvodného stavu." @@ -1886,7 +1835,7 @@ msgstr "Obsah datového bodu" msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopírovať" @@ -2301,7 +2250,6 @@ msgstr "" #: libraries/Advisor.class.php:378 #, php-format -#| msgid "Invalid format of CSV input on line %d." msgid "Invalid rule declaration on line %s" msgstr "Chybná deklarácia pravidla na riadku %s" @@ -2364,14 +2312,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Chyba" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL dopyt" @@ -2382,7 +2330,7 @@ msgstr "SQL dopyt" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2411,6 +2359,10 @@ msgstr "Bez PHP kódu" msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Odošli dopyt" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2435,7 +2387,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Upraviť tu" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profilovanie" @@ -2462,14 +2414,14 @@ msgstr "Chýbajúci parameter:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Začiatok" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2477,7 +2429,7 @@ msgstr "Predchádzajúci" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2485,7 +2437,7 @@ msgstr "Ďalší" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Koniec" @@ -2506,16 +2458,17 @@ msgstr "Kliknite pre prepnutie" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Štruktúra" @@ -2523,21 +2476,20 @@ msgstr "Štruktúra" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Vložiť" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Prechádzať" @@ -2558,21 +2510,21 @@ msgstr "Prechádzať váš počítač:" msgid "Select from the web server upload directory %s:" msgstr "Zvoľte súbor z upload adresára %s web servera:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Žiadny súbor pre nahrávanie" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Spustiť" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Vytlačiť" @@ -2591,6 +2543,74 @@ msgstr "" msgid "Font size" msgstr "Veľkosť písma" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Vzostupne" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Zostupne" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Triediť" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kritéria" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Pridať/Odobrať riadky s kritériami" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Pridať/Odobrať stĺpce" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Aktualizovať dopyt" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Použiť tabuľky" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Alebo" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "A" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Vložiť" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Zmazať" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Zmeniť" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL dopyt v databáze %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "najmenej jedno zo slov" @@ -2622,8 +2642,6 @@ msgstr[2] "Celkovo: %s výskytov" #: libraries/DbSearch.class.php:351 #, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s výskyt v %2$s" @@ -2635,8 +2653,8 @@ msgstr[2] "%1$s výskytov v %2$s" msgid "Delete the matches for the %s table?" msgstr "Odstrániť nájdené záznamy z tabuľky %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2671,66 +2689,64 @@ msgstr "V tabuľkách:" msgid "Inside column:" msgstr "V tabuľke:" -#: libraries/DisplayResults.class.php:679 -#| msgid "Save directory" +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Uložiť zmeny" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Obnoviť poradie stĺpcov" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Prvý riadok" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Počet riadkov" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Režim" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontálnom" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "vodorovnom (otočené hlavičky)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikálnom" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format -#| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Opakovať hlavičku každých %s riadkov" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Zoradiť podľa kľúča" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2743,61 +2759,60 @@ msgstr "Zoradiť podľa kľúča" msgid "Options" msgstr "Nastavenia" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Čiastočné texty" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Plné texty" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relačný kľúč" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Relačné zobrazenie stĺpcov" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Zobraziť binárny obsah" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Zobraziť obsah BLOBu" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Zobraziť binárny obsah v HEX formáte" -#: libraries/DisplayResults.class.php:1611 -#| msgid "Browser transformation" +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Skryť transformácie prehliadača" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Text (Well Known Text)" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Riadok bol zmazaný" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Zabiť" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2805,44 +2820,44 @@ msgstr "" "Môže byť nepresné. Viď [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11" "[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "v dopyte" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Zobrazené riadky" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "celkovo" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f s" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Zobraziť graf" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Zobraziť GIS data" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Vytvoriť pohľad" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Linka nebola nájdená" @@ -2916,7 +2931,6 @@ msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." #: libraries/Header.class.php:500 #: libraries/plugins/auth/AuthenticationCookie.class.php:152 -#| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Pokiaľ chcete pokračovať, Javascript musí byť povolený" @@ -2969,8 +2983,8 @@ msgstr "" "odstránený." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Databázy" @@ -2986,11 +3000,11 @@ msgid "Tracking" msgstr "Sledovanie" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Spúšťače" @@ -3008,9 +3022,9 @@ msgstr "Databáza vyzerá prázdna!" msgid "Query" msgstr "Dopyt podľa príkladu" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Oprávnenia" @@ -3019,7 +3033,7 @@ msgid "Routines" msgstr "Rutiny" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Udalosti" @@ -3029,7 +3043,6 @@ msgid "Designer" msgstr "Dizajnér" #: libraries/Menu.class.php:470 -#| msgid "User" msgid "Users" msgstr "Používatelia" @@ -3120,53 +3133,50 @@ msgstr "%s bol zakázaný na tomto MySQL serveri." msgid "This MySQL server does not support the %s storage engine." msgstr "Tento MySQL server nepodporuje úložný systém %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "neznámy stav tabuľky: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format -#| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Zdrojová databáza `%s` nebola nájdená!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format -#| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Cieľová databáza `%s` nebola nájdená!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Chybná databáza" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Chybné meno tabuľky" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format -#| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabuľka %1$s bola premenovaná na %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Nepodarilo sa uložiť nastavenia tabuľky" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3175,7 +3185,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcia" @@ -3187,19 +3197,17 @@ msgstr "Operátor" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" msgstr "Hodnota" #: libraries/TableSearch.class.php:218 -#| msgid "Search" msgid "Table Search" msgstr "Hľadať v tabuľke" #: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1373 -#| msgid "Insert" msgid "Edit/Insert" msgstr "Upraviť/Vložiť" @@ -3224,25 +3232,23 @@ msgid "Use this column to label each point" msgstr "" #: libraries/TableSearch.class.php:877 -#| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "Maximálny počet zobrazených riadkov" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" #: libraries/TableSearch.class.php:994 -#| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "Rozšírené parametre vyhľadávania" #: libraries/TableSearch.class.php:1134 -#| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -"Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\") pre dva rôzne stĺpce" +"Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\") pre dva rôzne " +"stĺpce" #: libraries/TableSearch.class.php:1138 msgid "Do a \"query by example\" (wildcard: \"%\")" @@ -3259,7 +3265,6 @@ msgid "How to use" msgstr "Kontrolný užívateľ" #: libraries/TableSearch.class.php:1210 -#| msgid "Reset" msgid "Reset zoom" msgstr "Zrušiť zoom" @@ -3367,7 +3372,6 @@ msgstr "" #: libraries/Types.class.php:319 libraries/Types.class.php:721 #, php-format -#| msgid "Create version" msgid "A date, supported range is %1$s to %2$s" msgstr "Dátum, podporovaný rozsah je od %1$s do %2$s" @@ -3384,7 +3388,6 @@ msgstr "" #: libraries/Types.class.php:325 libraries/Types.class.php:727 #, php-format -#| msgid "Error renaming table %1$s to %2$s" msgid "A time, range is %1$s to %2$s" msgstr "Čas, rozsah je od %1$s do %2$s" @@ -3491,7 +3494,6 @@ msgid "A curve with linear interpolation between points" msgstr "" #: libraries/Types.class.php:363 -#| msgid "Add a polygon" msgid "A polygon" msgstr "Polygón" @@ -3517,13 +3519,11 @@ msgid "Numeric" msgstr "" #: libraries/Types.class.php:642 libraries/Types.class.php:976 -#| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Dátum a čas" #: libraries/Types.class.php:651 libraries/Types.class.php:979 -#| msgid "Linestring" msgctxt "string types" msgid "String" msgstr "Reťazec" @@ -3589,7 +3589,7 @@ msgstr "zdieľaný" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabuľky" @@ -3600,9 +3600,10 @@ msgstr "Tabuľky" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Dáta" @@ -3650,9 +3651,6 @@ msgid "Could not load default configuration from: %1$s" msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: %1$s" #: libraries/common.inc.php:588 -#| msgid "" -#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " -#| "configuration file!" msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3723,32 +3721,32 @@ msgid "Disabled" msgstr "Vypnuté" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "štruktúra" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "dáta" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "štruktúra a dáta" @@ -3983,7 +3981,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:37 -#| msgid "Customize text input fields" msgid "Minimum size for input field" msgstr "Minimálna veľkosť vstupného poľa" @@ -3994,7 +3991,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:39 -#| msgid "Maximum size for temporary sort files" msgid "Maximum size for input field" msgstr "Maximálna veľkosť vstupného poľa" @@ -4170,13 +4166,13 @@ msgstr "Kompresia" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Pridať názvy polí na prvý riadok" @@ -4199,7 +4195,6 @@ msgstr "Polia uvedené pomocou" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Nahradiť NULL hodnoty pomocou" @@ -4239,23 +4234,22 @@ msgstr "Vzor pre názov tabuľky" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Vypísať tabuľku" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Zahrnúť nadpis tabuľky" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Nadpis tabuľky" @@ -4264,14 +4258,14 @@ msgid "Continued table caption" msgstr "Nadpis pokračovania tabuľky" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Návestie" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME typ" @@ -4308,7 +4302,7 @@ msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Voľby CREATE TABLE:" @@ -4321,7 +4315,7 @@ msgid "Use delayed inserts" msgstr "Použiť oneskorené vloženia" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Vypnúť kontrolu cudzích kľúčov" @@ -4338,7 +4332,7 @@ msgid "Syntax to use when inserting data" msgstr "Akú syntax použiť pre vkladanie dát" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maximálna veľkosť vytvoreného príkazu" @@ -4347,7 +4341,7 @@ msgid "Export type" msgstr "Typ exportu" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Uzatvoriť príkazy v transakcii" @@ -4402,7 +4396,6 @@ msgstr "Prispôsobenie východzích nastavení" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV dáta" @@ -4461,7 +4454,6 @@ msgid "Set import and export directories and compression options" msgstr "Nastaví adresáre pre import a export a voľby kompresie" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4658,7 +4650,6 @@ msgid "Customize startup page" msgstr "Prispôsobenie úvodnej stránky" #: libraries/config/messages.inc.php:228 -#| msgid "Database for user" msgid "Database structure" msgstr "Štruktúra databázy" @@ -4667,7 +4658,6 @@ msgid "Choose which details to show in the database structure (list of tables)" msgstr "" #: libraries/config/messages.inc.php:230 -#| msgid "Database for user" msgid "Table structure" msgstr "Štruktúra tabuľky" @@ -4692,7 +4682,6 @@ msgid "Customize text input fields" msgstr "Prispôsobenie vstupných textových polí" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! text" @@ -5062,7 +5051,6 @@ msgid "Memory limit" msgstr "Obmedzenie pamäte" #: libraries/config/messages.inc.php:325 -#| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" msgstr "Toto sú odkazy na Upraviť, Kopírovať a Odstrániť" @@ -5668,9 +5656,6 @@ msgid "Automatically create versions" msgstr "Automaticky vytvárať verzie" #: libraries/config/messages.inc.php:449 -#| msgid "" -#| "ve blank for no user preferences storage in database, suggested: [kbd]" -#| "_config[/kbd]" msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -5889,9 +5874,11 @@ msgstr "Vyžaduje povolené kontrolovanie SQL" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Heslo" @@ -6068,7 +6055,6 @@ msgstr "CSV pomocou LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Tabuľkový procesor Open Document" @@ -6090,19 +6076,16 @@ msgstr "Nastavenia exportu databáz" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV pre MS Excel dáta" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Text" @@ -6161,7 +6144,7 @@ msgstr "Chýba rozšírenie %s. Skontrolujte prosín nastavenia PHP." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6169,19 +6152,19 @@ msgstr "" "Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne " "nastavený)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Server neodpovedá." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Podrobnosti..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie." @@ -6192,13 +6175,15 @@ msgid "Change password" msgstr "Zmeniť heslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Žiadne heslo" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Potvrdiť" @@ -6219,8 +6204,9 @@ msgstr "Vytvoriť databázu" msgid "Create" msgstr "Vytvoriť" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Žiadne oprávnenia" @@ -6230,12 +6216,12 @@ msgid "Create table" msgstr "Vytvoriť tabuľku" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Názov" @@ -6374,7 +6360,7 @@ msgid "View output as text" msgstr "Zobraziť výstup ako text" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Formát:" @@ -6868,55 +6854,55 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Neboli nájdené žiadne dáta pre graf." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\"" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\"" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Prejsť do databázy: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Chýba hodnota pre %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Prejsť na tabuľku: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Štruktúra %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Prejsť na pohľad: %s" @@ -6988,11 +6974,11 @@ msgstr "" "Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými " "smermi klávesy CTRL+šípky" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7241,7 +7227,7 @@ msgstr "phpMyAdmin Dokumentácia" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Tento formát nemá žiadne nastavenia" @@ -7354,71 +7340,71 @@ msgstr "Nie je pripojený žiadny prihlasovací kľúč" msgid "Authenticating..." msgstr "Prihlasujem..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Polia oddelené s:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Polia uzatvorené do:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Polia uvedené pomocou:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Riadky ukončené:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Nahradiť NULL hodnoty:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Verzia Excelu:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Nastavenia exportu databáz" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Sťahujem dáta pre tabuľku" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Udalosť" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7426,25 +7412,25 @@ msgstr "Udalosť" msgid "Definition" msgstr "Popis" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Štruktúra tabuľky pre tabuľku" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Iba štruktúru" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7460,242 +7446,233 @@ msgstr "(pokračovanie)" msgid "Structure of table @TABLE@" msgstr "Štruktúra tabuľky @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Možnosti vytvárania objektov" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Nadpis tabuľky (pokračovanie)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Zobraziť vzťahy cudzích kľúčov" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Zobraziť komentáre" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Zobraziť MIME typy" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Hostiteľ" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Vygenerované" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Verzia serveru" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Verzia PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "or type variable name:" msgid "Export table names" msgstr "alebo zadajte meno premennej:" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "vodorovnom (otočené hlavičky)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Generuje report obsahujúci dáta jednej tabuľky)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Názov výpisu:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP pole" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Pridať vlastný komentár do hlavičky (\\n oddeľuje riadky):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Pridať údaj %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Pridať príkazy:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Možnosti vytvárania objektov" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedúry" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funkcie" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Obmedzenie pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Obmedzenie pre tabuľku" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRE TABUĽKU" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "PREPOJENIA PRE TABUĽKU" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Chyba pri čítaní dát:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Pohľady" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7762,6 +7739,10 @@ msgstr "Názvy stĺpcov" msgid "This plugin does not support compressed imports!" msgstr "Tento plug-in nepodporuje import komprimovaných súborov!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7816,6 +7797,10 @@ msgstr "Režim kompatibility SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8044,11 +8029,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "bez Popisu" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Odznačiť všetko" @@ -8069,9 +8055,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Meno používateľa" @@ -8108,34 +8095,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Pridať replikačného užívateľa pre slave" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Akýkoľvek používateľ" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Požiť textové pole" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Akýkoľvek hostiteľ" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokálny" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Použiť tabuľku s hostiteľmi" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8151,7 +8147,7 @@ msgstr "Vytvoriť Heslo" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8192,8 +8188,8 @@ msgid "Edit event" msgstr "Webový server" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Chyba pri spracovaní požiadavky" @@ -8279,7 +8275,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8430,7 +8427,12 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Výsledky spustenia rutiny %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8438,18 +8440,13 @@ msgstr[0] "Posledným príkazom v procedúre bol ovplyvnený %d riadok" msgstr[1] "Posledným príkazom v procedúre boli ovplyvnené %d riadky" msgstr[2] "Posledným príkazom v procedúre bolo ovplyvnených %d riadkov" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Výsledky spustenia rutiny %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Spustiť rutinu" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8599,28 +8596,28 @@ msgstr "V databáze %2$s nebola nájdená udalosť s menom %1$s" msgid "There are no events to display." msgstr "Nie sú žiadne udalosti na zobrazenie." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabuľka %s neexistuje!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prosím skonfigurujte koordináty pre tabuľku %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schéma databázy %s - Strana %s" @@ -8757,6 +8754,456 @@ msgstr "Neznámy jazyk: %1$s." msgid "Current Server" msgstr "Aktuálny server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Žiadne práva." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Všetky oprávnenia okrem GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Povolí čítanie dát." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Povolí vkladanie a nahradzovanie dát." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Povolí menenie dát." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Povolí mazanie dát." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Povolí vytváranie nových databáz a tabuliek." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Povolí odstraňovanie databáz a tabuliek." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí " +"serveru." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Povolí vypnutie serveru." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nefunguje v tejto verzii MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Povolí vytváranie a mazanie indexov." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Povolí meniť štruktúru existujúcich tabuliek." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Povolí prístup ku kompletnému zoznamu databáz." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Povolí spojenie aj v prípade, že bol dosiahnutý maximálny počet spojení. " +"Potrebné pre väčšinu operácií pri správe serveru ako nastavovanie globálny " +"premenných alebo zabíjanie procesov iných používateľov." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Povolí vytváranie dočasných tabuliek." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Potrebné pre replikáciu pomocných serverov." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Umožňuje vytvárať nové pohľady." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Povolí vytváranie a mazanie spúšťačov" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Umožňuje vytvárať uložené procedúry." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Umožňuje spúšťať uložené procedúry." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Žiadny" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Obmedzenie zdrojov" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Obmedzí počet dopytov, ktoré môže používateľ odoslať za hodinu." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Obmedzí počet príkazov meniacich tabuľku alebo databázu, ktorá môže " +"používateľ odoslať za hodinu." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Obmedzí počet nových spojení, ktoré môže používateľ vytvoriť za hodinu." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Obmedzuje počet simultánnych pripojení používateľa." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Oprávnenia pre jednotlivé tabuľky" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administrácia" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globálne práva" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Oprávnenia pre jednotlivé databázy" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Povolí vytváranie nových tabuliek." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Povolí odstraňovanie tabuliek." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Prihlasovacie informácie" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Nezmeniť heslo" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Heslo pre %s bolo úspešne zmenené." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Boli zrušené oprávnenia pre %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Databáza pre používateľa" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Prideliť všetky oprávnenia na databázu "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Používatelia majúci prístup k "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Používateľ" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Prideliť" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Užívateľ bol pridaný." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Akýkoľvek" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globálny" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "závislé na databáze" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "nahradzujúci znak" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Nebol nájdený žiadny používateľ." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Upraviť oprávnenia" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Zrušiť" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Exportovať" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... zachovať pôvodného používateľa." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... zmazať pôvodného používateľa z tabuliek používateľov." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +"... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... zmazať pôvodného používateľa z tabuliek používateľov a potom " +"znovunačítať oprávnenia." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Vytvoriť nového používateľa s rovnakými právami a ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Oprávnenia pre jednotlivé stĺpce" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Pridať oprávnenia pre nasledujúcu databázu" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Náhradzujúcim znakom % a _ by mal predchádzať znak \\, pokiaľ ich nechcete " +"použiť doslovne" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Pridať oprávnenia pre nasledujúcu tabuľku" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Odstrániť vybraných používateľov" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Na odstránenie neboli vybraní žiadni používatelia!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Znovunačítanie práv" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Vybraní používatelia bol úspešne odstránený." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Boli aktualizované oprávnenia pre %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Oprávnenia" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Oprávnenia" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Zoznam používatelov" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. " +"Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli " +"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " +"%sznovunačítanie práv%s predtým ako budete pokračovať." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Používateľ bol pridaný." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Zdrojová databáza" @@ -8803,11 +9250,11 @@ msgstr "Vyčistiť" msgid "Columns" msgstr "Stĺpce" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" @@ -9063,7 +9510,6 @@ msgid "General Settings" msgstr "Všeobecné nastavenia" #: main.php:121 -#| msgid "MySQL connection collation" msgid "Server connection collation" msgstr "Znaková sada pre pripojenie k serveru" @@ -9095,12 +9541,6 @@ msgstr "Verzia serveru" msgid "Protocol version" msgstr "Verzia protokolu" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Používateľ" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -9627,447 +10067,20 @@ msgstr "Licencia" msgid "disabled" msgstr "vypnuté" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Všetky oprávnenia okrem GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Povolí meniť štruktúru existujúcich tabuliek." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Povolí vytváranie nových databáz a tabuliek." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Umožňuje vytvárať uložené procedúry." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Povolí vytváranie nových tabuliek." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Povolí vytváranie dočasných tabuliek." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Umožňuje vytvárať nové pohľady." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Povolí mazanie dát." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Povolí odstraňovanie databáz a tabuliek." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Povolí odstraňovanie tabuliek." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Umožňuje spúšťať uložené procedúry." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Povolí vytváranie a mazanie indexov." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Povolí vkladanie a nahradzovanie dát." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Obmedzí počet nových spojení, ktoré môže používateľ vytvoriť za hodinu." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Obmedzí počet dopytov, ktoré môže používateľ odoslať za hodinu." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Obmedzí počet príkazov meniacich tabuľku alebo databázu, ktorá môže " -"používateľ odoslať za hodinu." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Obmedzuje počet simultánnych pripojení používateľa." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nefunguje v tejto verzii MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí " -"serveru." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Potrebné pre replikáciu pomocných serverov." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Povolí čítanie dát." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Povolí prístup ku kompletnému zoznamu databáz." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Povolí vypnutie serveru." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Povolí spojenie aj v prípade, že bol dosiahnutý maximálny počet spojení. " -"Potrebné pre väčšinu operácií pri správe serveru ako nastavovanie globálny " -"premenných alebo zabíjanie procesov iných používateľov." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Povolí vytváranie a mazanie spúšťačov" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Povolí menenie dát." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Žiadne práva." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Žiadny" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Oprávnenia pre jednotlivé tabuľky" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administrácia" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globálne práva" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Oprávnenia pre jednotlivé databázy" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Obmedzenie zdrojov" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Prihlasovacie informácie" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Nezmeniť heslo" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Nebol nájdený žiadny používateľ." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Používateľ %s už existuje!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Používateľ bol pridaný." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Boli aktualizované oprávnenia pre %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Boli zrušené oprávnenia pre %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Heslo pre %s bolo úspešne zmenené." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Odstraňuje sa %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Na odstránenie neboli vybraní žiadni používatelia!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Znovunačítanie práv" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Vybraní používatelia bol úspešne odstránený." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Upraviť oprávnenia" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Zrušiť" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Exportovať" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Akýkoľvek" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Oprávnenia" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Oprávnenia" - -#: server_privileges.php:1739 -#| msgid "User overview" -msgid "Users overview" -msgstr "Zoznam používatelov" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Prideliť" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Odstrániť vybraných používateľov" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. " -"Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli " -"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " -"%sznovunačítanie práv%s predtým ako budete pokračovať." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Oprávnenia pre jednotlivé stĺpce" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Pridať oprávnenia pre nasledujúcu databázu" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Náhradzujúcim znakom % a _ by mal predchádzať znak \\, pokiaľ ich nechcete " -"použiť doslovne" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Pridať oprávnenia pre nasledujúcu tabuľku" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Vytvoriť nového používateľa s rovnakými právami a ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... zachovať pôvodného používateľa." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... zmazať pôvodného používateľa z tabuliek používateľov." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -"... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... zmazať pôvodného používateľa z tabuliek používateľov a potom " -"znovunačítať oprávnenia." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Databáza pre používateľa" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Prideliť všetky oprávnenia na databázu "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Používatelia majúci prístup k "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globálny" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "závislé na databáze" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "nahradzujúci znak" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Užívateľ bol pridaný." - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -10353,12 +10366,10 @@ msgid "Related links:" msgstr "Súvisiace odkazy:" #: server_status.php:920 -#| msgid "Query type" msgid "Run analyzer" msgstr "Spustiť analyzátor" #: server_status.php:921 -#| msgid "Introduction" msgid "Instructions" msgstr "Inštrukcie" @@ -11452,7 +11463,6 @@ msgid "Target database has been synchronized with source database" msgstr "" #: server_synchronize.php:1191 -#| msgid "Issued queries" msgid "Executed queries" msgstr "Vykonaných dopytov" @@ -11783,39 +11793,39 @@ msgstr "" msgid "Wrong data" msgstr "Žiadne dáta" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Skutočne chcete vykonať príkaz " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Zobrazujem ako PHP kód" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Skontrolované SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Výsledok SQL dopytu" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Vygenerované" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Názov" @@ -13643,6 +13653,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavené na 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP pole" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/sl.po b/po/sl.po index 86ca467313..515f42f3f3 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,20 +3,21 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" -"PO-Revision-Date: 2012-06-29 18:51+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" +"PO-Revision-Date: 2012-07-27 12:49+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Pokaži vse" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Iskanje" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Iskanje" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Izvedi" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Zbirka podatkov %1$s je ustvarjena." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Pripomba zbirke podatkov: " @@ -120,17 +123,17 @@ msgstr "Pripomba zbirke podatkov: " msgid "Table comments" msgstr "Pripomba tabele" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Stolpec" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Vrsta" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Null" msgid "Default" msgstr "Privzeto" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Povezave z" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Pripombe" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ne" @@ -242,19 +248,22 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Da" @@ -262,8 +271,8 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Preglej povzetek stanja zbirke podatkov" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "V zbirki podatkov ni mogoče najti tabel." @@ -279,74 +288,74 @@ msgstr "Prekliči izbor vsega" msgid "The database name is empty!" msgstr "Ime zbirke podatkov je prazno!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Zbirko podatkov %1$s sem preimenoval v %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Zbirko podatkov %1$s sem skopiral v %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Odstrani zbirko podatkov" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Zbirka podatkov %s je zavržena." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Zavrzi zbirko podatkov (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopiraj zbirko podatkov v" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktura in podatki" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Samo podatki" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pred kopiranjem" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Dodaj omejitve" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Preklopi na kopirano zbirko podatkov" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Preklopi na kopirano zbirko podatkov" msgid "Collation" msgstr "Pravilo za razvrščanje znakov" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "Hramba konfiguracije phpMyAdmin je bila onemogočena. Če želite izvedeti " "zakaj, kliknite %stukaj%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Uredi ali izvozi relacijsko shemo" @@ -375,16 +384,18 @@ msgstr "Uredi ali izvozi relacijsko shemo" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Vrstic" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Velikost" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "v uporabi" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Ustvarjeno" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Zadnjič posodobljeno" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -431,92 +442,15 @@ msgstr[1] "%s tabeli" msgstr[2] "%s tabele" msgstr[3] "%s tabel" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Za prikaz morate izbrati morate vsaj en stolpec" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Naraščajoče" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Padajoče" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Razvrsti" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Pokaži" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriteriji" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Dodaj/Odstrani vrstice meril" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Dodaj/Odstrani stolpce" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Osveži poizvedbo" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Uporabi tabele" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Ali" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "In" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Vstavi" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Briši" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Spremeni" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Preklopi na %svidni graditelj%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Poizvedba SQL na zbirki podatkov %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Izvedi poizvedbo" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -557,7 +491,7 @@ msgstr "Sledenje je aktivno." msgid "Tracking is not active." msgstr "Sledenje ni aktivno." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -585,20 +519,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Z označenim:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Označi vse" @@ -606,31 +541,32 @@ msgstr "Označi vse" msgid "Check tables having overhead" msgstr "Preveri prekoračene" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvozi" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Izprazni" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -674,17 +610,18 @@ msgstr "Sledene tabele" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Zbirka podatkov" @@ -702,18 +639,26 @@ msgstr "Posodobljeno" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Stanje" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Dejanje" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Pokaži" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Izbriši podatke sledenja te tabele" @@ -754,20 +699,20 @@ msgstr "Dnevnik zbirke podatkov" msgid "Bad type!" msgstr "Slaba vrsta!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Izbrana vrsta izvoza mora biti shranjena v datoteko!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Slabi parametri!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ni dovolj prostora za shranjevanje datoteke %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -775,12 +720,12 @@ msgstr "" "Datoteka %s že obstaja na strežniku, spremenite ime novi ali prepišite " "obstoječo datoteko." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Spletni strežnik nima dovoljenja za shranjevanje datoteke %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump je shranjen v datoteko %s." @@ -803,7 +748,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometrija" @@ -876,7 +821,7 @@ msgstr "" "Izberite \"GeomFromText\" iz stolpca \"Funkcija\" in prilepite spodnji niz v " "polje \"Vrednost\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -885,20 +830,20 @@ msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Zaznamek je odstranjen." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Ne morem prebrati datoteke" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -908,7 +853,7 @@ msgstr "" "Poskušali ste naložiti datoteko z nepodprtim stiskanjem (%s). Bodisi podpora " "za njega ni vključena ali pa je onemogočena z vašo konfiguracijo." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,29 +863,29 @@ msgstr "" "je velikost datoteke presegala največjo velikost, dovoljeno v konfiguraciji " "PHP. Glej [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Ne morem pretvoriti nabora znakov datoteke brez knjižnice za pretvorbo " "nabora znakov" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ne morem naložiti vtičnikov za uvoz, prosimo, preverite vašo namestitev!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -948,7 +893,7 @@ msgstr "" "Časovna omejitev skripta je potekla; če želite končati uvoz, prosimo, " "ponovno pošljite isto datoteko in uvoz se bo nadaljeval." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -957,8 +902,8 @@ msgstr "" "navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če " "povečate vaše časovne omejitve PHP." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -973,7 +918,7 @@ msgstr "Nazaj" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin je prijaznejši z brskalnikom, ki podpira okvirje." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." @@ -982,7 +927,7 @@ msgstr "Poizvedbe \"DROP DATABASE\" so izključene." msgid "Do you really want to execute \"%s\"?" msgstr "Ali res želite izvesti \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" @@ -1040,16 +985,20 @@ msgstr "Ime gostitelja je prazno!" msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Dodaj uporabnika" @@ -1069,9 +1018,9 @@ msgstr "Zapri" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1317,12 +1266,13 @@ msgstr "Dodaj grafikon na mrežo" msgid "Please add at least one variable to the series" msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Brez" @@ -1506,10 +1456,10 @@ msgid "Explain output" msgstr "Razloži izhod" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Čas" @@ -1802,7 +1752,7 @@ msgstr "Prikaži polje poizvedbe" msgid "No rows selected" msgstr "Ni izbranih vrstic" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Spremeni" @@ -1811,8 +1761,8 @@ msgstr "Spremeni" msgid "Query execution time" msgstr "Čas izvajanja poizvedbe" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d ni veljavna številka vrstice." @@ -1884,7 +1834,7 @@ msgstr "Vsebina kazalca podatkov" msgid "Ignore" msgstr "Prezri" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopiraj" @@ -2372,14 +2322,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Napaka" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "Poizvedba SQL" @@ -2390,7 +2340,7 @@ msgstr "Poizvedba SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2419,6 +2369,10 @@ msgstr "Brez kode PHP" msgid "Create PHP Code" msgstr "Ustvari kodo PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Izvedi poizvedbo" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2443,7 +2397,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "V vrstici" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profiliranje" @@ -2470,14 +2424,14 @@ msgstr "Manjkajoč parameter:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Začetek" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2485,7 +2439,7 @@ msgstr "Prejšnja" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2493,7 +2447,7 @@ msgstr "Naslednja" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Konec" @@ -2514,16 +2468,17 @@ msgstr "Kliknite za preklop" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" @@ -2531,21 +2486,20 @@ msgstr "Struktura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Vstavi" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Prebrskaj" @@ -2566,21 +2520,21 @@ msgstr "Prebrskajte svoj računalnik:" msgid "Select from the web server upload directory %s:" msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Nobene datoteke ni za naložiti" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Izvedi" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Natisni" @@ -2598,6 +2552,74 @@ msgstr "" msgid "Font size" msgstr "Velikost pisave" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Naraščajoče" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Padajoče" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Razvrsti" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriteriji" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Dodaj/Odstrani vrstice meril" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Dodaj/Odstrani stolpce" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Osveži poizvedbo" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Uporabi tabele" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Ali" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "In" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Vstavi" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Briši" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Spremeni" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Poizvedba SQL na zbirki podatkov %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "katerokoli besedo" @@ -2642,8 +2664,8 @@ msgstr[3] "%1$s zadetkov v %2$s" msgid "Delete the matches for the %s table?" msgstr "Izbrišem zadetke v tabeli %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2678,64 +2700,64 @@ msgstr "Znotraj tabel:" msgid "Inside column:" msgstr "V stolpcu:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Shrani urejene podatke" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Obnovi vrstni red stolpcev" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Začetna vrstica" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Število vrstic" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Način" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "vodoravnem" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "vodoravno (zasukani naslovi)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "navpičnem" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Glave vsakih %s vrstic" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Uredi po ključu" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2748,60 +2770,60 @@ msgstr "Uredi po ključu" msgid "Options" msgstr "Možnosti" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Delna besedila" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Polna besedila" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Relacijski prikazni stolpec" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Prikaži dvojiške vsebine" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Prikaži vsebine BLOB" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Prikaži dvojiške vsebine kot HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Skrij pretvorbo z brskalnikom" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Dobro poznano besedilo" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Dobro poznana dvojiška datoteka" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Vrstica je izbrisana" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Prekini proces" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2809,44 +2831,44 @@ msgstr "" "Morda je približno. Glej [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "v poizvedbi" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Prikazujem vrstice" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "skupaj" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Pogled za tiskanje (s polnimi besedili)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Predstavi podatke GIS" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Ustvari pogled" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Povezave ni mogoče najti" @@ -2970,8 +2992,8 @@ msgstr "" "odstrani." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Zbirke podatkov" @@ -2987,11 +3009,11 @@ msgid "Tracking" msgstr "Sledenje" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Sprožilci" @@ -3009,9 +3031,9 @@ msgstr "Zbirka podatkov se zdi prazna!" msgid "Query" msgstr "Poizvedba" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegiji" @@ -3020,7 +3042,7 @@ msgid "Routines" msgstr "Rutina" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Dogodki" @@ -3123,43 +3145,43 @@ msgstr "%s je onemogočeno za ta strežnik MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "neznano stanje tabele: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Izvorne zbirke podatkov `%s` nisem našel!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Ciljne zbirke podatkov `%s` nisem našel!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Neveljavna zbirka podatkov" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Neveljavno ime tabele" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Napaka pri preimenovanju tabele %1$s v %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelo %1$s sem preimenoval v %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3168,7 +3190,7 @@ msgstr "" "Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3180,7 +3202,7 @@ msgstr "" "bila struktura tabele spremenjena." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3192,7 +3214,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3231,7 +3253,7 @@ msgid "Maximum rows to plot" msgstr "Največje število vrstic za izris" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" @@ -3643,7 +3665,7 @@ msgstr "deljeno" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabele" @@ -3654,9 +3676,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Podatki" @@ -3776,32 +3799,32 @@ msgid "Disabled" msgstr "Onemogočeno" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "struktura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "podatki" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "struktura in podatki" @@ -4226,13 +4249,13 @@ msgstr "Stiskanje" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Postavi imena stolpcev v prvo vrstico" @@ -4255,7 +4278,6 @@ msgstr "Stolpci so izognjeni z" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Zamenjaj NULL z" @@ -4295,23 +4317,22 @@ msgstr "Predloga imena tabele" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Odloži tabelo" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Vključi ime tabele" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Ime tabele" @@ -4320,14 +4341,14 @@ msgid "Continued table caption" msgstr "Nadaljevanje imena tabele" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Označi ključ" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Vrsta MIME" @@ -4364,7 +4385,7 @@ msgid "SQL compatibility mode" msgstr "Združljivostni način SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "Možnosti CREATE TABLE:" @@ -4377,7 +4398,7 @@ msgid "Use delayed inserts" msgstr "Uporabi zakasnjeno vstavljanje" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Onemogoči preverjanja tujih ključev" @@ -4394,7 +4415,7 @@ msgid "Syntax to use when inserting data" msgstr "Skladnja ob vstavljanju podatkov" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Največja dolžina ustvarjene poizvedbe" @@ -4403,7 +4424,7 @@ msgid "Export type" msgstr "Vrsta izvoza" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Vključi izvoz v transakcijo" @@ -4458,7 +4479,6 @@ msgstr "Prilagodite privzete možnosti" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4517,7 +4537,6 @@ msgid "Set import and export directories and compression options" msgstr "Nastavi mape za uvoz in izvoz ter možnosti stiskanja" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4748,7 +4767,6 @@ msgid "Customize text input fields" msgstr "Prilagodi polja za vnos besedila" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Besedilo Texy!" @@ -5940,9 +5958,11 @@ msgstr "Potrebuje omogočen Preverjalnik SQL" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Geslo" @@ -6119,7 +6139,6 @@ msgstr "CSV z uporabo LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Preglednica Open Document" @@ -6141,19 +6160,16 @@ msgstr "Možnosti za izvoz zbirke podatkov" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV-podatki za MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Besedilo Open Document" @@ -6209,7 +6225,7 @@ msgstr "Razširitev %s manjka. Prosimo, preverite vašo konfiguracijo PHP." msgid "possible deep recursion attack" msgstr "možen napad globoke rekurzije" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6217,19 +6233,19 @@ msgstr "" "Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno " "konfigurirana)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Strežnik se ne odziva." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Podrobnosti ..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6242,13 +6258,15 @@ msgid "Change password" msgstr "Spremeni geslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Brez gesla" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Ponovno vnesi" @@ -6269,8 +6287,9 @@ msgstr "Ustvari zbirko podatkov" msgid "Create" msgstr "Ustvari" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Brez privilegijev" @@ -6280,12 +6299,12 @@ msgid "Create table" msgstr "Ustvari tabelo" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Ime" @@ -6424,7 +6443,7 @@ msgid "View output as text" msgstr "Ogled izhoda kot besedilo" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Oblika:" @@ -6936,53 +6955,53 @@ msgstr "Blog PrimeBase XT avtorja Paula McCullagha" msgid "No data found for GIS visualization." msgstr "Za predstavitev GIS ni najdenih podatkov." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Oglejte si vsebine strukture s klikom na njeno ime" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo " "\"Možnosti\"" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Uredite strukturo s sledenjem povezavi \"Struktura\"" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Pojdi v zbirko podatkov: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Uredi nastavitve za %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Pojdi na tabelo: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Pojdi na pogled: %s" @@ -7053,11 +7072,11 @@ msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" @@ -7303,7 +7322,7 @@ msgstr "Dokumentacija phpMyAdmin" msgid "Reload navigation frame" msgstr "Osveži navigacijski okvir" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Oblika nima nobenih možnosti" @@ -7416,95 +7435,95 @@ msgstr "Vstavljen ni noben overitveni ključ" msgid "Authenticating..." msgstr "Potrjevanje ..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Stolpci so ločeni z:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Stolpci so obdani z:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Stolpci so izognjeni z:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Vrstice so zaključene z:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Zamenjaj NULL z:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" "Odstrani znake prehoda na začetek vrstice/pomika v novo vrsto znotraj " "stolpcev" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Različica Excel:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Možnosti odlaganja podatkov" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Odloži podatke za tabelo" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Dogodek" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Opredelitev" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struktura tabele" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktura pogleda" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Nadomestna struktura pogleda" @@ -7520,94 +7539,83 @@ msgstr "(nadaljevanje)" msgid "Structure of table @TABLE@" msgstr "Struktura tabele @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Možnosti ustvarjanja objektov" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Naslov tabele (nadaljevanje)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Prikaži razmerja tujih ključev" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Prikaži pripombe" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Prikaži vrste MIME" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Gostitelj" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Čas nastanka" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Različica strežnika" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Različica PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "Tabela MediaWiki" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Izvozi imena tabel" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Izvozi glave tabel" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Ustvari poročilo, ki vsebuje podatke ene tabele)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Naslov poročila:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP-polje" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7615,11 +7623,11 @@ msgstr "" "Pokaži pripombe (vsebuje informacije, kot je časovni žig izvoza, " "različica PHP in različica strežnika)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "Dodatna prilagojena pripomba v glavi (\\n prelomi vrstice):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7627,25 +7635,25 @@ msgstr "" "Vključi časovni žig ustvarjanja, zadnje posodobitve in zadnjega preverjanja " "zbirk podatkov" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Sistem zbirk podatkov ali starejši strežnik MySQL, s katerim naj bo izhod " "kar se da združljiv:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Dodaj izjavo %s" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Dodaj izjave:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7653,32 +7661,38 @@ msgstr "" "Obdaj imena tabel in stolpcev z narekovaji (Zaščiti imena stolpcev in " "tabel, tvorjenih s posebnimi znaki ali ključnimi besedami)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Možnosti ustvarjanja podatkov" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Počisti tabelo pred vstavljanjem" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Namesto izjav INSERT uporabi:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "Izjave INSERT DELAYED" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "Izjave INSERT IGNORE" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Funkcija, ki se naj uporabi pri odlaganju podatkov:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Skladnja za vstavljanje podatkov:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7688,7 +7702,7 @@ msgstr "" "    Primer: INSERT INTO ime_tabele (stolp_A,stolp_B,stolp_C) " "VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7698,7 +7712,7 @@ msgstr "" "  Primer: INSERT INTO ime_tabele VALUES (1,2,3), (4,5,6), (7,8,9)" "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7706,7 +7720,7 @@ msgstr "" "oboje zgoraj
      Primer: INSERT INTO ime_tabele " "(sto_A,sto_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7714,7 +7728,7 @@ msgstr "" "nič od zgoraj
      Primer: INSERT INTO " "ime_tabele VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7722,7 +7736,7 @@ msgstr "" "Odloži dvojiške stolpce v šestnajstiškem zapisu (na primer: \"abc\" " "postane 0x616263)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7730,50 +7744,45 @@ msgstr "" "Odloži stolpce TIMESTAMP v UTC (omogoči stolpcem TIMESTAMP odlaganje in " "ponovno nalaganje med strežniki v različnih časovnih pasovih)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedure" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funkcije" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Omejitve tabel za povzetek stanja" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Omejitve za tabelo" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "VRSTE MIME ZA TABELO" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE ZA TABELO" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Napaka med branjem podatkov:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Možnosti ustvarjanja objektov (vse so priporočljive)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Pogledi" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Izvozi vsebine" @@ -7847,6 +7856,10 @@ msgstr "Imena stolpcev" msgid "This plugin does not support compressed imports!" msgstr "Vtičnik ne podpira stisnjenih uvozov!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "Tabela MediaWiki" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7905,6 +7918,10 @@ msgstr "Združljivostni način SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne uporabi AUTO_INCREMENT za ničelne vrednosti" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8132,11 +8149,12 @@ msgstr "" "Ponovno se prijavite v phpMyAdmin, da naložite posodobljeno konfiguracijsko " "datoteko." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "brez opisa" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Počisti vse" @@ -8159,9 +8177,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Uporabniško ime" @@ -8198,34 +8217,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Dodaj uporabnika podvojevanja podrejencev" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Kateri koli uporabnik" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Uporabi besedilno polje" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Kateri koli gostitelj" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Ta strežnik" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Uporabi tabelo gostiteljev" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8241,7 +8269,7 @@ msgstr "Ustvari geslo" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8277,8 +8305,8 @@ msgid "Edit event" msgstr "Uredi dogodek" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Napaka v obdelovanju zahteve" @@ -8354,7 +8382,8 @@ msgstr "Navesti morate veljavno vrsto dogodka." msgid "You must provide an event definition." msgstr "Navesti morate opredelitev dogodka." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Novo" @@ -8488,7 +8517,12 @@ msgstr "Navesti morate veljavno vrsto vrnjene vrednosti dogodka." msgid "You must provide a routine definition." msgstr "Navesti morate opredelitev rutine." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Rezultati izvedbe rutine %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8497,18 +8531,13 @@ msgstr[1] "Zadnja izjava znotraj procedure je spremenila %d vrstici" msgstr[2] "Zadnja izjava znotraj procedure je spremenila %d vrstice" msgstr[3] "Zadnja izjava znotraj procedure je spremenila %d vrstic" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Rezultati izvedbe rutine %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Izvedi rutino" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Parametri rutine" @@ -8637,28 +8666,28 @@ msgstr "Dogodka imenovanega %1$s ni mogoče najti v zbirki podatkov %2$s" msgid "There are no events to display." msgstr "Ni dogodkov za prikaz." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabela %s ne obstaja!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prosimo, konfigurirajte koordinate za tabelo %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Shema zbirke podatkov %s - Stran %s" @@ -8795,6 +8824,453 @@ msgstr "Neznani jezik: %1$s." msgid "Current Server" msgstr "Trenutni strežnik" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Brez privilegijev." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Vsebuje vse privilegije razen GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Omogoča branje podatkov." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Omogoča vstavljanje in zamenjavo podatkov." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Omogoča spreminjanje podatkov." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Omogoča brisanje podatkov." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Omogoča ustvarjanje novih zbirk podatkov in tabel." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Omogoča brisanje zbirk podatkov in tabel." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih " +"predpomnilnikov." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Omogoča ugašanje strežnika." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Omogoča ogled procesov vseh uporabnikov" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "V tej različici MySQL nima pomena." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Omogoča ustvarjanje in brisanje indeksov." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Omogoča spreminjanje strukture obstoječih tabel." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Omogoča dostop do popolnega spiska zbirk podatkov." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Omogoča priklaplanje tudi če je že doseženo največje dovoljeno število " +"priklopov; potrebno za večino administrativnih nalog kot sta postavljanje " +"globalnih spremenljivk in ukinjanje procesov drugih uporabnikov." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Omogoča ustvarjanje začasnih tabel." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Omogoča zaklepanje tabel za trenutno temo." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Potrebno za podrejene strežnike pri replikaciji." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni " +"strežniki." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Omogoča ustvarjanje novih pogledov." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Omogoča ustvarjanje in brisanje sprožilcev" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Omogoča ustvarjanje shranjenih rutin." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Omogoča izvajanje shranjenih rutin." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Brez" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Omejitve virov" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Omeji število poizved, ki jih uporabnik lahko pošlje strežniku v eni uri." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Omeji število ukazov za spremembo tabel ali zbirke podatkov, ki jih " +"uporabnik lahko izvrši v eni uri." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Omeji število povezav, ki jih uporabnik lahko odpre v eni uri." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Privilegiji tipični za tabelo" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Opomba: Imena privilegijev MySQL so zapisana v angleščini" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administracija" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globalni privilegiji" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Privilegiji tipični za podatkovno zbirko" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Omogoča ustvarjanje novih tabel." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Omogoča brisanje tabel." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Podatki o prijavi" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Ne spreminjaj gesla" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Geslo za %s je uspešno spremenjeno." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Odvzeli ste privilegije za %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Zbirka podatkov za uporabnika" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" +"Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Dodeli vse privilegije za podatkovno zbirko "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Uporabniški dostop do "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Uporabnik" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Dovoli" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Uporabnik je dodan." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Kateri koli" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globalno" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "glede na zbirko podatkov" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "nadomestni znak" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Najden ni bil noben uporabnik." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Uredi privilegije" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Odvzemi" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Izvozi vse" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... obdrži starega." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... izbriši starega s seznama uporabnikov." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... prekliči vse aktivne pravice starega uporabnika ter jih izbriši." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " +"njegove pravice." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Spremeni prijavne informacije / Kopiraj uporabnika" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Ustvari novega uporabnika z enakimi pravicami in ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Privilegiji tipični za stolpec" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Dodaj privilegije na naslednji zbirki podatkov" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Pred nadomestna znaka % in _ je potrebno postaviti \\, če ju želite " +"uporabiti dobesedno" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Dodaj privilegije na naslednji tabeli" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Izbriši izbrane uporabnike" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Ni izbranih uporabnikov za brisanje!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Osvežujem privilegije" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Uspešno sem izbrisal izbrane uporabnike." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Posodobili ste privilegije za %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Privilegiji vseh uporabnikov" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Privilegiji %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Pregled uporabnikov" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel " +"privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki " +"jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " +"morate pred nadaljevanjem %sosvežiti privilegije%s." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Dodali ste novega uporabnika." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Izvorna zbirka podatkov" @@ -8841,11 +9317,11 @@ msgstr "Počisti" msgid "Columns" msgstr "Stolpci" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" @@ -9124,12 +9600,6 @@ msgstr "Različica programske opreme" msgid "Protocol version" msgstr "Različica protokola" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Uporabnik" - #: main.php:217 msgid "Server charset" msgstr "Nabor znakov strežnika" @@ -9653,443 +10123,20 @@ msgstr "Dovoljenje" msgid "disabled" msgstr "onemogočeno" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Vsebuje vse privilegije razen GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Omogoča spreminjanje strukture obstoječih tabel." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Omogoča ustvarjanje novih zbirk podatkov in tabel." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Omogoča ustvarjanje shranjenih rutin." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Omogoča ustvarjanje novih tabel." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Omogoča ustvarjanje začasnih tabel." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Omogoča ustvarjanje novih pogledov." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Omogoča brisanje podatkov." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Omogoča brisanje zbirk podatkov in tabel." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Omogoča brisanje tabel." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Omogoča izvajanje shranjenih rutin." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Omogoča ustvarjanje in brisanje indeksov." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Omogoča vstavljanje in zamenjavo podatkov." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Omogoča zaklepanje tabel za trenutno temo." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Omeji število povezav, ki jih uporabnik lahko odpre v eni uri." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Omeji število poizved, ki jih uporabnik lahko pošlje strežniku v eni uri." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Omeji število ukazov za spremembo tabel ali zbirke podatkov, ki jih " -"uporabnik lahko izvrši v eni uri." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Omogoča ogled procesov vseh uporabnikov" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "V tej različici MySQL nima pomena." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih " -"predpomnilnikov." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni " -"strežniki." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Potrebno za podrejene strežnike pri replikaciji." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Omogoča branje podatkov." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Omogoča dostop do popolnega spiska zbirk podatkov." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Omogoča ugašanje strežnika." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Omogoča priklaplanje tudi če je že doseženo največje dovoljeno število " -"priklopov; potrebno za večino administrativnih nalog kot sta postavljanje " -"globalnih spremenljivk in ukinjanje procesov drugih uporabnikov." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Omogoča ustvarjanje in brisanje sprožilcev" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Omogoča spreminjanje podatkov." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Brez privilegijev." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Brez" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Privilegiji tipični za tabelo" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Opomba: Imena privilegijev MySQL so zapisana v angleščini" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administracija" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globalni privilegiji" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Privilegiji tipični za podatkovno zbirko" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Omejitve virov" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Podatki o prijavi" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Ne spreminjaj gesla" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Najden ni bil noben uporabnik." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Uporabnik %s že obstaja!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Dodali ste novega uporabnika." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Posodobili ste privilegije za %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Odvzeli ste privilegije za %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Geslo za %s je uspešno spremenjeno." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Ni izbranih uporabnikov za brisanje!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Osvežujem privilegije" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Uspešno sem izbrisal izbrane uporabnike." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Uredi privilegije" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Odvzemi" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Izvozi vse" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Kateri koli" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Privilegiji vseh uporabnikov" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Privilegiji %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Pregled uporabnikov" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Dovoli" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Izbriši izbrane uporabnike" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel " -"privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki " -"jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " -"morate pred nadaljevanjem %sosvežiti privilegije%s." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Privilegiji tipični za stolpec" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Dodaj privilegije na naslednji zbirki podatkov" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Pred nadomestna znaka % in _ je potrebno postaviti \\, če ju želite " -"uporabiti dobesedno" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Dodaj privilegije na naslednji tabeli" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Spremeni prijavne informacije / Kopiraj uporabnika" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Ustvari novega uporabnika z enakimi pravicami in ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... obdrži starega." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... izbriši starega s seznama uporabnikov." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... prekliči vse aktivne pravice starega uporabnika ter jih izbriši." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " -"njegove pravice." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Zbirka podatkov za uporabnika" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" -"Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Dodeli vse privilegije za podatkovno zbirko "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Uporabniški dostop do "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globalno" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "glede na zbirko podatkov" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "nadomestni znak" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Uporabnik je dodan." - #: server_replication.php:82 msgid "Unknown error" msgstr "Neznana napaka" @@ -11871,37 +11918,37 @@ msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake." msgid "Wrong data" msgstr "Napačni podatki" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Ali res želite izvesti naslednjo poizvedbo?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Prikazovanje kot koda PHP" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Preverjen SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Rezultat SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Ustvaril" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Oznaka" @@ -13764,6 +13811,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavljeno na 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP-polje" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/sq.po b/po/sq.po index a455b7752f..a5fec82f9b 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: albanian \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Shfaqi të gjithë" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Kërko" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Kërko" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Zbato" @@ -108,7 +111,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "U krijua baza e të dhënave %1$s." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Komenti për databazën: " @@ -118,17 +121,17 @@ msgstr "Komenti për databazën: " msgid "Table comments" msgstr "Komentet e tabelës" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Emrat e kollonave" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Lloji" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Null" msgid "Default" msgstr "Prezgjedhur" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Lidhje me" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Komente" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Jo" @@ -242,19 +248,22 @@ msgstr "Jo" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Po" @@ -262,8 +271,8 @@ msgstr "Po" msgid "View dump (schema) of database" msgstr "Shfaq dump (skema) e databazës" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Nuk gjenden tabela në databazë." @@ -279,79 +288,79 @@ msgstr "Asnjë zgjedhje" msgid "The database name is empty!" msgstr "Mungon emri i databazës!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Databazës %s i është ndryshuar emri në %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Databaza %s është kopjuar tek %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Databaza %s u eleminua." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "Asnjë databazë" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopjo databazën në" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Vetëm struktura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktura dhe të dhënat" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Vetëm të dhënat" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE para se të kopjohet" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Shto %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerë AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Shto kushte" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Kalo tek databaza e kopjuar" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -361,7 +370,7 @@ msgstr "Kalo tek databaza e kopjuar" msgid "Collation" msgstr "Collation" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -373,7 +382,7 @@ msgstr "" "Karakteristikat shtesë janë çaktivizuar për sa i takon funksionimit me " "tabelat e lidhura. Për të kuptuar përse, klikoni %skëtu%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -385,16 +394,18 @@ msgstr "Skema relacionale" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "rreshta" @@ -404,13 +415,13 @@ msgid "Size" msgstr "Madhësia" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "në përdorim" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -418,7 +429,7 @@ msgstr "Krijimi" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -426,7 +437,7 @@ msgstr "Ndryshimi i fundit" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -440,97 +451,16 @@ msgid_plural "%s tables" msgstr[0] "%s tabela(at)" msgstr[1] "%s tabela(at)" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Zgjidh të paktën një kollonë për të shfaqur" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Në ngjitje" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Në zbritje" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Renditja" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Shfaq" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriteri" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Shto/Fshi rreshtin e kriterit" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Shto/Fshi kollonat e fushës" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Përditëso kërkesën" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Përdor tabelat" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Ose" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Dhe" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Shto" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Fshi" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Ndrysho" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Kalo tek tabela e kopjuar" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "Kërkesë SQL tek databaza %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Dërgo Query" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -573,7 +503,7 @@ msgstr "Gjurmimi është aktiv." msgid "Tracking is not active." msgstr "Gjurmimi nuk është aktiv." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -602,20 +532,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "N.q.s. të zgjedhur:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Zgjidh gjithçka" @@ -623,31 +554,32 @@ msgstr "Zgjidh gjithçka" msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporto" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Zbraz" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -696,17 +628,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Databazat" @@ -725,18 +658,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Gjendja" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Veprimi" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Shfaq" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -782,22 +723,22 @@ msgstr "Databazat" msgid "Bad type!" msgstr "Lloji i query" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Rename database to" msgid "Bad parameters!" msgstr "Ndysho emrin e databazës në" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Hapësirë e pamjaftueshme për të ruajtur file %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -805,12 +746,12 @@ msgstr "" "File %s ekziston në server: të lutem, ndrysho emrin e file ose zgjidh " "opcionin \"Mbishkruaj\"." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serveri web nuk ka të drejtat e duhura për të ruajtur file %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump u ruajt tek file %s." @@ -834,7 +775,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -914,27 +855,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Libërshënuesi u fshi." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "File nuk mund të lexohet" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -942,46 +883,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -996,7 +937,7 @@ msgstr "Mbrapa" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funksionon më mirë me shfletues që suportojnë frames" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." @@ -1006,7 +947,7 @@ msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." msgid "Do you really want to execute \"%s\"?" msgstr "Konfermo: " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Jeni duke SHKATËRRUAR një databazë komplete!" @@ -1076,16 +1017,20 @@ msgstr "Emri i host është bosh!" msgid "The user name is empty!" msgstr "Emri i përdoruesit është bosh!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Fjalëkalimi është bosh!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Fjalëkalimi nuk korrispondon!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1111,9 +1056,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1378,12 +1323,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Asnjë lloj" @@ -1568,10 +1514,10 @@ msgid "Explain output" msgstr "Shpjego SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Koha" @@ -1919,7 +1865,7 @@ msgstr "query SQL" msgid "No rows selected" msgstr "Nuk ka rreshta të zgjedhur" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Ndrysho" @@ -1928,8 +1874,8 @@ msgstr "Ndrysho" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -2010,7 +1956,7 @@ msgstr "Tabela e përmbajtjes" msgid "Ignore" msgstr "Shpërfill" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2553,14 +2499,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Gabim" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "query SQL" @@ -2571,7 +2517,7 @@ msgstr "query SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2600,6 +2546,10 @@ msgstr "pa kod PHP" msgid "Create PHP Code" msgstr "Krijo kodin PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Dërgo Query" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2624,7 +2574,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2651,7 +2601,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2660,7 +2610,7 @@ msgstr "Fillim" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2670,7 +2620,7 @@ msgstr "Paraardhësi" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2680,7 +2630,7 @@ msgstr "Në vazhdim" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2703,16 +2653,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" @@ -2720,21 +2671,20 @@ msgstr "Struktura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Shto" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Shfleto" @@ -2756,21 +2706,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "directory e upload të server-it web" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Printo" @@ -2787,6 +2737,78 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Në ngjitje" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Në zbritje" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Renditja" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriteri" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Shto/Fshi rreshtin e kriterit" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Shto/Fshi kollonat e fushës" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Përditëso kërkesën" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Përdor tabelat" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Ose" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Dhe" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Shto" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Fshi" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Ndrysho" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "Kërkesë SQL tek databaza %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "të paktën një prej fjalëve" @@ -2830,8 +2852,8 @@ msgstr[1] "%s korrispondon(jnë) tek tabela %s" msgid "Delete the matches for the %s table?" msgstr "Dump i të dhënave për tabelën" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2872,73 +2894,73 @@ msgstr "Tek tabela(at):" msgid "Inside column:" msgstr "Tek fusha:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Shto/Fshi kollonat e fushës" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Sht" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "regjistrime për faqe" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Hën" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontal (headers të rrotulluar)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Zbaton query nga libërshënuesi" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Rendit sipas kyçit" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2952,115 +2974,115 @@ msgstr "Rendit sipas kyçit" msgid "Options" msgstr "Operacione" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Tekst i pjesëshëm" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Teksti i plotë" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Skema relacionale" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Skema relacionale" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Transformimi i Shfletuesit" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "rreshti u fshi" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Hiq" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "tek query" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Shfaqja e regjistrimeve" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "Gjithsej" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Shfaq për printim (me full text)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Shfaq skemën PDF" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Versioni i MySQL" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Lidhja nuk u gjet" @@ -3181,8 +3203,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Databazat" @@ -3198,11 +3220,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3220,9 +3242,9 @@ msgstr "" msgid "Query" msgstr "Query nga shembull" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Të drejtat" @@ -3231,7 +3253,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3335,51 +3357,51 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Kërko në databazë" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Kërko në databazë" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %s u riemërtua %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3388,7 +3410,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksioni" @@ -3400,7 +3422,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3445,7 +3467,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Shfleto opcionet e huaja" @@ -3804,7 +3826,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabela" @@ -3815,9 +3837,10 @@ msgstr "Tabela" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Të dhëna" @@ -3942,33 +3965,33 @@ msgid "Disabled" msgstr "Jo aktiv" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Struktura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4390,13 +4413,13 @@ msgstr "Kompresim" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4425,7 +4448,6 @@ msgstr "Fushë e kufizuar nga" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Zëvendëso NULL me" @@ -4472,25 +4494,24 @@ msgstr "Emri i file template" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s tabela(at)" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Përfshi nëntitullin e tabelës" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Titulli i Tabelës caption" @@ -4499,14 +4520,14 @@ msgid "Continued table caption" msgstr "Nëntitulli i tabelës vazhduese" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Kyçi i etiketës" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "Lloji MIME" @@ -4548,7 +4569,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4561,7 +4582,7 @@ msgid "Use delayed inserts" msgstr "Përdor shtimet me vonesë" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Ç'aktivo kontrollin e kyçeve të jashtëm" @@ -4578,7 +4599,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4588,7 +4609,7 @@ msgid "Export type" msgstr "Lloji i Eksportit" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Përfshi eksportin në një transacion" @@ -4643,7 +4664,6 @@ msgstr "Opcione të eksportimit të databazës" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "të dhëna CSV" @@ -4704,7 +4724,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4940,7 +4959,6 @@ msgid "Customize text input fields" msgstr "Opcione të eksportimit të databazës" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6053,9 +6071,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Fjalëkalimi" @@ -6222,7 +6242,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6244,19 +6263,16 @@ msgstr "Opcione të eksportimit të databazës" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV për të dhëna MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6312,27 +6328,27 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveri nuk përgjigjet" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6343,13 +6359,15 @@ msgid "Change password" msgstr "Ndrysho fjalëkalimin" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Asnjë fjalëkalim" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Rifut" @@ -6372,8 +6390,9 @@ msgstr "Krijo një databazë të re" msgid "Create" msgstr "Krijo" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Asnjë e drejtë" @@ -6384,12 +6403,12 @@ msgid "Create table" msgstr "Krijo një faqe të re" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Emri" @@ -6554,7 +6573,7 @@ msgid "View output as text" msgstr "Ruaje me emër..." #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7017,51 +7036,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Asnjë databazë" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Asnjë databazë" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Vetëm struktura" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7132,11 +7151,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7389,7 +7408,7 @@ msgstr "Dokumente të phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7502,84 +7521,84 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Rreshta që mbarojnë me" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Fushë e përbërë nga" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Fushë e kufizuar nga" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Rreshta që mbarojnë me" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Zëvendëso NULL me" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Edicion i Excel" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Opcione të eksportimit të databazës" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Dump i të dhënave për tabelën" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Dërguar" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7587,25 +7606,25 @@ msgstr "Dërguar" msgid "Definition" msgstr "Përshkrimi" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struktura e tabelës" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Vetëm struktura" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7621,265 +7640,256 @@ msgstr "(vazhdon)" msgid "Structure of table @TABLE@" msgstr "Struktura e tabelës @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Opcione të transformimeve" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Titulli i Tabelës caption" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Ç'aktivo kontrollin e kyçeve të jashtëm" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Vizualizimi i komenteve të kollonave" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Lloje MIME në dispozicion" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Host" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Gjeneruar më" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Versioni i MySQL" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Versioni i PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "Eksporto" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horizontal (headers të rrotulluar)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "Importo files" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Shto një koment të personalizuar në header (\\n ndërpret rreshtin)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Instruksione" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Instruksione" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Opcione të transformimeve" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "Proceset" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "Funksioni" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Kushtet për tabelat e nxjerra" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Kushtet për tabelën" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "LLOJET E MIME PËR TABELËN" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELACIONET PËR TABELËN" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Lejon leximin e të dhënave." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Paraqitje" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7948,6 +7958,10 @@ msgstr "Emrat e kollonave" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -8001,6 +8015,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8247,11 +8265,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "asnjë përshkrim" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Asnjë zgjedhje" @@ -8271,9 +8290,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Emri i përdoruesit" @@ -8310,34 +8330,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Çfarëdo përdorues" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Përdor fushë teksti" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Çfarëdo host" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Këtë Host" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Përdor Tabelën e Host-it" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8351,7 +8380,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8389,8 +8418,8 @@ msgid "Edit event" msgstr "Dërguar" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8478,7 +8507,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8621,25 +8651,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8790,29 +8820,29 @@ msgstr "Nuk gjenden tabela në databazë." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabela \"%s\" nuk ekziston!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Ju lutem, konfiguroni koordinatat për tabelën %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8962,6 +8992,470 @@ msgstr "" msgid "Current Server" msgstr "Serveri" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Asnjë të drejtë." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Lejon leximin e të dhënave." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Lejon futjen dhe mbishkrimin e të dhënave." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Lejon ndryshimin e të dhënave." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Lejon fshirjen e të dhënave." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Lejon eleminimin e databazave dhe tabelave." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Lejon ringarkimin e parametrave të server-it dhe risetimin e cache të " +"servërve." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Lejon përfundimin e serverit." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" +"Lejon importimin e të dhënave nga dhe eksportimin e të dhënave në files." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nuk ka asnjë efekt tek ky version i MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Lejon krijimin dhe eleminimin e treguesve." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Mundëson hyrjen tek lista komplete e databazave." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Lejon lidhje të tjera, edhe po të jetë arritur numri maksimal i lidhjeve; I " +"nevojshëm për shumë operacione administrimi si përcaktimi i të " +"ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Lejon krijimin e tabelave të përkohëshme." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Lejon bllokimin e tabelave për thread e momentit." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Nevoitet për replikimin e slaves." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"I jep të drejtën një përdoruesi të pyesë se ku gjenden slaves / masters." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +#, fuzzy +msgid "Allows creating new views." +msgstr "Lejon krijimin e tabelave të reja." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Lejon krijimin dhe eleminimin e treguesve." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +#, fuzzy +msgid "Allows creating stored routines." +msgstr "Lejon krijimin e tabelave të reja." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +#, fuzzy +msgid "Allows altering and dropping stored routines." +msgstr "Lejon krijimin dhe eleminimin e treguesve." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Asnjë lloj" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Limitet e rezervave" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Shënim: Vendosja e këtyre opcioneve në 0 (zero) do të thotë asnjë limit." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Kufizon numrin e kërkesave që një përdorues mund ti dërgojë server-it në një " +"orë." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Kufizon numrin e komandave që mund të ndryshojnë një tabelë apo databazë që " +"një përdorues mund të zbatojë në një orë." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Të drejta relative me tabelat" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Shënim: emrat e të drejtave të MySQL janë në Anglisht" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administrimi" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Të drejtat e përgjithshme" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Të drejta specifike të databazës" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Lejon krijimin e tabelave të reja." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Lejon eleminimin e tabelave." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Lejon të shtosh përdorues dhe të drejta pa ringarkuar tabelat e privilegjeve." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Informacione mbi Identifikimin" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Mos ndrysho fjalëkalim" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Fjalëkalimi për përdoruesin %s u ndryshua me sukses." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Ke anulluar të drejtat për %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Kontrollo të drejtat për databazën "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Përdoruesit që kanë hyrje tek "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Përdorues" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Grant" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Paraqitja %s u eleminua" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Çfarëdo" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globale" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "specifik i databazës" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "wildcard" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Nuk u gjet asnjë përdorues." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Ndrysho të drejtat" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Hiq" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Eksporto" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... mbaj të vjetrin." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... elemino të vjetrin nga tabela e përdoruesve." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... hiq të gjitha të drejtat nga i vjetri e pastaj eleminoje." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Krijo një përdorues të ri me të njëjta të drejta dhe ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Të drejtat relative të kollonave" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Shto të drejta tek databaza në vazhdim" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Shto të drejta tek tabela në vazhdim" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Heq përdoruesit e zgjedhur" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Hiqja të gjitha të drejtat aktive përdoruesve dhe pastaj eleminoi." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Duke ringarkuar të drejtat" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Përdoruesit e zgjedhur u hoqën me sukses." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Ke rifreskuar lejet për %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Të drejtat" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Të drejtat" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Paraqitja e përgjithshme e përdoruesve" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e " +"privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të " +"drejtave të përdorura nga serveri nëse janë kryer ndryshime manuale. Në këtë " +"rast, duhet të %srifreskoni të drejtat%s para se të vazhdoni." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Ke shtuar një përdorues të ri." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9013,11 +9507,11 @@ msgstr "Kalendari" msgid "Columns" msgstr "Emrat e kollonave" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" @@ -9323,12 +9817,6 @@ msgstr "Versioni i MySQL" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Përdorues" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9881,460 +10369,20 @@ msgstr "" msgid "disabled" msgstr "Jo aktiv" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -#, fuzzy -msgid "Allows altering and dropping stored routines." -msgstr "Lejon krijimin dhe eleminimin e treguesve." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -#, fuzzy -msgid "Allows creating stored routines." -msgstr "Lejon krijimin e tabelave të reja." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Lejon krijimin e tabelave të reja." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Lejon krijimin e tabelave të përkohëshme." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -#, fuzzy -msgid "Allows creating new views." -msgstr "Lejon krijimin e tabelave të reja." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Lejon fshirjen e të dhënave." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Lejon eleminimin e databazave dhe tabelave." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Lejon eleminimin e tabelave." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" -"Lejon importimin e të dhënave nga dhe eksportimin e të dhënave në files." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Lejon të shtosh përdorues dhe të drejta pa ringarkuar tabelat e privilegjeve." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Lejon krijimin dhe eleminimin e treguesve." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Lejon futjen dhe mbishkrimin e të dhënave." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Lejon bllokimin e tabelave për thread e momentit." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Kufizon numrin e kërkesave që një përdorues mund ti dërgojë server-it në një " -"orë." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Kufizon numrin e komandave që mund të ndryshojnë një tabelë apo databazë që " -"një përdorues mund të zbatojë në një orë." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nuk ka asnjë efekt tek ky version i MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Lejon ringarkimin e parametrave të server-it dhe risetimin e cache të " -"servërve." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"I jep të drejtën një përdoruesi të pyesë se ku gjenden slaves / masters." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Nevoitet për replikimin e slaves." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Lejon leximin e të dhënave." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Mundëson hyrjen tek lista komplete e databazave." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Lejon përfundimin e serverit." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Lejon lidhje të tjera, edhe po të jetë arritur numri maksimal i lidhjeve; I " -"nevojshëm për shumë operacione administrimi si përcaktimi i të " -"ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Lejon krijimin dhe eleminimin e treguesve." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Lejon ndryshimin e të dhënave." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Asnjë të drejtë." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Asnjë lloj" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Të drejta relative me tabelat" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Shënim: emrat e të drejtave të MySQL janë në Anglisht" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administrimi" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Të drejtat e përgjithshme" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Të drejta specifike të databazës" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Limitet e rezervave" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Shënim: Vendosja e këtyre opcioneve në 0 (zero) do të thotë asnjë limit." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Informacione mbi Identifikimin" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Mos ndrysho fjalëkalim" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Nuk u gjet asnjë përdorues." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Përdoruesi %s ekziston!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Ke shtuar një përdorues të ri." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Ke rifreskuar lejet për %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Ke anulluar të drejtat për %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Fjalëkalimi për përdoruesin %s u ndryshua me sukses." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Në fshirje e sipër të %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Duke ringarkuar të drejtat" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Përdoruesit e zgjedhur u hoqën me sukses." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Të drejtat u përditësuan me sukses." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Ndrysho të drejtat" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Hiq" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Eksporto" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Çfarëdo" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Të drejtat" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Të drejtat" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Paraqitja e përgjithshme e përdoruesve" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Heq përdoruesit e zgjedhur" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Hiqja të gjitha të drejtat aktive përdoruesve dhe pastaj eleminoi." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e " -"privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të " -"drejtave të përdorura nga serveri nëse janë kryer ndryshime manuale. Në këtë " -"rast, duhet të %srifreskoni të drejtat%s para se të vazhdoni." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Të drejtat relative të kollonave" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Shto të drejta tek databaza në vazhdim" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Shto të drejta tek tabela në vazhdim" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Krijo një përdorues të ri me të njëjta të drejta dhe ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... mbaj të vjetrin." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... elemino të vjetrin nga tabela e përdoruesve." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... hiq të gjitha të drejtat nga i vjetri e pastaj eleminoje." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Kontrollo të drejtat për databazën "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Përdoruesit që kanë hyrje tek "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globale" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "specifik i databazës" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "wildcard" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Paraqitja %s u eleminua" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11937,41 +11985,41 @@ msgstr "" msgid "Wrong data" msgstr "Asnjë databazë" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Konfermo: " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Vleftëso SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "Rezultati SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Gjeneruar nga" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etiketë" diff --git a/po/sr.po b/po/sr.po index ab91ad0ba3..e6640a9b62 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: serbian_cyrillic \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Прикажи све" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Претраживање" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Претраживање" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Крени" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База %1$s је креирана." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Коментар базе: " @@ -119,17 +122,17 @@ msgstr "Коментар базе: " msgid "Table comments" msgstr "Коментари табеле" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "Колона" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Тип" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "Null" msgid "Default" msgstr "Подразумевано" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "Везе ка" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "Коментари" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Не" @@ -241,19 +247,22 @@ msgstr "Не" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Да" @@ -261,8 +270,8 @@ msgstr "Да" msgid "View dump (schema) of database" msgstr "Прикажи садржај (схему) базе" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Табеле нису пронађене у бази." @@ -278,76 +287,76 @@ msgstr "ништа" msgid "The database name is empty!" msgstr "Име базе није задато!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "База %s је преименована у %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "База %s је прекопирана у %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Преименуј базу у" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Уклони базу" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "База %s је одбачена." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Одбаци базу (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Копирај базу у" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Структура и подаци" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Само подаци" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пре копирања" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Додај %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Додај ограничења" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Пребаци се на копирану базу" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "Пребаци се на копирану базу" msgid "Collation" msgstr "Сортирање" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -369,7 +378,7 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Уреди или извези релациону схему" @@ -379,16 +388,18 @@ msgstr "Уреди или извези релациону схему" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Табела" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Редова" @@ -398,13 +409,13 @@ msgid "Size" msgstr "Величина" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "се користи" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -412,7 +423,7 @@ msgstr "Направљено" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -420,7 +431,7 @@ msgstr "Последња измена" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -435,97 +446,16 @@ msgstr[0] "%s табела" msgstr[1] "%s табела" msgstr[2] "%s табела" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Морате изабрати бар једну колону за приказ" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Растући" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Опадајући" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Сортирање" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Прикажи" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Критеријум" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Додај/обриши поље за критеријум" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Додај/обриши колону" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Ажурирај упит" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Користи табеле" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "или" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "и" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Промени" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Пређи на копирану табелу" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL упит на бази %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Изврши SQL упит" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -568,7 +498,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -596,20 +526,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s је подразумевани погон складиштења на овом MySQL серверу." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Означено:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Означи све" @@ -617,31 +548,32 @@ msgstr "Означи све" msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "За штампу" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Испразни" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -691,17 +623,18 @@ msgstr "Провери табелу" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "База података" @@ -721,18 +654,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Статус" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Акција" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Прикажи" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -780,22 +721,22 @@ msgstr "База података" msgid "Bad type!" msgstr "Врста упита" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Одабрани тип извоза мора бити сачуван у датотеку!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Додај ново поље" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недовољно простора за снимање датотеке %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -803,12 +744,12 @@ msgstr "" "Датотека %s већ постоји на серверу, промените име датотеке или укључите " "опцију преписивања." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб серверу није дозвољено да сачува датотеку %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Садржај базе је сачуван у датотеку %s." @@ -832,7 +773,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -914,7 +855,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -923,20 +864,20 @@ msgstr "" "Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " "%sдокументацију%s за начине превазилажења овог ограничења." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Приказивање маркера" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Обележивач је управо обрисан." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Датотеку није могуће прочитати" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -946,7 +887,7 @@ msgstr "" "Покушали сте да увезете датотеку са компресијом која није подржана (%s). Или " "подршка за њу није имплементирана, или је искључена у вашој конфигурацији." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -956,26 +897,26 @@ msgstr "" "или величина датотеке превазилази максималну величину дозвољену у вашој " "конфигурацији PHP-а. Погледајте. See FAQ 1.16." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Направљен маркер %s" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Увоз је успешно завршен, извршено је %d упита." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -983,7 +924,7 @@ msgstr "" "Време извршења скрипта је истекло, ако желите да довршите увоз, молимо " "пошаљите исту датотеку и увоз ће се наставити." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -992,8 +933,8 @@ msgstr "" "да phpMyAdmin неће бити у могућности да заврши овај увоз осим ако не " "повећате временска ограничења у PHP-у" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -1008,7 +949,7 @@ msgstr "Назад" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin преферира читаче који подржавају оквире." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" команда је онемогућена." @@ -1018,7 +959,7 @@ msgstr "\"DROP DATABASE\" команда је онемогућена." msgid "Do you really want to execute \"%s\"?" msgstr "Да ли стварно хоћете да " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Овим ћете УНИШТИТИ комплетну базу података!" @@ -1089,16 +1030,20 @@ msgstr "Име домаћина је празно!" msgid "The user name is empty!" msgstr "Име корисника није унето!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Лозинка је празна!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1124,9 +1069,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1402,12 +1347,13 @@ msgstr "Држи се мреже" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "нема" @@ -1594,10 +1540,10 @@ msgid "Explain output" msgstr "Објасни SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Време" @@ -1948,7 +1894,7 @@ msgstr "SQL упит" msgid "No rows selected" msgstr "Нема одабраних редова" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Промени" @@ -1957,8 +1903,8 @@ msgstr "Промени" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d није исправан број реда." @@ -2039,7 +1985,7 @@ msgstr "Величина показивача података" msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Копирај" @@ -2584,14 +2530,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Грешка" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL упит" @@ -2602,7 +2548,7 @@ msgstr "SQL упит" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2631,6 +2577,10 @@ msgstr "без PHP кода" msgid "Create PHP Code" msgstr "Направи PHP код" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Изврши SQL упит" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2657,7 +2607,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Складиштења" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Профилисање" @@ -2686,7 +2636,7 @@ msgstr "Рутине" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2695,7 +2645,7 @@ msgstr "Почетак" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2705,7 +2655,7 @@ msgstr "Претходна" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2715,7 +2665,7 @@ msgstr "Следећи" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2738,16 +2688,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" @@ -2755,21 +2706,20 @@ msgstr "Структура" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Нови запис" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Преглед" @@ -2791,21 +2741,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Штампај" @@ -2822,6 +2772,78 @@ msgstr "" msgid "Font size" msgstr "Величина фонта" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Растући" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Опадајући" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Сортирање" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Критеријум" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Додај/обриши поље за критеријум" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Додај/обриши колону" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Ажурирај упит" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Користи табеле" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "или" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "и" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Промени" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL упит на бази %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "бар једну од речи" @@ -2867,8 +2889,8 @@ msgstr[2] "%s погодака унутар табеле %s" msgid "Delete the matches for the %s table?" msgstr "Приказ података табеле" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2909,72 +2931,72 @@ msgstr "Унутар табела:" msgid "Inside column:" msgstr "Унутар табела:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy msgid "Save edited data" msgstr "Основни директоријум података" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Додај/обриши колону" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy msgid "Start row" msgstr "Статус" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Број поља" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Пон" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "хоризонталном" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "хоризонталном (ротирана заглавља)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "вертикалном" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Сортирај по кључу" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2987,115 +3009,115 @@ msgstr "Сортирај по кључу" msgid "Options" msgstr "Опције" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Део текста" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Пун текст" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Релациона схема" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Релациона схема" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Транформације читача" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Ред је обрисан" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Обустави" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Може бити приближно. Видите FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "у упиту" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Приказ записа" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "укупно" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Поглед за штампу (са пуним текстом)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF схему" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Веза није пронађена" @@ -3220,8 +3242,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Базе" @@ -3237,11 +3259,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Окидачи" @@ -3259,9 +3281,9 @@ msgstr "База је изгледа празна!" msgid "Query" msgstr "Упит по примеру" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Привилегије" @@ -3270,7 +3292,7 @@ msgid "Routines" msgstr "Рутине" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" @@ -3377,54 +3399,54 @@ msgstr "%s је онемогућен на овом MySQL серверу." msgid "This MySQL server does not support the %s storage engine." msgstr "Овај MySQL сервер не подржава %s погон складиштења." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Прикажи статус подређених сервера" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Претраживање базе" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Није пронађена тема %s!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Неисправна база података" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Неисправан назив табеле" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Грешка при преименовању табеле %1$s у %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Табели %s промењено име у %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3433,7 +3455,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функција" @@ -3445,7 +3467,7 @@ msgstr "Оператор" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3490,7 +3512,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Прегледај стране вредности" @@ -3852,7 +3874,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Табеле" @@ -3863,9 +3885,10 @@ msgstr "Табеле" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Подаци" @@ -3994,33 +4017,33 @@ msgid "Disabled" msgstr "Онемогућено" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Структура" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4445,13 +4468,13 @@ msgstr "Компресија" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4480,7 +4503,6 @@ msgstr "Ескејп карактер      " #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Замени NULL са" @@ -4527,25 +4549,24 @@ msgstr "Шаблон имена датотеке" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s табела" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Укључи коментар табеле" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Коментар табеле" @@ -4554,14 +4575,14 @@ msgid "Continued table caption" msgstr "Настављен коментар табеле" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Ознака кључа" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-типови" @@ -4603,7 +4624,7 @@ msgid "SQL compatibility mode" msgstr "Мод SQL компатибилности" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4616,7 +4637,7 @@ msgid "Use delayed inserts" msgstr "Користи одложена уметања" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Искључи провере страних кључева" @@ -4633,7 +4654,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Максимална дужина направљеног упита" @@ -4643,7 +4664,7 @@ msgid "Export type" msgstr "Тип извоза" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Обави извоз у трансакцији" @@ -4698,7 +4719,6 @@ msgstr "Опције за извоз базе" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4762,7 +4782,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -5004,7 +5023,6 @@ msgid "Customize text input fields" msgstr "Опције за извоз базе" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6138,9 +6156,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Лозинка" @@ -6307,7 +6327,6 @@ msgstr "CSV користећи LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" @@ -6329,19 +6348,16 @@ msgstr "Опције за извоз базе" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Text" @@ -6397,7 +6413,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6405,21 +6421,21 @@ msgid "" "configured)." msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер не одговара" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6432,13 +6448,15 @@ msgid "Change password" msgstr "Промени лозинку" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Нема лозинке" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Поновите унос" @@ -6463,8 +6481,9 @@ msgstr "Направи нову базу података" msgid "Create" msgstr "Направи" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Нема привилегија" @@ -6474,12 +6493,12 @@ msgid "Create table" msgstr "Направи табелу" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Име" @@ -6653,7 +6672,7 @@ msgid "View output as text" msgstr "Сачувај као датотеку" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7151,51 +7170,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7270,11 +7289,11 @@ msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7528,7 +7547,7 @@ msgstr "phpMyAdmin документација" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7643,83 +7662,83 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Линије се завршавају са" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Поља ограничена са" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Ескејп карактер      " -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Линије се завршавају са" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Замени NULL са" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel издање" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Опције за извоз базе" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Приказ података табеле" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Догађаји" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7727,24 +7746,24 @@ msgstr "Догађаји" msgid "Definition" msgstr "Опис" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Структура табеле" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Структура за поглед (view)" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Структура која замењује поглед" @@ -7764,262 +7783,253 @@ msgstr "(настављено)" msgid "Structure of table @TABLE@" msgstr "Структура табеле __TABLE__" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Опције трансформације" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Коментар табеле" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Искључи провере страних кључева" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Приказујем коментаре колоне" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Доступни MIME-типови" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Домаћин" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Време креирања" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Верзија сервера" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "верзија PHP-a" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy msgid "Export table names" msgstr "Тип извоза" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "хоризонталном (ротирана заглавља)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Прави извештај који садржи податке једне табеле)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Наслов извештаја" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Додај коментар у заглавље (\\n раздваја линије)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Име" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Име" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Опције трансформације" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Процедуре" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Функције" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Ограничења за табеле" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛУ" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИЈЕ ТАБЕЛЕ" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Дозвољава читање података." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Поглед" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 #, fuzzy msgid "Export contents" msgstr "Тип извоза" @@ -8090,6 +8100,10 @@ msgstr "Имена колона" msgid "This plugin does not support compressed imports!" msgstr "Овај додатак не подржава компресоване увозе!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -8146,6 +8160,10 @@ msgstr "Мод SQL компатибилности" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8406,11 +8424,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "нема описа" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "ниједно" @@ -8430,9 +8449,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Име корисника" @@ -8470,34 +8490,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Било који корисник" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Користи текст поље" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Било који домаћин" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Локални" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Овај сервер" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Користи табелу домаћина" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8511,7 +8540,7 @@ msgstr "Направи лозинку" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8550,8 +8579,8 @@ msgid "Edit event" msgstr "Догађаји" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8637,7 +8666,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8785,7 +8815,13 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Дозвољава извршавање сачуваних рутина." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8793,19 +8829,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Дозвољава извршавање сачуваних рутина." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8966,29 +8996,29 @@ msgstr "Табеле нису пронађене у бази." msgid "There are no events to display." msgstr "Провери табелу" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Табела \"%s\" не постоји!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Подесите координате за табелу %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9138,6 +9168,459 @@ msgstr "Непознат језик: %1$s." msgid "Current Server" msgstr "Сервер" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Нема привилегија." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Укључује све привилегије осим GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Дозвољава читање података." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Дозвољава уметање и замену података." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Дозвољава измену података." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Дозвољава брисање података." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Дозвољава креирање нових база и табела." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Дозвољава одбацивање база и табела." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Дозвољава гашење сервера." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Дозвољава увоз података и њихов извоз у датотеке." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Нема ефекта у овој верзији MySQL-a." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Дозвољава креирање и брисање кључева." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Дозвољава измену структура постојећих табела." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Даје приступ комплетној листи база." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +" Дозвољава повезивање иако је достигнут максималан број дозвољених веза; " +"Неопходно за већину административних опција као што су подешавање глобалних " +"променљивих или прекидање процеса осталих корисника." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Дозвољава креирање привремених табела.." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Дозвољава закључавање табела текућим процесима." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Потребно због помоћних сервера за репликацију." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Даје право кориснику да пита где су главни/помоћни сервери." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Дозволи креирање нових погледа." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Дозвољава креирање и брисање кључева." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Дозвољава извршавање SHOW CREATE VIEW упита." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Дозвољава прављење сачуваних рутина." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Дозвољава измену и одбацивање сачуваних рутина." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Дозвољава извршавање сачуваних рутина." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "нема" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ограничења ресурса" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Ограничава број упита које корисник може да упути серверу за сат." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Ограничава број команди које мењају табеле или базе које корисник може да " +"изврши на сат." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Ограничава број нових конекција које корисник може та отвори на сат." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Ограничава број истовремених конекција које корисник може да има." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Привилегије везане за табеле" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Напомена: MySQL имена привилегија морају да буду на енглеском" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Администрација" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Глобалне привилегије" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Привилегије везане за базу" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Дозвољава креирање нових табела." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Дозвољава одбацивање табела." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Дозвољава додавање корисника и привилегија без поновног учитавања табела " +"привилегија." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Подаци о пријави" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Немој да мењаш лозинку" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Лозинка за %s је успешно промењена." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Забранили сте привилегије за %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "База за корисника" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Направи базу са истим именом и додај све привилегије" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Провери привилегије за базу "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Корисници који имају приступ "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Корисник" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Омогући" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Поглед %s је одбачен" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Било који" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "глобално" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Специфично за базу" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "џокер" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Корисник није нађен." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Промени привилегије" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Забрани" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Извоз" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... сачувај старе." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... обриши старе из табела корисника." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... обустави све привилегије старог корисника и затим га обриши." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... обриши старог из табеле корисника и затим поново учитај привилегије." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Промени информације о пријави / Копирај корисника" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Направи новог корисника са истим привилегијама и ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Привилегије везане за колоне" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Додај привилегије на следећој бази" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Додај привилегије на следећој табели" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Уклони изабране кориснике" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Обустави све активне привилегије корисника и затим их обриши." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Одбаци базе које се зову исто као корисници." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Ниједан корисник није одабран за брисање!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Поново учитавам привилегије" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Изабрани корисници су успешно обрисани." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Ажурирали сте привилегије за %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Привилегије" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Привилегије" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Преглед корисника" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела " +"привилегија. Садржај ове табеле може се разликовати од привилегија које " +"сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " +"привилегије%s пре него што наставите." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Изабрани корисник није пронађен у табели привилегија." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Додали сте новог корисника." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9189,11 +9672,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имена колона" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" @@ -9498,12 +9981,6 @@ msgstr "Верзија сервера" msgid "Protocol version" msgstr "Верзија протокола" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Корисник" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -10061,449 +10538,20 @@ msgstr "" msgid "disabled" msgstr "Онемогућено" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Укључује све привилегије осим GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Дозвољава измену структура постојећих табела." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Дозвољава измену и одбацивање сачуваних рутина." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Дозвољава креирање нових база и табела." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Дозвољава прављење сачуваних рутина." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Дозвољава креирање нових табела." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Дозвољава креирање привремених табела.." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Дозволи креирање нових погледа." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Дозвољава брисање података." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Дозвољава одбацивање база и табела." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Дозвољава одбацивање табела." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Дозвољава извршавање сачуваних рутина." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Дозвољава увоз података и њихов извоз у датотеке." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Дозвољава додавање корисника и привилегија без поновног учитавања табела " -"привилегија." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Дозвољава креирање и брисање кључева." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Дозвољава уметање и замену података." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Дозвољава закључавање табела текућим процесима." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Ограничава број нових конекција које корисник може та отвори на сат." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Ограничава број упита које корисник може да упути серверу за сат." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Ограничава број команди које мењају табеле или базе које корисник може да " -"изврши на сат." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Ограничава број истовремених конекција које корисник може да има." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Нема ефекта у овој верзији MySQL-a." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Даје право кориснику да пита где су главни/помоћни сервери." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Потребно због помоћних сервера за репликацију." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Дозвољава читање података." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Даје приступ комплетној листи база." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Дозвољава извршавање SHOW CREATE VIEW упита." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Дозвољава гашење сервера." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -" Дозвољава повезивање иако је достигнут максималан број дозвољених веза; " -"Неопходно за већину административних опција као што су подешавање глобалних " -"променљивих или прекидање процеса осталих корисника." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Дозвољава креирање и брисање кључева." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Дозвољава измену података." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Нема привилегија." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "нема" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Привилегије везане за табеле" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Напомена: MySQL имена привилегија морају да буду на енглеском" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Администрација" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Глобалне привилегије" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Привилегије везане за базу" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ограничења ресурса" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Подаци о пријави" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Немој да мењаш лозинку" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Корисник није нађен." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s већ постоји!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Додали сте новог корисника." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Ажурирали сте привилегије за %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Забранили сте привилегије за %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Лозинка за %s је успешно промењена." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Бришем %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Ниједан корисник није одабран за брисање!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Поново учитавам привилегије" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Изабрани корисници су успешно обрисани." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Промени привилегије" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Забрани" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Извоз" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Било који" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Привилегије" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Привилегије" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Преглед корисника" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Омогући" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Уклони изабране кориснике" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Обустави све активне привилегије корисника и затим их обриши." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Одбаци базе које се зову исто као корисници." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела " -"привилегија. Садржај ове табеле може се разликовати од привилегија које " -"сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " -"привилегије%s пре него што наставите." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Изабрани корисник није пронађен у табели привилегија." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Привилегије везане за колоне" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Додај привилегије на следећој бази" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Додај привилегије на следећој табели" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Промени информације о пријави / Копирај корисника" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Направи новог корисника са истим привилегијама и ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... сачувај старе." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... обриши старе из табела корисника." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... обустави све привилегије старог корисника и затим га обриши." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... обриши старог из табеле корисника и затим поново учитај привилегије." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "База за корисника" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Направи базу са истим именом и додај све привилегије" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Провери привилегије за базу "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Корисници који имају приступ "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "глобално" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Специфично за базу" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "џокер" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Поглед %s је одбачен" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -12225,41 +12273,41 @@ msgstr "" msgid "Wrong data" msgstr "База не постоји" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Да ли стварно хоћете да " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Приказ као PHP код" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL резултат" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Генерисао" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Назив" @@ -14112,6 +14160,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "макс. истовремених веза" +#~ msgid "PDF" +#~ msgstr "PDF" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/sr@latin.po b/po/sr@latin.po index aad8e24748..8b0eb0d87a 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: serbian_latin \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Prikaži sve" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Pretraživanje" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Kreni" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Komentar baze: " @@ -119,17 +122,17 @@ msgstr "Komentar baze: " msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "Kolona" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tip" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "Null" msgid "Default" msgstr "Podrazumevano" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "Veze ka" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "Komentari" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ne" @@ -241,19 +247,22 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Da" @@ -261,8 +270,8 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." @@ -278,76 +287,76 @@ msgstr "ništa" msgid "The database name is empty!" msgstr "Ime baze nije zadato!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Baza %s je preimenovana u %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Baza %s je prekopirana u %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Preimenuj bazu u" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Ukloni bazu" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Ukloni bazu i njen sadržaj" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopiraj bazu u" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktura i podaci" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pre kopiranja" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Dodaj ograničenja" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -357,7 +366,7 @@ msgstr "Prebaci se na kopiranu bazu" msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -369,7 +378,7 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Uredi ili izvezi relacionu shemu" @@ -379,16 +388,18 @@ msgstr "Uredi ili izvezi relacionu shemu" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Redova" @@ -398,13 +409,13 @@ msgid "Size" msgstr "Veličina" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "se koristi" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -412,7 +423,7 @@ msgstr "Napravljeno" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -420,7 +431,7 @@ msgstr "Poslednja izmena" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -434,93 +445,16 @@ msgstr[0] "%s tabela" msgstr[1] "%s tabele" msgstr[2] "%s tabela" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Rastući" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Opadajući" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sortiranje" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Prikaži" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriterijum" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Dodaj/obriši kriterijum za polja" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Dodaj/obriši kolone" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Ažuriraj upit" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Koristi tabele" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "ili" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "i" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Promeni" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "vizuelni kreator" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL upit na bazi %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Izvrši SQL upit" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -563,7 +497,7 @@ msgstr "Praćenje je aktivno." msgid "Tracking is not active." msgstr "Praćenje nije aktivno." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -591,20 +525,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Označeno:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Označi sve" @@ -612,31 +547,32 @@ msgstr "Označi sve" msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Isprazni" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -686,17 +622,18 @@ msgstr "Proveri tabelu" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Baza podataka" @@ -716,18 +653,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Akcija" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Prikaži" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -775,22 +720,22 @@ msgstr "Baza podataka" msgid "Bad type!" msgstr "Vrsta upita" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Odabrani tip izvoza mora biti sačuvan u datoteku!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Routines" msgid "Bad parameters!" msgstr "Rutine" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -798,12 +743,12 @@ msgstr "" "Datoteka %s već postoji na serveru, promenite ime datoteke ili uključite " "opciju prepisivanja." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u datoteku %s." @@ -827,7 +772,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -909,7 +854,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -918,20 +863,20 @@ msgstr "" "Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " "%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Prikazivanje markera" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Obeleživač je upravo obrisan." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -941,7 +886,7 @@ msgstr "" "Pokušali ste da uvezete datoteku sa kompresijom koja nije podržana (%s). Ili " "podrška za nju nije implementirana, ili je isključena u vašoj konfiguraciji." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -951,26 +896,26 @@ msgstr "" "ili veličina datoteke prevazilazi maksimalnu veličinu dozvoljenu u vašoj " "konfiguraciji PHP-a. Pogledajte. See FAQ 1.16." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Napravljen marker %s" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvoz je uspešno završen, izvršeno je %d upita." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -978,7 +923,7 @@ msgstr "" "Vreme izvršenja skripta je isteklo, ako želite da dovršite uvoz, molimo " "pošaljite istu datoteku i uvoz će se nastaviti." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -987,8 +932,8 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti da završi ovaj uvoz osim ako ne " "povećate vremenska ograničenja u PHP-u" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -1003,7 +948,7 @@ msgstr "Nazad" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -1013,7 +958,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena." msgid "Do you really want to execute \"%s\"?" msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!" @@ -1084,16 +1029,20 @@ msgstr "Ime domaćina je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije uneto!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1119,9 +1068,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1398,12 +1347,13 @@ msgstr "Drži se mreže" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "nema" @@ -1590,10 +1540,10 @@ msgid "Explain output" msgstr "Objasni SQL" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Vreme" @@ -1944,7 +1894,7 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Promeni" @@ -1953,8 +1903,8 @@ msgstr "Promeni" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d nije ispravan broj reda." @@ -2035,7 +1985,7 @@ msgstr "Veličina pokazivača podataka" msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2580,14 +2530,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Greška" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL upit" @@ -2598,7 +2548,7 @@ msgstr "SQL upit" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2627,6 +2577,10 @@ msgstr "bez PHP koda" msgid "Create PHP Code" msgstr "Napravi PHP kod" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Izvrši SQL upit" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2653,7 +2607,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Skladištenja" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profilisanje" @@ -2682,7 +2636,7 @@ msgstr "Rutine" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2691,7 +2645,7 @@ msgstr "Početak" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2701,7 +2655,7 @@ msgstr "Prethodna" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2711,7 +2665,7 @@ msgstr "Sledeći" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2734,16 +2688,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" @@ -2751,21 +2706,20 @@ msgstr "Struktura" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Novi zapis" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Pregled" @@ -2787,21 +2741,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "direktorijum za slanje veb servera " -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Štampaj" @@ -2818,6 +2772,74 @@ msgstr "" msgid "Font size" msgstr "Veličina fonta" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Rastući" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Opadajući" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sortiranje" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriterijum" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Dodaj/obriši kriterijum za polja" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Dodaj/obriši kolone" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Ažuriraj upit" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Koristi tabele" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "ili" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "i" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Promeni" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL upit na bazi %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "bar jednu od reči" @@ -2862,8 +2884,8 @@ msgstr[2] "%s pogodaka unutar tabele %s" msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2902,74 +2924,74 @@ msgstr "Unutar tabela:" msgid "Inside column:" msgstr "Unutar kolone::" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy msgid "Save edited data" msgstr "Osnovni direktorijum podataka" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Dodaj/obriši kolonu" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Sub" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Broj polja" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Pon" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horizontalnom" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikalnom" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Izvrši upamćen upit" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sortiraj po ključu" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2982,115 +3004,115 @@ msgstr "Sortiraj po ključu" msgid "Options" msgstr "Opcije" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Deo teksta" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Pun tekst" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Relaciona shema" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relaciona shema" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Tranformacije čitača" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Obustavi" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Može biti približno. Vidite FAQ 3.11" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "u upitu" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Pogled za štampu (sa punim tekstom)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Napravi relaciju" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Veza nije pronađena" @@ -3215,8 +3237,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Baze" @@ -3232,11 +3254,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Okidači" @@ -3254,9 +3276,9 @@ msgstr "Baza je izgleda prazna!" msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegije" @@ -3265,7 +3287,7 @@ msgid "Routines" msgstr "Rutine" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" @@ -3372,54 +3394,54 @@ msgstr "%s je onemogućen na ovom MySQL serveru." msgid "This MySQL server does not support the %s storage engine." msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Prikaži status podređenih servera" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Nije pronađena tema %s!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Neispravna baza podataka" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Neispravan naziv tabele" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Greška pri preimenovanju tabele %1$s u %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabeli %s promenjeno ime u %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3428,7 +3450,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3440,7 +3462,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3485,7 +3507,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" @@ -3847,7 +3869,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabele" @@ -3858,9 +3880,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Podaci" @@ -3989,33 +4012,33 @@ msgid "Disabled" msgstr "Onemogućeno" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Struktura" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4441,13 +4464,13 @@ msgstr "Kompresija" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4476,7 +4499,6 @@ msgstr "Escape karakter      " #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Zameni NULL sa" @@ -4523,25 +4545,24 @@ msgstr "Šablon imena datoteke" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s tabela" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Uključi komentar tabele" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Komentar tabele" @@ -4550,14 +4571,14 @@ msgid "Continued table caption" msgstr "Nastavljen komentar tabele" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Oznaka ključa" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-tipovi" @@ -4599,7 +4620,7 @@ msgid "SQL compatibility mode" msgstr "Mod SQL kompatibilnosti" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4612,7 +4633,7 @@ msgid "Use delayed inserts" msgstr "Koristi odložena umetanja" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Isključi provere stranih ključeva" @@ -4629,7 +4650,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maksimalna dužina napravljenog upita" @@ -4639,7 +4660,7 @@ msgid "Export type" msgstr "Tip izvoza" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Obavi izvoz u transakciji" @@ -4694,7 +4715,6 @@ msgstr "Opcije za izvoz baze" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4758,7 +4778,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4998,7 +5017,6 @@ msgid "Customize text input fields" msgstr "Opcije za izvoz baze" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6132,9 +6150,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Lozinka" @@ -6301,7 +6321,6 @@ msgstr "CSV koristeći LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" @@ -6323,19 +6342,16 @@ msgstr "Opcije za izvoz baze" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Open Document Text" @@ -6391,7 +6407,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6399,21 +6415,21 @@ msgid "" "configured)." msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server ne odgovara" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6426,13 +6442,15 @@ msgid "Change password" msgstr "Promeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Ponovite unos" @@ -6457,8 +6475,9 @@ msgstr "Napravi novu bazu podataka" msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Nema privilegija" @@ -6468,12 +6487,12 @@ msgid "Create table" msgstr "Napravi tabelu" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Ime" @@ -6647,7 +6666,7 @@ msgid "View output as text" msgstr "Sačuvaj kao datoteku" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7145,51 +7164,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo struktura" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7264,11 +7283,11 @@ msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7520,7 +7539,7 @@ msgstr "phpMyAdmin dokumentacija" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7635,83 +7654,83 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Linije se završavaju sa" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Polja ograničena sa" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Escape karakter      " -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Linije se završavaju sa" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Zameni NULL sa" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel izdanje" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Opcije za izvoz baze" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Događaji" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7719,24 +7738,24 @@ msgstr "Događaji" msgid "Definition" msgstr "Opis" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Struktura tabele" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktura za pogled (view)" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Struktura koja zamenjuje pogled" @@ -7752,262 +7771,253 @@ msgstr "(nastavljeno)" msgid "Structure of table @TABLE@" msgstr "Struktura tabele @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Opcije transformacije" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Komentar tabele" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Isključi provere stranih ključeva" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Prikazujem komentare kolone" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Dostupni MIME-tipovi" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Domaćin" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Vreme kreiranja" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Verzija servera" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "verzija PHP-a" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy msgid "Export table names" msgstr "Tip izvoza" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Pravi izveštaj koji sadrži podatke jedne tabele)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Naslov izveštaja" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Dodaj komentar u zaglavlje (\\n razdvaja linije)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Ime" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Ime" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Opcije transformacije" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedure" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funkcije" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Ograničenja za tabele" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPOVI ZA TABELU" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABELE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Dozvoljava čitanje podataka." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Pogled" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 #, fuzzy msgid "Export contents" msgstr "Tip izvoza" @@ -8078,6 +8088,10 @@ msgstr "Imena kolona" msgid "This plugin does not support compressed imports!" msgstr "Ovaj dodatak ne podržava kompresovane uvoze!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -8134,6 +8148,10 @@ msgstr "Mod SQL kompatibilnosti" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8395,11 +8413,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "nema opisa" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "nijedno" @@ -8419,9 +8438,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Ime korisnika" @@ -8459,34 +8479,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Bilo koji domaćin" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Koristi tabelu domaćina" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8500,7 +8529,7 @@ msgstr "Napravi lozinku" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8539,8 +8568,8 @@ msgid "Edit event" msgstr "Događaji" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8628,7 +8657,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8774,7 +8804,13 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, fuzzy, php-format +#| msgid "Allows executing stored routines." +msgid "Execution results of routine %s" +msgstr "Dozvoljava izvršavanje sačuvanih rutina." + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8782,19 +8818,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." -msgid "Execution results of routine %s" -msgstr "Dozvoljava izvršavanje sačuvanih rutina." - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8955,29 +8985,29 @@ msgstr "Tabele nisu pronađene u bazi." msgid "There are no events to display." msgstr "Proveri tabelu" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabela \"%s\" ne postoji!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Podesite koordinate za tabelu %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9127,6 +9157,459 @@ msgstr "Nepoznat jezik: %1$s." msgid "Current Server" msgstr "Server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Nema privilegija." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Uključuje sve privilegije osim GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Dozvoljava čitanje podataka." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Dozvoljava umetanje i zamenu podataka." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Dozvoljava izmenu podataka." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Dozvoljava brisanje podataka." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Dozvoljava kreiranje novih baza i tabela." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Dozvoljava odbacivanje baza i tabela." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Dozvoljava gašenje servera." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Nema efekta u ovoj verziji MySQL-a." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Dozvoljava kreiranje i brisanje ključeva." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Dozvoljava izmenu struktura postojećih tabela." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Daje pristup kompletnoj listi baza." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +" Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; " +"Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " +"promenljivih ili prekidanje procesa ostalih korisnika." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Dozvoljava kreiranje privremenih tabela.." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Dozvoljava zaključavanje tabela tekućim procesima." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Potrebno zbog pomoćnih servera za replikaciju." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Dozvoli kreiranje novih pogleda." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Dozvoljava kreiranje i brisanje ključeva." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Dozvoljava pravljenje sačuvanih rutina." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Dozvoljava izvršavanje sačuvanih rutina." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "nema" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ograničenja resursa" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " +"izvrši na sat." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Privilegije vezane za tabele" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administracija" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globalne privilegije" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Privilegije vezane za bazu" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Dozvoljava kreiranje novih tabela." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Dozvoljava odbacivanje tabela." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " +"privilegija." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Podaci o prijavi" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Nemoj da menjaš lozinku" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Lozinka za %s je uspešno promenjena." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Zabranili ste privilegije za %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Baza za korisnika" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Proveri privilegije za bazu "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Korisnici koji imaju pristup "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Korisnik" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Omogući" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "Pogled %s je odbačen" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Bilo koji" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "globalno" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Specifično za bazu" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "džoker" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Korisnik nije nađen." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Promeni privilegije" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Zabrani" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Izvoz" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... sačuvaj stare." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... obriši stare iz tabela korisnika." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... obustavi sve privilegije starog korisnika i zatim ga obriši." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Promeni informacije o prijavi / Kopiraj korisnika" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Napravi novog korisnika sa istim privilegijama i ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Privilegije vezane za kolone" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Dodaj privilegije na sledećoj bazi" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "Pre džokera _ i % treba staviti znak \\ ako ih koristite samostalno" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Dodaj privilegije na sledećoj tabeli" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Ukloni izabrane korisnike" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Odbaci baze koje se zovu isto kao korisnici." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Nijedan korisnik nije odabran za brisanje!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Ponovo učitavam privilegije" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Izabrani korisnici su uspešno obrisani." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Ažurirali ste privilegije za %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privilegije" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privilegije" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Pregled korisnika" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " +"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " +"server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " +"privilegije%s pre nego što nastavite." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Dodali ste novog korisnika." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9178,11 +9661,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" @@ -9488,12 +9971,6 @@ msgstr "Verzija servera" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Korisnik" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -10052,449 +10529,20 @@ msgstr "" msgid "disabled" msgstr "Onemogućeno" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Uključuje sve privilegije osim GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Dozvoljava izmenu struktura postojećih tabela." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Dozvoljava kreiranje novih baza i tabela." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Dozvoljava pravljenje sačuvanih rutina." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Dozvoljava kreiranje novih tabela." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Dozvoljava kreiranje privremenih tabela.." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Dozvoli kreiranje novih pogleda." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Dozvoljava brisanje podataka." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Dozvoljava odbacivanje baza i tabela." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Dozvoljava odbacivanje tabela." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Dozvoljava izvršavanje sačuvanih rutina." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " -"privilegija." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Dozvoljava kreiranje i brisanje ključeva." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Dozvoljava umetanje i zamenu podataka." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Dozvoljava zaključavanje tabela tekućim procesima." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " -"izvrši na sat." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Nema efekta u ovoj verziji MySQL-a." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Potrebno zbog pomoćnih servera za replikaciju." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Dozvoljava čitanje podataka." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Daje pristup kompletnoj listi baza." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Dozvoljava gašenje servera." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -" Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; " -"Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " -"promenljivih ili prekidanje procesa ostalih korisnika." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Dozvoljava kreiranje i brisanje ključeva." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Dozvoljava izmenu podataka." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Nema privilegija." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "nema" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Privilegije vezane za tabele" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administracija" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globalne privilegije" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Privilegije vezane za bazu" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ograničenja resursa" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Podaci o prijavi" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Nemoj da menjaš lozinku" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Korisnik nije nađen." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Dodali ste novog korisnika." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Ažurirali ste privilegije za %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Zabranili ste privilegije za %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Lozinka za %s je uspešno promenjena." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Nijedan korisnik nije odabran za brisanje!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Ponovo učitavam privilegije" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Izabrani korisnici su uspešno obrisani." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Promeni privilegije" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Zabrani" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Izvoz" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Bilo koji" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilegije" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilegije" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Pregled korisnika" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Omogući" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Ukloni izabrane korisnike" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Odbaci baze koje se zovu isto kao korisnici." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " -"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " -"server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " -"privilegije%s pre nego što nastavite." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Privilegije vezane za kolone" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Dodaj privilegije na sledećoj bazi" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "Pre džokera _ i % treba staviti znak \\ ako ih koristite samostalno" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Dodaj privilegije na sledećoj tabeli" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Promeni informacije o prijavi / Kopiraj korisnika" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Napravi novog korisnika sa istim privilegijama i ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... sačuvaj stare." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... obriši stare iz tabela korisnika." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... obustavi sve privilegije starog korisnika i zatim ga obriši." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Baza za korisnika" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Proveri privilegije za bazu "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Korisnici koji imaju pristup "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "globalno" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Specifično za bazu" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "džoker" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "Pogled %s je odbačen" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -12219,41 +12267,41 @@ msgstr "" msgid "Wrong data" msgstr "Baza ne postoji" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Da li stvarno hoćete da " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Prikaz kao PHP kod" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Proveri SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL rezultat" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Generisao" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Naziv" @@ -14105,6 +14153,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maks. istovremenih veza" +#~ msgid "PDF" +#~ msgstr "PDF" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/sv.po b/po/sv.po index 8033aa6b54..8ba351c3aa 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" -"PO-Revision-Date: 2012-07-01 18:04+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" +"PO-Revision-Date: 2012-07-29 13:55+0200\n" "Last-Translator: ProUser \n" "Language-Team: swedish \n" "Language: sv\n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Visa alla" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Sök" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Sök" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Kör" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databas %1$s har skapats." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Databaskommentar" @@ -120,17 +123,17 @@ msgstr "Databaskommentar" msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Kolumn" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Typ" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Null" msgid "Default" msgstr "Standardvärde" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Länkar till" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Kommentarer" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Nej" @@ -242,19 +248,22 @@ msgstr "Nej" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -262,8 +271,8 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Visa dump (schema) av databasen" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Inga tabeller funna i databasen." @@ -279,74 +288,74 @@ msgstr "Avmarkera alla" msgid "The database name is empty!" msgstr "Databasens namn är tomt!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databasen %1$s har bytt namn till %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databasen %1$s har kopierats till %2$s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Byt namn på databasen till" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Radera databasen" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har tagits bort." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Tag bort databasen (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Kopiera databasen till" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Enbart struktur" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Struktur och data" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Enbart data" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE före kopiering" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Lägg till %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Addera AUTO_INCREMENT värde" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Lägg till restriktioner" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Byt till den kopierade databasen" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Byt till den kopierade databasen" msgid "Collation" msgstr "Kollationering" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -364,7 +373,7 @@ msgid "" msgstr "" "Konfigurationsschemat för phpMyAdmin har avaktiverats. %sVisa orsaken%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Editera eller exportera relationsschema" @@ -374,16 +383,18 @@ msgstr "Editera eller exportera relationsschema" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tabell" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Rader" @@ -393,13 +404,13 @@ msgid "Size" msgstr "Storlek" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "används" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -407,7 +418,7 @@ msgstr "Skapande" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -415,7 +426,7 @@ msgstr "Senaste uppdatering" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -428,92 +439,15 @@ msgid_plural "%s tables" msgstr[0] "%s tabell" msgstr[1] "%s tabeller" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Du måste välja minst en kolumn som ska visas" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Stigande" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Fallande" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sortera" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Visa" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriterier" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Lägg till/Ta bort villkorsrader" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Lägg till/Ta bort kolumner" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Uppdatera fråga" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Använd tabeller" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Eller" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Och" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Infoga" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Ta bort" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Ändra" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Växla till %sgrafisk modellerare%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-fråga i databas %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Skicka fråga" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -554,7 +488,7 @@ msgstr "Spårning är aktiv." msgid "Tracking is not active." msgstr "Spårning är inaktiv." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -582,20 +516,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s är standardmotorn för denna MySQL server." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Med markerade:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Markera alla" @@ -603,31 +538,32 @@ msgstr "Markera alla" msgid "Check tables having overhead" msgstr "Kontrollera tabeller med overhead" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportera" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Töm" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -671,17 +607,18 @@ msgstr "Spårade tabeller" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Databas" @@ -699,18 +636,26 @@ msgstr "Uppdaterad" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Status" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Åtgärd" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Visa" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ta bort spårning för denna tabell" @@ -751,20 +696,20 @@ msgstr "Databas logg" msgid "Bad type!" msgstr "Dålig typ!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Vald exporttyp måste sparas till fil!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Felaktiga parametrar!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Otillräckligt utrymme för att spara filen %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -772,12 +717,12 @@ msgstr "" "Filen %s finns redan på servern, ändra filnamnet eller kontrollera ersätt " "alternativet." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webbservern har inte behörighet att spara filen %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump har sparats till filen %s." @@ -800,7 +745,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometri" @@ -873,7 +818,7 @@ msgstr "" "Välj \"GeomFromText\" från \"Funktions\"-kolumnen och klistra in " "nedanstående sträng i \"Value\"-fältet" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -882,20 +827,20 @@ msgstr "" "Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s " "för att gå runt denna begränsning." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Visar bokmärke" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Bokmärket har tagits bort." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Filen kunde inte läsas" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -905,7 +850,7 @@ msgstr "" "Du försökta ladda en fil med en komprimering (%s) som inte stöds. Antingen " "är detta inte implementerat, eller inaktiverat i din konfiguration." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -915,28 +860,28 @@ msgstr "" "översteg filens storlek den maximalt tillåtna storleken i din PHP-" "konfiguration. Se [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan inte konvertera filens teckenuppsättning utan teckenuppsättningens " "omvandlingsbibliotek" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Kunde inte läsa in tillägg för import, kontrollera din installation!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Bokmärket %s har skapats" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen har slutförts korrekt, %d frågor utförda." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -944,7 +889,7 @@ msgstr "" "Skriptets tidsbegränsning har överskridits. Om du vill slutföra importen, " "importera samma fil igen så kommer importen att återupptas." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -953,8 +898,8 @@ msgstr "" "att phpMyAdmin inte kan slutföra denna import såvida du inte ökar PHP:s " "tidsbegränsningar." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -969,7 +914,7 @@ msgstr "Föregående" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin fungerar bättre med en webbläsare som hanterar ramar." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" satserna är inaktiverade." @@ -978,7 +923,7 @@ msgstr "\"DROP DATABASE\" satserna är inaktiverade." msgid "Do you really want to execute \"%s\"?" msgstr "Vill du verkligen exekvera \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Du är på väg att RADERA en hel databas!" @@ -1036,16 +981,20 @@ msgstr "Värdnamnet är tomt!" msgid "The user name is empty!" msgstr "Användarnamnet saknas!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Lösenordet saknas!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Lösenorden överensstämmer inte!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Lägg till en användare" @@ -1065,9 +1014,9 @@ msgstr "Stäng" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1313,12 +1262,13 @@ msgstr "Addera diagrammet till rutnätet" msgid "Please add at least one variable to the series" msgstr "Lägg till minst en variabel till serien" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Inget" @@ -1500,10 +1450,10 @@ msgid "Explain output" msgstr "Förklara utdata" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Tid" @@ -1797,7 +1747,7 @@ msgstr "Visa frågerutan" msgid "No rows selected" msgstr "Inga rader valda" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Ändra" @@ -1806,8 +1756,8 @@ msgstr "Ändra" msgid "Query execution time" msgstr "Exekveringstid för frågor" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d är inte ett giltigt radnummer." @@ -1879,7 +1829,7 @@ msgstr "Innehåll för datapunkt" msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopiera" @@ -2365,14 +2315,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Fel" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-fråga" @@ -2383,7 +2333,7 @@ msgstr "SQL-fråga" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2412,6 +2362,10 @@ msgstr "Utan PHP-kod" msgid "Create PHP Code" msgstr "Skapa PHP-kod" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Skicka fråga" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2436,7 +2390,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Infogad" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profilering" @@ -2463,14 +2417,14 @@ msgstr "Saknade parametrar:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Starta" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2478,7 +2432,7 @@ msgstr "Föregående" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2486,7 +2440,7 @@ msgstr "Nästa" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Slut" @@ -2507,16 +2461,17 @@ msgstr "Klicka för att växla" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" @@ -2524,21 +2479,20 @@ msgstr "Struktur" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Lägg till" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Bläddra" @@ -2559,21 +2513,21 @@ msgstr "Gå igenom din dator:" msgid "Select from the web server upload directory %s:" msgstr "Välj katalog att ladda upp till från web-server listningen %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Det finns inga filer att ladda upp" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Utför" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Skriv ut" @@ -2591,6 +2545,74 @@ msgstr "" msgid "Font size" msgstr "Teckenstorlek" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Stigande" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Fallande" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sortera" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriterier" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Lägg till/Ta bort villkorsrader" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Lägg till/Ta bort kolumner" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Uppdatera fråga" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Använd tabeller" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Eller" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Och" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Infoga" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Ta bort" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Ändra" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-fråga i databas %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "minst ett av orden" @@ -2631,8 +2653,8 @@ msgstr[1] "%1$s träffar i %2$s" msgid "Delete the matches for the %s table?" msgstr "Ta bort resultat som matchar %s tabellen?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2667,64 +2689,64 @@ msgstr "Inuti tabeller:" msgid "Inside column:" msgstr "Inuti kolumnen:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Spara editerade data" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Återställ ordningen på kolumner" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Starta rad" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Antal rader" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Läge" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "horisontell" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "horisontell (roterade rubriker)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Rubriker var %s rad" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Sortera efter nyckel" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2737,60 +2759,60 @@ msgstr "Sortera efter nyckel" msgid "Options" msgstr "Alternativ" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Förkortade texter" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Kompletta texter" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Besläktad nyckel" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Kolumn för besläktad nyckel" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Visa binärt innehåll" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "Visa BLOB-innehåll" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Visa binärt innehåll som HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Dölj webbläsarens transformation" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Välkänd text" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Välkänd binär" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Raden har raderats" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Döda" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2798,44 +2820,44 @@ msgstr "" "Kan vara ungefärligt. Se [a@./Documentation.html#faq3_11@Documentation)FAQ " "3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "i fråga" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Visar rader" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "totalt" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Utskriftsvänlig version (med fullständiga texter)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Visa diagram" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "Visualisera GIS-data" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Skapa vy" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Länken hittades inte" @@ -2958,8 +2980,8 @@ msgstr "" "bort." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Databaserna" @@ -2975,11 +2997,11 @@ msgid "Tracking" msgstr "Spårning" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Trigger" @@ -2997,9 +3019,9 @@ msgstr "Databasen verkar vara tom!" msgid "Query" msgstr "Fråga" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegier" @@ -3008,7 +3030,7 @@ msgid "Routines" msgstr "Rutiner" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Händelser" @@ -3106,43 +3128,43 @@ msgstr "%s har inaktiverats på denna MySQL-server." msgid "This MySQL server does not support the %s storage engine." msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "Okänd tabellstatus: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Källdatabas `%s` hittades inte!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Måldatabas `%s` hittades inte!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Ogiltig databas" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Ogiltigt tabellnamn" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Fel vid namnbyte av tabell %1$s till %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabell %1$s har döpts om till %2$s." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Kunde inte spara UI inställningarna för tabellen" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3151,7 +3173,7 @@ msgstr "" "Misslyckades med att rensa UI inställningarna (se $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3163,7 +3185,7 @@ msgstr "" "förändrats." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funktion" @@ -3175,7 +3197,7 @@ msgstr "Aktör" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3214,7 +3236,7 @@ msgid "Maximum rows to plot" msgstr "Maximalt antal rader att visa" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Bläddra bland främmande värden" @@ -3624,7 +3646,7 @@ msgstr "delad" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tabeller" @@ -3635,9 +3657,10 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Data" @@ -3755,32 +3778,32 @@ msgid "Disabled" msgstr "Inaktiverad" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "struktur" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "data" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "struktur och data" @@ -4206,13 +4229,13 @@ msgstr "Komprimering" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Sätt kolumnnamn på första raden" @@ -4235,7 +4258,6 @@ msgstr "Kolumner föregås av" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Ersätt NULL med" @@ -4275,23 +4297,22 @@ msgstr "Mall för tabellnamn" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Dumpa tabell" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Inkludera tabellbeskrivning" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Tabellrubrik" @@ -4300,14 +4321,14 @@ msgid "Continued table caption" msgstr "Fortsatt tabellrubrik" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Märk nyckel" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-typ" @@ -4344,7 +4365,7 @@ msgid "SQL compatibility mode" msgstr "SQL kompatibilitetläge" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE alternativ:" @@ -4357,7 +4378,7 @@ msgid "Use delayed inserts" msgstr "Använd fördröjda inläggningar" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Inaktivera kontroller av främmande nycklar" @@ -4374,7 +4395,7 @@ msgid "Syntax to use when inserting data" msgstr "Syntax att använda när man infogar data" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Maximal längd på skapad fråga" @@ -4383,7 +4404,7 @@ msgid "Export type" msgstr "Export-typ" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Bifoga export i en transaktion" @@ -4438,7 +4459,6 @@ msgstr "Anpassa förvalda alternativ" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4497,7 +4517,6 @@ msgid "Set import and export directories and compression options" msgstr "Ange kataloger för import och export och komprimeringsalternativ" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4725,7 +4744,6 @@ msgid "Customize text input fields" msgstr "Anpassa textfält" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! text" @@ -5912,9 +5930,11 @@ msgstr "Kräver att SQL Validator är aktiverad" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Lösenord" @@ -6092,7 +6112,6 @@ msgstr "CSV med LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "OpenDocument kalkylblad" @@ -6114,19 +6133,16 @@ msgstr "Databas exportalternativ" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV för MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "OpenDocument text" @@ -6182,7 +6198,7 @@ msgstr "%s tillägg saknas. Vänligen kontrollera din PHP konfiguration." msgid "possible deep recursion attack" msgstr "möjlig djupgående rekursiv attack" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6190,19 +6206,19 @@ msgstr "" "Servern svarar inte (eller den lokala serverns socket är inte korrekt " "konfigurerad)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Servern svarar inte." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Kontrollera privilegierna för katalogen som innehåller databasen." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Detaljer..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades." @@ -6213,13 +6229,15 @@ msgid "Change password" msgstr "Byt lösenord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Inget lösenord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Skriv igen" @@ -6240,8 +6258,9 @@ msgstr "Skapa databas" msgid "Create" msgstr "Skapa" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Inga privilegier" @@ -6251,12 +6270,12 @@ msgid "Create table" msgstr "Skapa tabell" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Namn" @@ -6393,7 +6412,7 @@ msgid "View output as text" msgstr "Visa utdata som text" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Format:" @@ -6902,52 +6921,52 @@ msgstr "PrimeBase XT Blogg av Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Inga data finns för GIS visualisering." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Följande strukturer har antingen skapats eller ändrats. Du kan:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Visa en strukturs innehåll genom att klicka på namnet" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Ändra någon av inställningarna genom att klicka på motsvarande \"Alternativ" "\" länk" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Redigera strukturen genom att följa \"Structure\" länken" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Gå till databas: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "Redigera inställningar för %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Gå till tabell: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "Struktur för %s" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Gå till vy: %s" @@ -7018,11 +7037,11 @@ msgstr "" "Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil " "för att flytta vart som helst" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad id: %1$d" @@ -7268,7 +7287,7 @@ msgstr "phpMyAdmin dokumentation" msgid "Reload navigation frame" msgstr "Ladda om navigering ram" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Detta format har inga alternativ" @@ -7383,93 +7402,93 @@ msgstr "Ogiltig autentiseringsnyckel" msgid "Authenticating..." msgstr "Autentisering pågår..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Kolumnerna avslutas med:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Kolumner omges av:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Specialtecken i fält föregås av:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Rader avslutas med:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "Ersätt NULL med:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Ta bort radbrytning inom kolumner" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel-version:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Dumpningsalternativ för data" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Dumpning av Data i tabell" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Händelse" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definition" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tabellstruktur" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Struktur för visning" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Ersättningsstruktur för visning" @@ -7485,94 +7504,83 @@ msgstr "(fortsättning)" msgid "Structure of table @TABLE@" msgstr "Struktur för tabell @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Alternativ för skapande av objekt" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Tabell beskrivning (forts)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Visa relationer för främmande nycklar" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Visa kommentarer" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "Visa MIME-typer" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Värd" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Skapad" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Serverversion" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP-version" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki Tabell" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Exportera tabellnamn" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Exportera tabellhuvuden" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Skapar en rapport som innehåller data från en enstaka tabell)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Rapport titel:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP-array" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7580,13 +7588,13 @@ msgstr "" "Visa kommentarer (inkluderar info såsom export tidsstämpel, PHP version, " "och server version)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Ytterligare Anpassa sidhuvud kommentar (\n" " delar rader):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7594,23 +7602,23 @@ msgstr "" "Inkludera en tidsstämpel på när databaser skapades, senast uppdaterade, och " "senast kontrollerade" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "Maximera kompatibilitet med databassystem eller äldre MySQL-server:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "Lägg till %s uppgift" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "Lägg till uppgift:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7618,32 +7626,38 @@ msgstr "" "Bifoga tabell-och kolumnnamn med backquote (`) (Skyddar kolumn- och " "tabellnamn skapade med specialtecken eller nyckelord)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Valmöjligheter vid skapande av data" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Trunkera tabell innan inläggning" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "Istället för INSERT kommando, använd:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED kommando" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE kommando" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Funktion för att använda när data dumpas:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Syntax att använda när data infogas:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7653,7 +7667,7 @@ msgstr "" "    Exempel: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7663,7 +7677,7 @@ msgstr "" "  Exempel: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7671,7 +7685,7 @@ msgstr "" "båda av ovanstående
      Exempel: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7679,7 +7693,7 @@ msgstr "" "ingen av ovanstående
      Exempel: INSERT INTO " "tbl_name VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7687,7 +7701,7 @@ msgstr "" "Dumpa binära kolumner i hexadecimal notation (t.ex. \"abc\"blir 0x616263)" "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7695,50 +7709,45 @@ msgstr "" "Dumpa TIMESTAMP kolumner i UTC (gör TIMESTAMP kolumner som ska dumpas och " "laddade mellan servrar i olika tidszoner)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedurer" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funktioner" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Restriktioner för dumpade tabeller" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Restriktioner för tabell" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPER FÖR TABELL" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONER FÖR TABELL" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Fel vid läsning av data:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Skapa objekt alternativ (alla rekommenderas)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Vy" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Exportera innehåll" @@ -7812,6 +7821,10 @@ msgstr "Kolumn-namn" msgid "This plugin does not support compressed imports!" msgstr "Detta tillägg stöder inte komprimerade importer!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki Tabell" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7870,6 +7883,10 @@ msgstr "SQL kompatibilitetsläge:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Använd inte AUTO_INCREMENT för nollvärden" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8103,11 +8120,12 @@ msgstr "" "Logga in igen till phpMyAdmin för att ladda den uppdaterade " "konfigurationsfilen." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "Ingen beskrivning" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Avmarkera alla" @@ -8129,9 +8147,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Användarnamn" @@ -8168,34 +8187,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Lägg till användare för slav replikering" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Vilken användare som helst" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Använd textfältet" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Vilken värd som helst" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Denna värd" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Använd värdtabell" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8211,7 +8239,7 @@ msgstr "Generera lösenord" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8248,8 +8276,8 @@ msgid "Edit event" msgstr "Editera händelse" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fel i utförandebegäran" @@ -8325,7 +8353,8 @@ msgstr "Du måste ange en giltig typ för händelsen." msgid "You must provide an event definition." msgstr "Du måste ange en händelsedefinition." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Ny" @@ -8459,25 +8488,25 @@ msgstr "Du måste ange en giltig returtyp för händelsen." msgid "You must provide a routine definition." msgstr "Du måste ange en rutindefinition." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Exekveringsresultat av rutin %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d rad berörs av det sista uttrycket inom proceduren" msgstr[1] "%d rader berörs av det sista uttrycket inom proceduren" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Exekveringsresultat av rutin %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Utför rutin" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Rutinparametrar" @@ -8606,28 +8635,28 @@ msgstr "Ingen händelse med namnet %1$s hittades i databasen %2$s" msgid "There are no events to display." msgstr "Det finns inga händelser att visa." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabellen %s existerar inte!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Var god ange koordinaterna för tabellen %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema för databasen %s - Sida %s" @@ -8764,6 +8793,451 @@ msgstr "Okänt språk: %1$s." msgid "Current Server" msgstr "Nuvarande Server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Inga privilegier." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Inkluderar alla privilegier förutom GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Tillåter läsning av data." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Tillåter infogning och ersättning av data." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Tillåter ändring av data." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Tillåter borttagning av data." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Tillåter skapande av nya databaser och tabeller." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Tillåter borttagning av databaser och tabeller." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Tillåter omladdning av serverinställningar och rensning av serverns cache." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Tillåter avstängning av servern." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Tillåter visning av processer för alla användare" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Tillåter import av data från och export av data till filer." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Har ingen effekt i denna version av MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Tillåter skapande och borttagning av index." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Tillåter ändring av befintliga tabellers struktur." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Ger tillgång till den fullständiga databaslistan." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Tillåter uppkoppling, även om maximala antalet förbindelser är nådd. " +"Nödvändig för de flesta administrativa funktioner, som att sätta globala " +"variabler eller döda andra användares trådar." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Tillåter skapande av temporära tabeller." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Tillåter låsning av tabeller för gällande tråd." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Nödvändigt för replikeringsslavar." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Tillåter skapande av nya vyer." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Tillåter skapande av händelser för händelseschemaläggaren" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Tillåter skapande och borttagning av triggers" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Tillåter skapande av lagrade rutiner." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Tillåter ändring och borttagning av lagrade rutiner." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Tillåter utförande av lagrade rutiner." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Inget" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Resursbegränsningar" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Begränsar antalet frågor användaren kan skicka till servern per timme." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Begränsar antalet kommandon, vilka ändrar någon tabell eller databas, som " +"användaren kan utföra per timme." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Begränsar antalet nya förbindelser användaren kan öppna per timme." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Tabellspecifika privilegier" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Notera: MySQL privilegie benämningar uttrycks på engelska" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administration" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Globala privilegier" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Databasspecifika privilegier" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Tillåter skapande av nya tabeller." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Tillåter borttagning av tabeller." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Tillåter inläggning av användare och privilegier utan omladdning av " +"privilegietabeller." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Inloggningsinformation" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Ändra inte lösenordet" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Lösenordet för %s har ändrats." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Du har upphävt privilegierna för %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Databas för användare" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Skapa databas med samma namn och tilldela alla privilegier" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Bevilja alla privilegier till namn med jokertecken (username\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "Bevilja alla privilegier för databas "%s"" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Användare som har tillgång till "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Användare" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Beviilja" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "En användare har skapats." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Vem som helst" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "databasspecifik" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "jokertecken" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Ingen användare hittades." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Ändra privilegier" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Upphäv" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Exportera allt" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... behåll den gamla." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... ta bort den gamla från användartabellerna." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... ta bort den gamla från användartabellerna och ladda om privilegierna " +"efteråt." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Ändra inloggningsinformation / Kopiera användare" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Skapa en ny användare med samma privilegier och ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Kolumnspecifika privilegier" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Lägg till privilegier till följande databas" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Jokertecknen _ och % måste föregås av ett \\ för att användas i egentlig " +"betydelse" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Lägg till privilegier till följande tabell" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Ta bort valda användare" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Upphäv alla aktiva privilegier från användarna och ta bort dem efteråt." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Ta bort databaserna med samma namn som användarna." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Inga användare valda för borttagning!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Laddar om privilegierna" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "De valda användarna har tagits bort." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Du har uppdaterat privilegierna för %s." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Privilegier för samtliga användare" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "Privilegier för %s" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Användare översikt" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Anm: phpMyAdmin hämtar användarnas behörigheter direkt från MySQL's " +"behörighetstabeller. Innehållet i dessa tabeller kan skilja sig från de " +"behörigheter servern använder, om manuella ändringar har gjorts. Är så " +"fallet bör du %sladda om behörigheterna%s innan du fortsätter." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Den valda användaren kunde inte hittas i privilegietabellen." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Du har lagt till en ny användare." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Källdatabas" @@ -8810,11 +9284,11 @@ msgstr "Rensa" msgid "Columns" msgstr "Kolumn" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Låt varje användare få tillgång till detta bokmärke" @@ -9094,12 +9568,6 @@ msgstr "Mjukvaruversion" msgid "Protocol version" msgstr "Protokollversion" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Användare" - #: main.php:217 msgid "Server charset" msgstr "Server teckenuppsättning" @@ -9616,441 +10084,20 @@ msgstr "Licens" msgid "disabled" msgstr "inaktiverad" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Inkluderar alla privilegier förutom GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Tillåter ändring av befintliga tabellers struktur." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Tillåter ändring och borttagning av lagrade rutiner." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Tillåter skapande av nya databaser och tabeller." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Tillåter skapande av lagrade rutiner." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Tillåter skapande av nya tabeller." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Tillåter skapande av temporära tabeller." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Tillåter skapande av nya vyer." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Tillåter borttagning av data." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Tillåter borttagning av databaser och tabeller." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Tillåter borttagning av tabeller." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Tillåter skapande av händelser för händelseschemaläggaren" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Tillåter utförande av lagrade rutiner." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Tillåter import av data från och export av data till filer." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Tillåter inläggning av användare och privilegier utan omladdning av " -"privilegietabeller." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Tillåter skapande och borttagning av index." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Tillåter infogning och ersättning av data." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Tillåter låsning av tabeller för gällande tråd." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Begränsar antalet nya förbindelser användaren kan öppna per timme." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Begränsar antalet frågor användaren kan skicka till servern per timme." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Begränsar antalet kommandon, vilka ändrar någon tabell eller databas, som " -"användaren kan utföra per timme." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Tillåter visning av processer för alla användare" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Har ingen effekt i denna version av MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Tillåter omladdning av serverinställningar och rensning av serverns cache." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Nödvändigt för replikeringsslavar." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Tillåter läsning av data." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Ger tillgång till den fullständiga databaslistan." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Tillåter avstängning av servern." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Tillåter uppkoppling, även om maximala antalet förbindelser är nådd. " -"Nödvändig för de flesta administrativa funktioner, som att sätta globala " -"variabler eller döda andra användares trådar." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Tillåter skapande och borttagning av triggers" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Tillåter ändring av data." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Inga privilegier." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Inget" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Tabellspecifika privilegier" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Notera: MySQL privilegie benämningar uttrycks på engelska" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administration" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Globala privilegier" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Databasspecifika privilegier" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Resursbegränsningar" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Inloggningsinformation" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Ändra inte lösenordet" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Ingen användare hittades." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Användaren %s finns redan!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Du har lagt till en ny användare." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Du har uppdaterat privilegierna för %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Du har upphävt privilegierna för %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Lösenordet för %s har ändrats." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Tar bort %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Inga användare valda för borttagning!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Laddar om privilegierna" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "De valda användarna har tagits bort." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Ändra privilegier" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Upphäv" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Exportera allt" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Vem som helst" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Privilegier för samtliga användare" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "Privilegier för %s" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Användare översikt" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Beviilja" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Ta bort valda användare" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Upphäv alla aktiva privilegier från användarna och ta bort dem efteråt." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Ta bort databaserna med samma namn som användarna." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Anm: phpMyAdmin hämtar användarnas behörigheter direkt från MySQL's " -"behörighetstabeller. Innehållet i dessa tabeller kan skilja sig från de " -"behörigheter servern använder, om manuella ändringar har gjorts. Är så " -"fallet bör du %sladda om behörigheterna%s innan du fortsätter." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Den valda användaren kunde inte hittas i privilegietabellen." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Kolumnspecifika privilegier" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Lägg till privilegier till följande databas" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Jokertecknen _ och % måste föregås av ett \\ för att användas i egentlig " -"betydelse" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Lägg till privilegier till följande tabell" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Ändra inloggningsinformation / Kopiera användare" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Skapa en ny användare med samma privilegier och ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... behåll den gamla." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... ta bort den gamla från användartabellerna." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... ta bort den gamla från användartabellerna och ladda om privilegierna " -"efteråt." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Databas för användare" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Skapa databas med samma namn och tilldela alla privilegier" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Bevilja alla privilegier till namn med jokertecken (username\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "Bevilja alla privilegier för databas "%s"" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Användare som har tillgång till "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "databasspecifik" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "jokertecken" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "En användare har skapats." - #: server_replication.php:82 msgid "Unknown error" msgstr "Okänt fel" @@ -11822,37 +11869,37 @@ msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken." msgid "Wrong data" msgstr "Felaktigt data" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Använd bokmärket \"%s\" som standard webbläsarfråga." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Vill du verkligen exekvera följande fråga?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "Visar som PHP-kod" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Validerad SQL-kod" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL-resultat" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Genererad av" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etikett" @@ -13699,6 +13746,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert är satt till 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP-array" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/ta.po b/po/ta.po index 0088591dcc..8677f48233 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2011-12-28 11:44+0200\n" "Last-Translator: any anonymous user <>\n" "Language-Team: Tamil \n" @@ -18,7 +18,8 @@ msgstr "" "X-Generator: Pootle 2.1.6\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "அனைத்தையும் காட்டு" @@ -43,16 +44,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "தேடு" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -62,24 +63,26 @@ msgstr "தேடு" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "செல் " @@ -111,7 +114,7 @@ msgstr "%s கோப்பு இந்த அமைப்பில் இல் msgid "Database %1$s has been created." msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட்டது" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "தரவுத்தள கருத்துரை" @@ -121,17 +124,17 @@ msgstr "தரவுத்தள கருத்துரை" msgid "Table comments" msgstr "அட்டவணைக் கருத்துரைகள்" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "நிரல்" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "வகை" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "வெற்று" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "வெற்று" msgid "Default" msgstr "முன்னிருப்பு" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "இணைப்பு" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "கருத்துரைகள்" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "இல்லை" @@ -243,19 +249,22 @@ msgstr "இல்லை" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "ஆம்" @@ -263,8 +272,8 @@ msgstr "ஆம்" msgid "View dump (schema) of database" msgstr "தரவுத்தளத்தின் திட்ட வடிவத்தைப் பார்" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "அட்டவணைகள் எதுவும் தரவுத்தளத்தில் காணப்படவில்லை" @@ -280,76 +289,76 @@ msgstr "அனைத்து தெரிவுகளையும் நீக msgid "The database name is empty!" msgstr "தரவுத்தளப் பெயர் வெறுமையாக உள்ளது" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s தரவுத்தளமானது %s ஆக பெயர் மாற்றப்பட்டது" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s தரவுத்தளமானது %s இற்கு பிரதி செய்யப்பட்டது" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "தரவுத்தளத்தைப் பெயர் மாற்ற" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "தரவுத்தளத்தை நீக்கு" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s தரவுத்தளம் இரத்துசெய்யப்பட்டது" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "தரவுத்தளத்தை இரத்து செய் (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "தரவுத்தளத்தை பிரதிசெய்" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "கட்டமைப்பை மட்டும்" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "கட்டமைப்பு மற்றும் தரவுகள்" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "தரவுகளை மட்டும்" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "பிரதிசெய்யமுன் தரவுத்தளத்தை உருவாக்கு" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "கட்டுப்பாடுகளை சேர்க்க" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "பிரதியான தரவுதளத்துக்கு மாறு" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -359,7 +368,7 @@ msgstr "பிரதியான தரவுதளத்துக்கு ம msgid "Collation" msgstr "அடுக்கு" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -368,7 +377,7 @@ msgstr "" "PhpMyAdmin கட்டமைப்பு சேமிப்பகம் முடக்க செய்யப்பட்டுள்ளது. ஏன் எனக் கண்டுபிடிக்க %shere%s " "கிளிக் செய்யவும்" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "தொடர்புசார் திட்டத்தை திருத்த அல்லது ஏற்ற" @@ -378,16 +387,18 @@ msgstr "தொடர்புசார் திட்டத்தை திர #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "அட்டவணை" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "வரிசைகள்" @@ -397,13 +408,13 @@ msgid "Size" msgstr "அளவு" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "பயன்பாட்டில்" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -411,7 +422,7 @@ msgstr "உருவாக்கம்" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -419,7 +430,7 @@ msgstr "இறுதி இற்றைப்படுத்தல்" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -432,92 +443,15 @@ msgid_plural "%s tables" msgstr[0] "%s அட்டவணை" msgstr[1] "%s அட்டவணைகள்" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "காட்சிப்படுத்த நீங்கள் குறைந்தபட்சம் ஒரு நிரலை தேர்ந்தெடுக்க வேண்டும்" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "ஏறுவரிசை" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "இறங்குவரிசை" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "வரிசைப்படுத்து" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "காண்பி" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "தேர்வளவை" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "விதி நிரைகளை சேர்க்க/ நீக்க" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "நெடுவரிசைகள் சேர்க்க/ நீக்க" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "வினவலை புதுப்பி" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "அட்டவணைகளை பயன்படுத்துக" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "அல்லது" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "மற்றும்" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "துணைநிரல்கள்" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "அழி" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "மாற்று" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "%s காட்சி கட்டுனர் இற்கு %s மாற்றவும்" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "தரவுத்தளம் மீது %sframes-capable
browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -975,7 +920,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1038,16 +983,20 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "பயனரை சேர்" @@ -1067,9 +1016,9 @@ msgstr "மூடு" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1313,12 +1262,13 @@ msgstr "வரைபடத்தை கட்டத்தில் சேர்" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "எதுவுமில்லை" @@ -1497,10 +1447,10 @@ msgid "Explain output" msgstr "" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "" @@ -1810,7 +1760,7 @@ msgstr "வினவல் பெட்டியை காண்பி" msgid "No rows selected" msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "மாற்று" @@ -1819,8 +1769,8 @@ msgstr "மாற்று" msgid "Query execution time" msgstr "வினவல் நிறைவேற்றுகை நேரம்" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1895,7 +1845,7 @@ msgstr "" msgid "Ignore" msgstr "புறக்கணி" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "நகல்" @@ -2389,14 +2339,14 @@ msgid "en" msgstr "ஆங்" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "வலு" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL வினவல்" @@ -2407,7 +2357,7 @@ msgstr "SQL வினவல்" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2436,6 +2386,10 @@ msgstr "" msgid "Create PHP Code" msgstr "PHP குறிமுறை உருவாக்கு" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "வினவலை சமர்ப்பி" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2460,7 +2414,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "உள்வரிசை" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2487,14 +2441,14 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "ஆரம்பம்" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2502,7 +2456,7 @@ msgstr "முந்தைய" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2510,7 +2464,7 @@ msgstr "அடுத்து" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "முடிவு" @@ -2531,16 +2485,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "கட்டமைப்பு" @@ -2548,21 +2503,20 @@ msgstr "கட்டமைப்பு" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "செருகு" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "உலாவு" @@ -2583,21 +2537,21 @@ msgstr "உனது கணினியை உலாவு" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "நிறைவேற்று" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "அச்சிடு" @@ -2614,6 +2568,74 @@ msgstr "" msgid "Font size" msgstr "எழுத்துரு அளவு" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "ஏறுவரிசை" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "இறங்குவரிசை" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "வரிசைப்படுத்து" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "தேர்வளவை" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "விதி நிரைகளை சேர்க்க/ நீக்க" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "நெடுவரிசைகள் சேர்க்க/ நீக்க" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "வினவலை புதுப்பி" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "அட்டவணைகளை பயன்படுத்துக" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "அல்லது" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "மற்றும்" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "துணைநிரல்கள்" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "அழி" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "மாற்று" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "தரவுத்தளம் மீது %sCREATE TABLE options:" msgstr "" @@ -4296,7 +4317,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4313,7 +4334,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4322,7 +4343,7 @@ msgid "Export type" msgstr "" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4375,7 +4396,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "" @@ -4434,7 +4454,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "" @@ -4655,7 +4674,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5727,9 +5745,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5893,7 +5913,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -5915,19 +5934,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -5983,25 +5999,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6012,13 +6028,15 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "" @@ -6039,8 +6057,9 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "" @@ -6050,12 +6069,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "" @@ -6189,7 +6208,7 @@ msgid "View output as text" msgstr "" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "" @@ -6641,51 +6660,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "தரவுத்தளத்தை பிரதிசெய்" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6754,11 +6773,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7006,7 +7025,7 @@ msgstr "phpMyAdmin ஆவணச்சான்று" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7118,93 +7137,93 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7220,246 +7239,237 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Add into comments" msgid "Display comments" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "ஏற்றுமதி" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "Export" msgid "Export table headers" msgstr "ஏற்றுமதி" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Add constraints" msgid "Add statements:" msgstr "தடைகளை சேர்க்க" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Actions" +msgid "Data creation options" +msgstr "செயல்கள்" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7526,6 +7536,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7579,6 +7593,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7764,11 +7782,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "" @@ -7788,9 +7807,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -7825,34 +7845,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7866,7 +7895,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7904,8 +7933,8 @@ msgid "Edit event" msgstr "புதிய பயனாளரை சேர்க்க" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -7981,7 +8010,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8115,25 +8145,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8274,28 +8304,28 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8432,6 +8462,436 @@ msgstr "" msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "ஏற்றுமதி" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "Overview" +msgid "Users overview" +msgstr "இறுதிப்பர்வை" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8478,11 +8938,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8744,12 +9204,6 @@ msgstr "பதிப்புகளை காட்டு" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "" - #: main.php:217 #, fuzzy #| msgid "Remove chart" @@ -9249,426 +9703,20 @@ msgstr "" msgid "disabled" msgstr "முடக்கு %s" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "ஏற்றுமதி" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "Overview" -msgid "Users overview" -msgstr "இறுதிப்பர்வை" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11220,37 +11268,37 @@ msgstr "" msgid "Wrong data" msgstr "தரவு இல்லை" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "சிட்டை" diff --git a/po/te.po b/po/te.po index db74d2b641..814c776431 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Telugu \n" @@ -18,7 +18,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "అన్నీ చూపించు" @@ -41,16 +42,16 @@ msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "శోధించు" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "శోధించు" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "వెళ్ళు" @@ -109,7 +112,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "డేటాబేస్ వ్యాఖ్య: " @@ -120,17 +123,17 @@ msgid "Table comments" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "వరుస" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "రకం" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "" msgid "Default" msgstr "అప్రమేయం" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "వ్యాఖ్యలు" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "కాదు" @@ -242,19 +248,22 @@ msgstr "కాదు" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "అవును" @@ -262,8 +271,8 @@ msgstr "అవును" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు" @@ -281,77 +290,77 @@ msgid "The database name is empty!" msgstr "డేటాబేస్ పేరు ఖాళీగా ఉన్నది" # మొదటి అనువాదము -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Page has been created" msgid "Database %1$s has been renamed to %2$s" msgstr "పుటను సృష్టించడమైనది" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s డేటాబేస్ %s డేటాబేస్ కు కాపీ అయింది" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి" # మొదటి అనువాదము -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "డేటాబేస్ తొలగించండి" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "డేటాబేస్ ను తుడిచివేయి" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "నిర్మాణం మాత్రమే" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "నిర్మాణం, మరియు డేటా" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "డేటా మాత్రమే" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "కాపీ చేయబోయే ముందు డేటాబేస్ సృష్టించు" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s జతచేయి" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -361,14 +370,14 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "" @@ -378,16 +387,18 @@ msgstr "" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "పట్టిక" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "" @@ -398,13 +409,13 @@ msgstr "పరిమాణం" # మొదటి అనువాదము #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "వాడుకలో ఉన్నది" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -412,7 +423,7 @@ msgstr "సృష్టి" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -420,7 +431,7 @@ msgstr "చివరి మార్పు" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -433,96 +444,16 @@ msgid_plural "%s tables" msgstr[0] "%s పట్టిక" msgstr[1] "%s పట్టికలు" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "ఆరోహణ" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "అవరోహణ" - -# మొదటి అనువాదము -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "క్రమంలో పేర్చు" - -# మొదటి అనువాదము -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "చూపించు" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "లక్షణాలు" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "లక్షణాల వరుసలను చేర్చు/తొలగించు" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "క్వెరీ ని మార్చు" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "పట్టికల్ని వాడు" - -# మొదటి అనువాదము -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "లేదా" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "మరియు" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "చొప్పించు" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "తొలగించు" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "మార్చు" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "దృశ్య కల్పకం" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "క్వెరీ ని సమర్పించు" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -563,7 +494,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -593,20 +524,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "" @@ -614,32 +546,33 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ఎగుమతి" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "" # మొదటి అనువాదము -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "ఖాళీ" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -686,17 +619,18 @@ msgstr "" # మొదటి అనువాదము #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "డేటాబేస్" @@ -714,18 +648,27 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "స్థితి" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "చర్య" +# మొదటి అనువాదము +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "చూపించు" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -766,32 +709,32 @@ msgstr "" msgid "Bad type!" msgstr "తప్పు రకం!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" # మొదటి అనువాదము -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "చెల్లని పరామితులు!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -814,7 +757,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -893,27 +836,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -921,46 +864,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -975,7 +918,7 @@ msgstr "వెనుకకి" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -984,7 +927,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1052,17 +995,21 @@ msgstr "" msgid "The user name is empty!" msgstr "వాడుకరి పేరులో ఏమీ లేదు" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "సంకేతపదం ఖాళీగా ఉంది!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" # మొదటి అనువాదము -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1084,9 +1031,9 @@ msgstr "మూసివేయి" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1345,12 +1292,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "ఏమీలేదు" @@ -1541,10 +1489,10 @@ msgid "Explain output" msgstr "" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "సమయం" @@ -1888,7 +1836,7 @@ msgid "No rows selected" msgstr "" # మొదటి అనువాదము -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "మార్చుము" @@ -1897,8 +1845,8 @@ msgstr "మార్చుము" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1978,7 +1926,7 @@ msgstr "విషయ సూచిక" msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2471,14 +2419,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "పొరపాటు" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "" @@ -2489,7 +2437,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2518,6 +2466,10 @@ msgstr "" msgid "Create PHP Code" msgstr "" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "క్వెరీ ని సమర్పించు" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2542,7 +2494,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2570,7 +2522,7 @@ msgstr "" # మొదటి అనువాదము #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2580,7 +2532,7 @@ msgstr "మొదలు" # మొదటి అనువాదము #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2591,7 +2543,7 @@ msgstr "క్రితము" # మొదటి అనువాదము #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2601,7 +2553,7 @@ msgstr "తదుపరి" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2624,16 +2576,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "నిర్మాణాకృతి" @@ -2641,21 +2594,20 @@ msgstr "నిర్మాణాకృతి" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "" @@ -2676,21 +2628,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "ముద్రించు" @@ -2707,6 +2659,76 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "ఆరోహణ" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "అవరోహణ" + +# మొదటి అనువాదము +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "క్రమంలో పేర్చు" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "లక్షణాలు" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "లక్షణాల వరుసలను చేర్చు/తొలగించు" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "క్వెరీ ని మార్చు" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "పట్టికల్ని వాడు" + +# మొదటి అనువాదము +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "లేదా" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "మరియు" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "చొప్పించు" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "తొలగించు" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "మార్చు" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "కనీసం ఒక్క పదం" @@ -2747,8 +2769,8 @@ msgstr[1] "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2786,70 +2808,70 @@ msgstr "పట్టికల్ని వాడు" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Table comments" msgid "Restore column order" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "మొదలుపెట్టు" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "More" msgid "Mode" msgstr "మరిన్ని" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2862,110 +2884,110 @@ msgstr "" msgid "Options" msgstr "ఎంపికలు" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "పాక్షిక పాఠ్యాలు" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "పూర్తి పాఠ్యాలు" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Version information" msgid "Hide browser transformation" msgstr "సంచిక సమాచారం" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "మొత్తం" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" # మొదటి అనువాదము -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "సృష్టించు" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "" @@ -3083,8 +3105,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "" @@ -3100,11 +3122,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3122,9 +3144,9 @@ msgstr "" msgid "Query" msgstr "" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "" @@ -3133,7 +3155,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3237,52 +3259,52 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" # మొదటి అనువాదము -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Page has been created" msgid "Table %1$s has been renamed to %2$s." msgstr "పుటను సృష్టించడమైనది" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3291,7 +3313,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3303,7 +3325,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3345,7 +3367,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3702,7 +3724,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "పట్టికలు" @@ -3713,9 +3735,10 @@ msgstr "పట్టికలు" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "" @@ -3835,32 +3858,32 @@ msgid "Disabled" msgstr "" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "నిర్మాణాకృతి" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "భోగట్టా" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "నిర్మాణాకృతి మరియు భోగట్టా" @@ -4263,13 +4286,13 @@ msgstr "" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "" @@ -4292,7 +4315,6 @@ msgstr "" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4332,23 +4354,22 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4357,14 +4378,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "" @@ -4401,7 +4422,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4414,7 +4435,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4431,7 +4452,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4440,7 +4461,7 @@ msgid "Export type" msgstr "ఎగుమతి రకం" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4493,7 +4514,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "" @@ -4552,7 +4572,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "" @@ -4778,7 +4797,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5858,9 +5876,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "సంకేతపదం" @@ -6026,7 +6046,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6048,19 +6067,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "మైక్రోసాఫ్ట్ వర్డ్ 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6117,25 +6133,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "వివరాలు..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6146,13 +6162,15 @@ msgid "Change password" msgstr "సంకేతపదాన్ని మార్చు" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "సంకేతపదం లేదు" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "మళ్ళీ టైపుచెయ్యండి" @@ -6178,8 +6196,9 @@ msgstr "పట్టికను సృష్టించు" msgid "Create" msgstr "సృష్టించు" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "" @@ -6189,12 +6208,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "పేరు" @@ -6329,7 +6348,7 @@ msgid "View output as text" msgstr "" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "" @@ -6785,52 +6804,52 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "నిర్మాణం మాత్రమే" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6903,11 +6922,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7167,7 +7186,7 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7277,70 +7296,70 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7348,24 +7367,24 @@ msgstr "" msgid "Definition" msgstr "వివరణ" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7381,248 +7400,239 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "వ్యాఖ్యలను చూపించు" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "మీడియావికీ పట్టిక" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Table name" msgid "Export table names" msgstr "పట్టిక పేరు" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "Export method" msgid "Export table headers" msgstr "ఎగుమతి పద్ధతి" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" # మొదటి అనువాదము -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Add into comments" msgid "Add statements:" msgstr "స్పందనలకు చేర్చు" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Table options" +msgid "Data creation options" +msgstr "పట్టిక ఎంపికలు" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" # మొదటి అనువాదము -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "చూపుము" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7691,6 +7701,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "మీడియావికీ పట్టిక" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7744,6 +7758,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7929,11 +7947,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "వివరణ లేదు" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "" @@ -7953,9 +7972,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "వాడుకరి పేరు" @@ -7991,34 +8011,43 @@ msgid "Add slave replication user" msgstr "" # మొదటి అనువాదము -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "ఏ వాడుకరి ఐనను" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "స్థానిక" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8032,7 +8061,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8073,8 +8102,8 @@ msgid "Edit event" msgstr "క్రొత్త వాడుకరిని చేర్చు" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -8160,7 +8189,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8306,25 +8336,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8477,28 +8507,28 @@ msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవ msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8634,6 +8664,441 @@ msgstr "తెలియని భాష: %1$s." msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "ఏమీలేవు" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "పరిపాలన" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "ప్రవేశపు సమాచారం" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "వాడుకరి" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "Database %s has been dropped." +msgid "User has been added." +msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" + +# మొదటి అనువాదము +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "ఏదైనను" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "వాడుకరి కనబడలేదు." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "ఎగుమతి" + +# మొదటి అనువాదము +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... పాతదే ఉంచుము" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "Overview" +msgid "Users overview" +msgstr "అవలోకనం" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +# మొదటి అనువాదము +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "మీరు క్రొత్త వాడుకరిని చేర్చారు." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8682,11 +9147,11 @@ msgstr "" msgid "Columns" msgstr "వ్యాఖ్యలు" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8958,12 +9423,6 @@ msgstr "చివరి కూర్పు" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "వాడుకరి" - # మొదటి అనువాదము #: main.php:217 #, fuzzy @@ -9487,431 +9946,20 @@ msgstr "" msgid "disabled" msgstr "గణాంకాలని అచేతనంచేయి" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "ఏమీలేవు" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "పరిపాలన" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "ప్రవేశపు సమాచారం" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "వాడుకరి కనబడలేదు." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "%s అనే వాడుకరి ఇప్పటికే ఉన్నారు!" -# మొదటి అనువాదము -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "మీరు క్రొత్త వాడుకరిని చేర్చారు." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "ఎగుమతి" - -# మొదటి అనువాదము -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "ఏదైనను" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "Overview" -msgid "Users overview" -msgstr "అవలోకనం" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -# మొదటి అనువాదము -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... పాతదే ఉంచుము" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "Database %s has been dropped." -msgid "User has been added." -msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11495,37 +11543,37 @@ msgstr "" msgid "Wrong data" msgstr "భోగట్టా" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" @@ -13285,6 +13333,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "PDF" +#~ msgstr "PDF" + #, fuzzy #~| msgid "Start" #~ msgid "rows" diff --git a/po/th.po b/po/th.po index 584a65cfce..638a294c15 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-04-21 15:20+0200\n" "Last-Translator: Setthawut Sawaengkit \n" "Language-Team: thai \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 0.10\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "แสดงทั้งหมด" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "ค้นหา" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "ค้นหา" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "ลงมือ" @@ -107,7 +110,7 @@ msgstr "ไม่สามารถเปิดไฟล์ %s ได้ เพ msgid "Database %1$s has been created." msgstr "ฐานข้อมูล %1$s ถูกสร้างเรียบร้อยแล้ว" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " @@ -117,17 +120,17 @@ msgstr "หมายเหตุของฐานข้อมูล: " msgid "Table comments" msgstr "หมายเหตุของตาราง" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -139,34 +142,34 @@ msgstr "สดมภ์" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "ชนิด" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -175,13 +178,13 @@ msgid "Null" msgstr "ว่างเปล่า (null)" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -189,10 +192,10 @@ msgstr "ว่างเปล่า (null)" msgid "Default" msgstr "ค่าปริยาย" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -201,10 +204,10 @@ msgstr "เชื่อมไปยัง" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -215,18 +218,21 @@ msgstr "หมายเหตุ" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "ไม่" @@ -239,19 +245,22 @@ msgstr "ไม่" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "ใช่" @@ -259,8 +268,8 @@ msgstr "ใช่" msgid "View dump (schema) of database" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "ไม่พบตารางใดๆ ในฐานข้อมูล" @@ -276,76 +285,76 @@ msgstr "ไม่เลือกเลย" msgid "The database name is empty!" msgstr "ไม่มีชื่อฐานข้อมูล" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "ฐานข้อมูล %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "คัดลอกฐานข้อมูล %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "เอาฐานข้อมูลออก" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "โยนฐานข้อมูลทิ้ง" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "คัดลอกฐานข้อมูลเป็น" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "เฉพาะข้อมูล" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "สร้างฐานข้อมูลก่อนคัดลอก" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "เพิ่ม %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "เพิ่ม constraints" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "สลับไปยังฐานข้อมูลที่ถูกทำสำเนาไว้" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -355,14 +364,14 @@ msgstr "สลับไปยังฐานข้อมูลที่ถูก msgid "Collation" msgstr "การเรียงลำดับ" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "การจัดเก็บการตั้งค่าของ phpMyAdmin ได้ถูกระงับเอาไว้ คลิก %shere%s เพื่อหาสาเหตุ" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา" @@ -372,16 +381,18 @@ msgstr "แก้ไข หรือส่งออก รีเลชันแ #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "ตาราง" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "แถว" @@ -391,13 +402,13 @@ msgid "Size" msgstr "ขนาด" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "ใช้อยู่" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -405,7 +416,7 @@ msgstr "สร้างเมื่อ" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -413,7 +424,7 @@ msgstr "ปรับปรุงครั้งสุดท้ายเมื่ #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -425,92 +436,15 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s ตาราง" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "น้อยไปมาก" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "มากไปน้อย" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "เรียง" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "แสดง" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "เงื่อนไข" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "เพิ่ม/ลบ แถว" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "เพิ่ม/ลบ สดมภ์" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "ปรับปรุงคำค้น" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "ใช้ตาราง" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "หรือ" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "และ" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "เพิ่ม" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "ลบ" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "แก้ไข" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "สลับไปยัง %svisual builder%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "คำค้นบนฐานข้อมูล %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "ประมวลผลคำค้น" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -551,7 +485,7 @@ msgstr "การติดตามเริ่มทำงานแล้ว" msgid "Tracking is not active." msgstr "หยุดการติดตามแล้ว" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -579,20 +513,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "ทำกับที่เลือก:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "เลือกทั้งหมด" @@ -600,31 +535,32 @@ msgstr "เลือกทั้งหมด" msgid "Check tables having overhead" msgstr "ตรวจสอบตารางที่มี overhead" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ส่งออก" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "แสดง" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "ลบข้อมูล" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -668,17 +604,18 @@ msgstr "ตารางที่ถูกติดตาม" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "ฐานข้อมูล" @@ -696,18 +633,26 @@ msgstr "ปรับปรุงแล้ว" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "สถานะ" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "กระทำการ" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "แสดง" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "ลบการติดตามตารางนี้" @@ -748,31 +693,31 @@ msgstr "Log ของฐานข้อมูล" msgid "Bad type!" msgstr "ประเภทไม่ถูกต้อง!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "ชนิดการส่งออกที่ถูกเลือกต้องถูกบันทึกลงไฟล์" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "พารามิเตอร์ไม่ถูกต้อง!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "พื้นที่ไม่เพียงพอที่จะบันทึกไฟล์ %s" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "ให้เปลี่ยนชื่อไฟล์ หรือเลือกแบบเขียนทับไฟล์เดิม เพราะมีไฟล์ %s อยู่ในเซิร์ฟเวอร์อยู่แล้ว" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "บันทึกไฟล์ %s ไม่ได้ เพราะเว็บเซิร์ฟเวอร์ไม่อนุญาติ" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "ข้อมูลที่ส่งออกถูกบันทึกไว้ในไฟล์ %s" @@ -795,7 +740,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "เรขาคณิต" @@ -866,7 +811,7 @@ msgid "" "string into the \"Value\" field" msgstr "เลือก \"GeomFromText\" จากแถวฟังก์ชั่น และวางลงในข้อความช่อง \"ค่า\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -875,20 +820,20 @@ msgstr "" "คุณพยายามที่จะอับโหลดไฟล์ที่มีขนาดใหญ่เกินไป กรุณาดูที่ %sdocumentation%s เอกสารช่วยเหลือ " "เพื่อแก้ไขปัญหาดังกล่าวนี้ " -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "แสดงบุ๊คมาร์ค" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "ลบคำค้นที่จดไว้เรียบร้อยแล้ว" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "อ่านไฟล์ไม่ได้" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -898,7 +843,7 @@ msgstr "" "คุณพยายามที่จะโหลดไฟล์ที่ไม่สนับสนุนระบบการบีบอัดไฟล์ข้อมูล (%s) กรุณากำหนดค่าอย่างไรอย่างหนึ่ง " "หรือปิดการตั้งค่าของคุณ" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -908,32 +853,32 @@ msgstr "" "กรุณาแก้ไขไฟล์ตั้งค่าของ PHP ดูเอกสารเพิ่มเติมได้ที่ [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "ไม่สามารถแปลงไฟล์ข้อมูลชุดอักขระได้ในไลค์บารี" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "ไม่สามารถโหลดนำเข้าปลั๊กอินได้ กรุณาตรวจสอบการติดตั้งของคุณ" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "นำเข้าได้สำเร็จ %d ได้ถูกนำเดินการแล้ว" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "หมดเวลาการนำเข้าสริปแล้ว กรุณานำเข้าไฟล์สริปใหม่" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -941,8 +886,8 @@ msgstr "" "ชุดข้อมูลที่นำเข้าล่าสุดไม่ได้สามารถนำเข้าได้ หมายความว่า phpMyAdmin ไม่สามารถนำเข้าได้ทัน " "ตามเวลารันสูงสุดที่กำหนดใน PHP" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -957,7 +902,7 @@ msgstr "ย้อนกลับ" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "เบราเซอร์ที่ใช้เฟรมได้ จะช่วยให้ใช้ phpMyAdmin ได้ง่ายขึ้น" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "คำสั่ง \"ทิ้งฐานข้อมูล\" ถูกปิดไว้" @@ -967,7 +912,7 @@ msgstr "คำสั่ง \"ทิ้งฐานข้อมูล\" ถูก msgid "Do you really want to execute \"%s\"?" msgstr "คุณแน่ใจที่ต้องการจะ" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "คุณกำลังจะทำลายฐาข้อมูลทั้งหมด!" @@ -1025,16 +970,20 @@ msgstr "ชื่อโฮสต์ยังว่างอยู่!" msgid "The user name is empty!" msgstr "ชื่อผู้ใช้ยังว่างอยู่!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "รหัสผ่านยังว่างอยู่!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "รหัสผ่านไม่ตรงกัน!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "เพิ่มผู้ใช้" @@ -1054,9 +1003,9 @@ msgstr "ปิด" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1300,12 +1249,13 @@ msgstr "เพิ่มแสดงผลไปในตารางข้อม msgid "Please add at least one variable to the series" msgstr "กรุณาเพิ่มค่าตัวแปรอย่างน้อยหนึ่งตัวเข้าไปในลำดับ" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "ไม่มี" @@ -1485,10 +1435,10 @@ msgid "Explain output" msgstr "อธิบายผลคำสั่ง" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "เวลา" @@ -1788,7 +1738,7 @@ msgstr "แสดงช่องคำค้น SQL" msgid "No rows selected" msgstr "ยังไม่ได้เลือกแถว" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "เปลี่ยน" @@ -1797,8 +1747,8 @@ msgstr "เปลี่ยน" msgid "Query execution time" msgstr "เวลาที่ทำคำสั่ง" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1871,7 +1821,7 @@ msgstr "สารบัญ" msgid "Ignore" msgstr "ข้าม" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "คัดลอก" @@ -2354,14 +2304,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "ผิดพลาด" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "คำค้น SQL" @@ -2372,7 +2322,7 @@ msgstr "คำค้น SQL" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2401,6 +2351,10 @@ msgstr "ไม่เอาโค้ด PHP" msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "ประมวลผลคำค้น" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2425,7 +2379,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2454,7 +2408,7 @@ msgstr "เพิ่มฟิลด์ใหม่" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2463,7 +2417,7 @@ msgstr "จุดเริ่มต้น" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2473,7 +2427,7 @@ msgstr "ก่อนหน้า" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2483,7 +2437,7 @@ msgstr "ต่อไป" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2506,16 +2460,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "โครงสร้าง" @@ -2523,21 +2478,20 @@ msgstr "โครงสร้าง" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "แทรก" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "เปิดดู" @@ -2559,21 +2513,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "พิมพ์" @@ -2590,6 +2544,74 @@ msgstr "สิทธิสำหรับไฟล์ตั้งค่าไม msgid "Font size" msgstr "ขนาดตัวอักษร" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "น้อยไปมาก" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "มากไปน้อย" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "เรียง" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "เงื่อนไข" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "เพิ่ม/ลบ แถว" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "เพิ่ม/ลบ สดมภ์" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "ปรับปรุงคำค้น" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "ใช้ตาราง" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "หรือ" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "และ" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "เพิ่ม" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "ลบ" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "แก้ไข" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "คำค้นบนฐานข้อมูล %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "อย่างน้อยหนึ่งคำ" @@ -2630,8 +2652,8 @@ msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตารา msgid "Delete the matches for the %s table?" msgstr "ลบตรงกับที่ตาราง %s หรือไม่?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2666,72 +2688,72 @@ msgstr "ภายในตาราง:" msgid "Inside column:" msgstr "ในคอลัมน์:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "ส." -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows" msgstr "ระเบียนต่อหน้า" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "จ." -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "แนวนอน" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "แนวนอน (หมุนหัวเรื่อง)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "แนวตั้ง" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "เรียงโดยคีย์" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2745,114 +2767,114 @@ msgstr "เรียงโดยคีย์" msgid "Options" msgstr "กระบวนการ" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "ข้อความบางส่วน" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "ทั้งข้อความ" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "รีเลชันแนล สกีมา" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "รีเลชันแนล สกีมา" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy msgid "Hide browser transformation" msgstr "การแปลงที่เรียกใช้ได้" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "ในคำค้น" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "แสดงระเบียนที่ " -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "ทั้งหมด" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "แสดงสกีมาของ PDF" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "ไม่พบลิงก์" @@ -2974,8 +2996,8 @@ msgid "" msgstr "ดัชนี %1$s และ %2$s น่าจะเป็นอันเดียวกัน ควรจะลบออกไปอันหนึ่ง" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "ฐานข้อมูล" @@ -2991,11 +3013,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3013,9 +3035,9 @@ msgstr "" msgid "Query" msgstr "คำค้นจากตัวอย่าง" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "สิทธิ" @@ -3024,7 +3046,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3120,44 +3142,44 @@ msgstr "%s ถูกปิดบน MySQL Server" msgid "This MySQL server does not support the %s storage engine." msgstr "MySQL ไม่รองรับ %s" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "ไม่ทราบสถานะตาราง: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "ชื่อฐานข้อมูลไม่ถูกต้อง" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "ชื่อตารางไม่ถูกต้อง" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "มีข้อผิดพลาดจากเปลี่ยนชื่อตาราง %1$s เป็น %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "ไม่สามารถบันทึกการกำหนดลักษณะตาราง UI" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3166,7 +3188,7 @@ msgstr "" "มีปัญหาในการล้างข้อมูลการตั้งค่าตาราง UL (ดูได้ที่ $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3175,7 +3197,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "ฟังก์ชั่น" @@ -3188,7 +3210,7 @@ msgstr "กระบวนการ" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3233,7 +3255,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3594,7 +3616,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "ตาราง" @@ -3605,9 +3627,10 @@ msgstr "ตาราง" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "ข้อมูล" @@ -3730,33 +3753,33 @@ msgid "Disabled" msgstr "ระงับการใช้อยู่" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "โครงสร้าง" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4179,13 +4202,13 @@ msgstr "บีบอัดข้อมูล" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4214,7 +4237,6 @@ msgstr "เครื่องหมายสำหรับ escape char" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "แทนที่ NULL เป็น" @@ -4259,25 +4281,24 @@ msgstr "รูปแบบของชื่อไฟล์" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s ตาราง" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "คำอธิบายตาราง" @@ -4288,14 +4309,14 @@ msgid "Continued table caption" msgstr "คำอธิบายตาราง" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-type" @@ -4337,7 +4358,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4351,7 +4372,7 @@ msgid "Use delayed inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4370,7 +4391,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4380,7 +4401,7 @@ msgid "Export type" msgstr "ไม่มีตาราง" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4433,7 +4454,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "ข้อมูล CSV (คั่นด้วยเครื่องหมายลูกน้ำ \",\")" @@ -4494,7 +4514,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4730,7 +4749,6 @@ msgid "Customize text input fields" msgstr "ใช้ช่องใส่ข้อความ (text field)" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5843,9 +5861,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "รหัสผ่าน" @@ -6012,7 +6032,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6035,19 +6054,16 @@ msgstr "สถิติฐานข้อมูล" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "ข้อมูล CSV สำหรับไมโครซอฟต์เอ็กเซล" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6103,27 +6119,27 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6134,13 +6150,15 @@ msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "ไม่มีรหัสผ่าน" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "พิมพ์ใหม่" @@ -6163,8 +6181,9 @@ msgstr "สร้างฐานข้อมูลใหม่" msgid "Create" msgstr "สร้าง" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "ไม่มีสิทธิ" @@ -6175,12 +6194,12 @@ msgid "Create table" msgstr "เริ่มหน้าใหม่" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "ชื่อ" @@ -6344,7 +6363,7 @@ msgid "View output as text" msgstr "ส่งมาเป็นไฟล์" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6807,51 +6826,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "เฉพาะโครงสร้าง" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6923,11 +6942,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7182,7 +7201,7 @@ msgstr "เอกสารการใช้ phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7291,82 +7310,82 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "จบแถวด้วย" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "คร่อมฟิลด์ด้วย" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "เครื่องหมายสำหรับ escape char" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "จบแถวด้วย" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "แทนที่ NULL เป็น" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "สถิติฐานข้อมูล" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "dump ตาราง" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "ถูกส่ง" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7374,25 +7393,25 @@ msgstr "ถูกส่ง" msgid "Definition" msgstr "รายละเอียด" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "โครงสร้างตาราง" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "เฉพาะโครงสร้าง" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7410,259 +7429,250 @@ msgstr "(ต่อ)" msgid "Structure of table @TABLE@" msgstr "โครงสร้างตาราง" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "ตัวเลือกการแปลง" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "คำอธิบายตาราง" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "MIME-types ที่มีอยู่" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "โฮสต์" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "เวลาในการสร้าง" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "รุ่นของ PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export" msgid "Export table names" msgstr "ส่งออก" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "แนวนอน (หมุนหัวเรื่อง)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "นำเข้าไฟล์" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "คำสั่ง" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "คำสั่ง" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "ตัวเลือกการแปลง" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "โพรเซส" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "ฟังก์ชั่น" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "อนุญาตให้อ่านข้อมูลได้." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7731,6 +7741,10 @@ msgstr "ชื่อคอลัมน์" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7784,6 +7798,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7978,11 +7996,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "ไม่มีรายละเอียด" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "ไม่เลือกเลย" @@ -8002,9 +8021,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "ชื่อผู้ใช้" @@ -8041,34 +8061,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "ผู้ใช้ใดๆ" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "โฮสต์ใดๆ" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "โลคอล" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "โฮสต์นี้" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8082,7 +8111,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8120,8 +8149,8 @@ msgid "Edit event" msgstr "ถูกส่ง" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8207,7 +8236,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8352,24 +8382,24 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8519,29 +8549,29 @@ msgstr "ไม่พบตารางใด ๆ ในฐานข้อมู msgid "There are no events to display." msgstr "ไม่มีเหตุการณ์ใดๆ" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "ไม่มีตาราง \"%s\"!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "กรุณาตั้งค่าโคออร์ดิเนตของตาราง %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8689,6 +8719,451 @@ msgstr "" msgid "Current Server" msgstr "เซิร์ฟเวอร์" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "ไม่มีสิทธิใดๆ." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "อนุญาตให้อ่านข้อมูลได้." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "อนุญาตให้เปลี่ยนข้อมูลได้." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "อนุญาตให้ลบข้อมูล" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "ไม่มีผลใน MySQL รุ่นนี้" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "อนุญาตให้สร้างตารางชั่วคราว." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +#, fuzzy +msgid "Allows creating new views." +msgstr "อนุญาตให้สร้างตารางใหม่." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +#, fuzzy +msgid "Allows creating stored routines." +msgstr "อนุญาตให้สร้างตารางใหม่." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +#, fuzzy +msgid "Allows altering and dropping stored routines." +msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "ไม่มี" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "ขีดจำกัดของทรัพยากร" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "สิทธิเจาะจงเฉพาะตาราง" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ " + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "การดูแลระบบ" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "สิทธิแบบโกลบอล" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "อนุญาตให้สร้างตารางใหม่." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "อนุญาตให้ทิ้งตาราง" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "ข้อมูลล็อกอิน" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "คุณได้เพิกถอนสิทธิของ %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "มอบสิทธิทั้งหมดสำหรับฐานข้อมูล "%s"." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "ผู้ใช้" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "มอบสิทธิ" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "ใดๆ" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "โกลบอล" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "เฉพาะฐานข้อมูล" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "ไวล์การ์ด" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "ไม่พบผู้ใช้ใดๆ." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "แก้ไขสิทธิ" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "เพิกถอน" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "ส่งออก" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... เก็บของเก่าไว้." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... ลบของเก่าทิ้งไปจากตารางผู้ใช้." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "สิทธิเฉพาะคอลัมน์" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "เพิ่มสิทธิของตารางต่อไปนี้" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "ถอนผู้ใช้ที่เลือก" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "สิทธิ" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "สิทธิ" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "ข้อมูลทั่วไปของผู้ใช้" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -8740,11 +9215,11 @@ msgstr "ปฏิทิน" msgid "Columns" msgstr "ชื่อคอลัมน์" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -9033,12 +9508,6 @@ msgstr "รุ่นของเซิร์ฟเวอร์" msgid "Protocol version" msgstr "รุ่นของโพรโทคอล" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "ผู้ใช้" - #: main.php:217 msgid "Server charset" msgstr "ชุดอักขระเซิร์ฟเวอร์" @@ -9587,441 +10056,20 @@ msgstr "" msgid "disabled" msgstr "ระงับการใช้อยู่" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -#, fuzzy -msgid "Allows altering and dropping stored routines." -msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -#, fuzzy -msgid "Allows creating stored routines." -msgstr "อนุญาตให้สร้างตารางใหม่." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "อนุญาตให้สร้างตารางใหม่." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "อนุญาตให้สร้างตารางชั่วคราว." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -#, fuzzy -msgid "Allows creating new views." -msgstr "อนุญาตให้สร้างตารางใหม่." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "อนุญาตให้ลบข้อมูล" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "อนุญาตให้ทิ้งตาราง" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "ไม่มีผลใน MySQL รุ่นนี้" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "อนุญาตให้อ่านข้อมูลได้." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "อนุญาตให้เปลี่ยนข้อมูลได้." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "ไม่มีสิทธิใดๆ." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "ไม่มี" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "สิทธิเจาะจงเฉพาะตาราง" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ " - -#: server_privileges.php:724 -msgid "Administration" -msgstr "การดูแลระบบ" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "สิทธิแบบโกลบอล" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "ขีดจำกัดของทรัพยากร" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "ข้อมูลล็อกอิน" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "ไม่พบผู้ใช้ใดๆ." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "คุณได้เพิกถอนสิทธิของ %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "กำลังลบ %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "แก้ไขสิทธิ" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "เพิกถอน" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "ส่งออก" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "ใดๆ" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "สิทธิ" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "สิทธิ" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "ข้อมูลทั่วไปของผู้ใช้" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "มอบสิทธิ" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "ถอนผู้ใช้ที่เลือก" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "สิทธิเฉพาะคอลัมน์" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "เพิ่มสิทธิของตารางต่อไปนี้" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... เก็บของเก่าไว้." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... ลบของเก่าทิ้งไปจากตารางผู้ใช้." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "มอบสิทธิทั้งหมดสำหรับฐานข้อมูล "%s"." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "โกลบอล" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "เฉพาะฐานข้อมูล" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "ไวล์การ์ด" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11618,41 +11666,41 @@ msgstr "" msgid "Wrong data" msgstr "ไม่มีฐานข้อมูล" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "คุณแน่ใจที่ต้องการจะ" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "ตรวจสอบ SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "ผลลัพธ์ SQL" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "สร้างโดย" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "ป้ายชื่อ" diff --git a/po/tk.po b/po/tk.po index 06a58143dc..e51d50d8c4 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-03-23 10:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen \n" @@ -19,7 +19,8 @@ msgstr "" "X-Generator: Weblate 0.8\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Hemmesini görkez" @@ -44,16 +45,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Gözle" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -63,24 +64,26 @@ msgstr "Gözle" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Git" @@ -114,7 +117,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s maglumatlar ulgamy döredildi" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "" @@ -124,17 +127,17 @@ msgstr "" msgid "Table comments" msgstr "" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -146,34 +149,34 @@ msgstr "" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -182,13 +185,13 @@ msgid "Null" msgstr "" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -196,10 +199,10 @@ msgstr "" msgid "Default" msgstr "" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -208,10 +211,10 @@ msgstr "" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -222,18 +225,21 @@ msgstr "" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "" @@ -246,19 +252,22 @@ msgstr "" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "" @@ -266,8 +275,8 @@ msgstr "" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "" @@ -283,76 +292,76 @@ msgstr "" msgid "The database name is empty!" msgstr "" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s maglumatlar ulgamy döredildi" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Database %1$s has been copied to %2$s" msgstr "%1$s maglumatlar ulgamy döredildi" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -362,14 +371,14 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "" @@ -379,16 +388,18 @@ msgstr "" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "" @@ -398,13 +409,13 @@ msgid "Size" msgstr "" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -412,7 +423,7 @@ msgstr "" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -420,7 +431,7 @@ msgstr "" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -433,92 +444,15 @@ msgid_plural "%s tables" msgstr[0] "" msgstr[1] "" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -559,7 +493,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -587,20 +521,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "" @@ -608,31 +543,32 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -676,17 +612,18 @@ msgstr "" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "" @@ -704,18 +641,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -756,31 +701,31 @@ msgstr "" msgid "Bad type!" msgstr "" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -803,7 +748,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -874,27 +819,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -902,46 +847,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -956,7 +901,7 @@ msgstr "" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -965,7 +910,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1023,16 +968,20 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "" @@ -1052,9 +1001,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1296,12 +1245,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "" @@ -1471,10 +1421,10 @@ msgid "Explain output" msgstr "" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "" @@ -1760,7 +1710,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "" @@ -1769,8 +1719,8 @@ msgstr "" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1841,7 +1791,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2314,14 +2264,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "" @@ -2332,7 +2282,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2361,6 +2311,10 @@ msgstr "" msgid "Create PHP Code" msgstr "" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2385,7 +2339,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2412,14 +2366,14 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2427,7 +2381,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2435,7 +2389,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "" @@ -2456,16 +2410,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "" @@ -2473,21 +2428,20 @@ msgstr "" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "" @@ -2508,21 +2462,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "" @@ -2539,6 +2493,74 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "" @@ -2579,8 +2601,8 @@ msgstr[1] "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2615,64 +2637,64 @@ msgstr "" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2685,103 +2707,103 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "" @@ -2899,8 +2921,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "" @@ -2916,11 +2938,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -2938,9 +2960,9 @@ msgstr "" msgid "Query" msgstr "" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "" @@ -2949,7 +2971,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3045,51 +3067,51 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s maglumatlar ulgamy döredildi" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3098,7 +3120,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3110,7 +3132,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3149,7 +3171,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3496,7 +3518,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "" @@ -3507,9 +3529,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "" @@ -3623,32 +3646,32 @@ msgid "Disabled" msgstr "" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "" @@ -4046,13 +4069,13 @@ msgstr "" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "" @@ -4075,7 +4098,6 @@ msgstr "" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "" @@ -4115,23 +4137,22 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "" @@ -4140,14 +4161,14 @@ msgid "Continued table caption" msgstr "" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "" @@ -4184,7 +4205,7 @@ msgid "SQL compatibility mode" msgstr "" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4197,7 +4218,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4214,7 +4235,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4223,7 +4244,7 @@ msgid "Export type" msgstr "" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4276,7 +4297,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "" @@ -4335,7 +4355,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "" @@ -4548,7 +4567,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5614,9 +5632,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5778,7 +5798,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -5800,19 +5819,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -5868,25 +5884,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -5897,13 +5913,15 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "" @@ -5924,8 +5942,9 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "" @@ -5935,12 +5954,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "" @@ -6074,7 +6093,7 @@ msgid "View output as text" msgstr "" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "" @@ -6524,50 +6543,50 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6636,11 +6655,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6886,7 +6905,7 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -6993,93 +7012,93 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7095,238 +7114,227 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +msgid "Data creation options" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7393,6 +7401,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7446,6 +7458,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7629,11 +7645,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "" @@ -7653,9 +7670,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -7690,34 +7708,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7731,7 +7758,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7767,8 +7794,8 @@ msgid "Edit event" msgstr "" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -7844,7 +7871,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -7972,25 +8000,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8119,28 +8147,28 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8275,6 +8303,432 @@ msgstr "" msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8321,11 +8775,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -8575,12 +9029,6 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "" - #: main.php:217 msgid "Server charset" msgstr "" @@ -9068,422 +9516,20 @@ msgstr "" msgid "disabled" msgstr "" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11027,37 +11073,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" diff --git a/po/tr.po b/po/tr.po index 3046616b23..604788fa14 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" -"PO-Revision-Date: 2012-06-28 12:41+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" +"PO-Revision-Date: 2012-07-27 17:50+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Tümünü göster" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Ara" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Ara" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Git" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Veritabanı yorumu: " @@ -120,17 +123,17 @@ msgstr "Veritabanı yorumu: " msgid "Table comments" msgstr "Tablo yorumları" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Sütun" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Türü" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Boş" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Boş" msgid "Default" msgstr "Varsayılan" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Bağlantı verilen:" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Yorumlar" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Hayır" @@ -242,19 +248,22 @@ msgstr "Hayır" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Evet" @@ -262,8 +271,8 @@ msgstr "Evet" msgid "View dump (schema) of database" msgstr "Veritabanının dökümünü (şemasını) göster" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Veritabanında tablo bulunamadı." @@ -279,74 +288,74 @@ msgstr "Tüm Seçimi Kaldır" msgid "The database name is empty!" msgstr "Veritabanı adı boş!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s veritabanı %2$s olarak yeniden adlandırıldı" -#: db_operations.php:332 +#: db_operations.php:331 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s veritabanı %2$s veritabanına kopyalandı" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Veritabanını kaldır" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s veritabanı kaldırıldı." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Veritabanını kaldır (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Veritabanını şuraya kopyala:" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Sadece yapı" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Yapı ve veri" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Sadece veri" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s ekle" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Kısıtlamaları ekle" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Kopyalanmış veritabanına geç" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -356,7 +365,7 @@ msgstr "Kopyalanmış veritabanına geç" msgid "Collation" msgstr "Karşılaştırma" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -365,7 +374,7 @@ msgstr "" "phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. Nedenini öğrenmek " "için %sburaya%s tıklayın." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Bağlantılı şemayı dışa aktar veya düzenle" @@ -375,16 +384,18 @@ msgstr "Bağlantılı şemayı dışa aktar veya düzenle" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tablo" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Satır" @@ -394,13 +405,13 @@ msgid "Size" msgstr "Boyut" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "kullanımda" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -408,7 +419,7 @@ msgstr "Oluşturma" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -416,7 +427,7 @@ msgstr "Son güncellenme" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -428,92 +439,15 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tablo" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Görüntülemek için en az bir sütun seçmelisiniz" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Küçükten Büyüğe" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Büyükten Küçüğe" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sırala" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Göster" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriter" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Kriter satırı Ekle/Sil" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Sütun Ekle/Sil" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Sorguyu Güncelle" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Tabloları kullan" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Veya" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Ve" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Değiştir" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sGörsel yaratıcı'ya%s geç" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "%s veritabanındaki SQL sorgusu:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Sorguyu Gönder" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -554,7 +488,7 @@ msgstr "İzleme aktif." msgid "Tracking is not active." msgstr "İzleme aktif değil." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -583,20 +517,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Seçilileri:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Tümünü Seç" @@ -604,31 +539,32 @@ msgstr "Tümünü Seç" msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Dışa Aktar" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Boşalt" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -672,17 +608,18 @@ msgstr "İzlenen tablolar" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Veritabanı" @@ -700,18 +637,26 @@ msgstr "Güncellendi" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Durum" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Eylem" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Göster" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Bu tablo için izleme verisini sil" @@ -752,20 +697,20 @@ msgstr "Veritabanı Günlüğü" msgid "Bad type!" msgstr "Kötü tür!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Seçili dışa aktarma türü dosyaya kaydedilmelidir!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Kötü parametreler!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s dosyasını kaydetmek için yetersiz alan." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -773,12 +718,12 @@ msgstr "" "%s dosyası zaten sunucuda var, dosya adını değiştirin veya üzerine yazma " "seçeneğini işaretleyin." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web sunucusu %s dosyasını kaydetmek için izne sahip değil." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Döküm, %s dosyasına kaydedildi." @@ -801,7 +746,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Geometri" @@ -874,7 +819,7 @@ msgstr "" "\"Function\" sütunundan \"GeomFromText\" seçin ve \"Value\" alanı içine " "alttaki dizgiyi yapıştırın" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -883,20 +828,20 @@ msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu " "bulmak için %sbelgeden%s yararlanın." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Gösterilen işaret" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "İşaretleme silindi." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Dosya okunamadı" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -906,7 +851,7 @@ msgstr "" "Desteklenmeyen sıkıştırmayla (%s) dosya yüklemeyi denediniz. Ya bunun için " "destek henüz tamamlanmadı ya da yapılandırmanız tarafından etkisizleştirildi." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -916,28 +861,28 @@ msgstr "" "boyutu PHP yapılandırmanız tarafından izin verilen en fazla boyutu aştı. " "[a@./Documentation.html#faq1_16@Documentation]SSS 1.16[/a]'ya bakın." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Karakter grubu dönüştürme kütüphanesi olmadan dosyanın karakter grubu " "dönüştürülemez" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "İşaretleme %s oluşturuldu" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -945,7 +890,7 @@ msgstr "" "Betik zaman aşımı geçti, eğer içe aktarmayı bitirmek istiyorsanız, lütfen " "aynı dosyayı yeniden gönderin ve içe aktarma devam edecektir." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -954,8 +899,8 @@ msgstr "" "sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içe aktarmayı " "biteremeyeceği anlamına gelir." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -971,7 +916,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin, çerçeve-kabiliyeti olan tarayıcı ile daha kullanışlıdır." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." @@ -980,7 +925,7 @@ msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." msgid "Do you really want to execute \"%s\"?" msgstr "\"%s\" sorgusunu çalıştırmak istediğinize emin misiniz?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" @@ -1038,16 +983,20 @@ msgstr "Anamakine adı boş!" msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Kullanıcı ekle" @@ -1067,9 +1016,9 @@ msgstr "Kapat" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1315,12 +1264,13 @@ msgstr "Çizelgeyi ızgaraya ekle" msgid "Please add at least one variable to the series" msgstr "Lütfen diziye en az bir değişken ekleyin" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Yok" @@ -1503,10 +1453,10 @@ msgid "Explain output" msgstr "Çıktıyı açıkla" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Süre" @@ -1801,7 +1751,7 @@ msgstr "Sorgu kutusunu göster" msgid "No rows selected" msgstr "Satır seçilmedi" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Değiştir" @@ -1810,8 +1760,8 @@ msgstr "Değiştir" msgid "Query execution time" msgstr "Sorgu yürütme süresi" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d geçerli bir satır sayısı değil." @@ -1887,7 +1837,7 @@ msgstr "Veri imleci içeriği" msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Kopyala" @@ -2374,14 +2324,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Hata" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL sorgusu" @@ -2392,7 +2342,7 @@ msgstr "SQL sorgusu" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2421,6 +2371,10 @@ msgstr "PHP Kodsuz" msgid "Create PHP Code" msgstr "PHP Kodu oluştur" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Sorguyu Gönder" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2445,7 +2399,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Sıralı" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profil çıkart" @@ -2472,14 +2426,14 @@ msgstr "Eksik parametreler:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Başlangıç" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2487,7 +2441,7 @@ msgstr "Önceki" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2495,7 +2449,7 @@ msgstr "Sonraki" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "Son" @@ -2516,16 +2470,17 @@ msgstr "Değiştirmek için tıklayın" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Yapı" @@ -2533,21 +2488,20 @@ msgstr "Yapı" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Ekle" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Gözat" @@ -2568,21 +2522,21 @@ msgstr "Bilgisayarınıza gözat:" msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Göndermek için hiç dosya yok" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Çalıştır" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Yazdır" @@ -2600,6 +2554,74 @@ msgstr "" msgid "Font size" msgstr "Yazı Tipi boyutu" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Küçükten Büyüğe" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Büyükten Küçüğe" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sırala" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriter" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Kriter satırı Ekle/Sil" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Sütun Ekle/Sil" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Sorguyu Güncelle" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Tabloları kullan" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Veya" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Ve" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Değiştir" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "%s veritabanındaki SQL sorgusu:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "kelimelerin en azından biri" @@ -2638,8 +2660,8 @@ msgstr[0] "%2$s tablosu içerisinde %1$s eşleşme" msgid "Delete the matches for the %s table?" msgstr "%s tablosu için benzeşenler silinsin mi?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2674,64 +2696,64 @@ msgstr "Tablo içindekiler:" msgid "Inside column:" msgstr "İç sütun:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "Düzenlenen veriyi kaydet" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "Sütun düzenini geri yükle" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "Başlangıç satırı" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "Satır sayısı" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "Kip" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "yatay" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "yatay (döndürülmüş başlıklar)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "dikey" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "Her %s satırda bir başlıklar" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Anahtara göre sırala" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2744,60 +2766,60 @@ msgstr "Anahtara göre sırala" msgid "Options" msgstr "Seçenekler" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "Kısmi metinler" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "Tam metinler" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Bağlantılı anahtar" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "Bağlantılı görüntü sütunu" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Binari içerikleri göster" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "BLOB içerikleri göster" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Binari içerikleri HEX olarak göster" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "Tarayıcı dönüşümünü gizle" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "Çok İyi Bilinen Metin" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "Çok İyi Bilinen Binari" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Satır silindi" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Sonlandır" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2805,44 +2827,44 @@ msgstr "" "Yaklaşık olabilir. [a@./Documentation.html#faq3_11@Documentation]SSS 3.11[/" "a]'e bakın" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "sorgu içerisinde" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Gösterilen satırlar" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "toplam" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Baskı görünümü (tüm metinler ile)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "GIS verisini görselleştir" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "Görünüm oluştur" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Bağlantı bulunamadı" @@ -2969,8 +2991,8 @@ msgstr "" "olabilir." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Veritabanları" @@ -2986,11 +3008,11 @@ msgid "Tracking" msgstr "İzleme" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Tetikleyiciler" @@ -3008,9 +3030,9 @@ msgstr "Veritabanı boş olarak görünüyor!" msgid "Query" msgstr "Sorgu" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Yetkiler" @@ -3019,7 +3041,7 @@ msgid "Routines" msgstr "Yordamlar" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Olaylar" @@ -3112,43 +3134,43 @@ msgstr "%s bu MySQL sunucusu için etkisizleştirildi." msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "bilinmeyen tablo durumu: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "Kaynak veritabanı `%s` bulunamadı!" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, php-format msgid "Target database `%s` was not found!" msgstr "Hedef veritabanı `%s` bulunamadı!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Geçersiz veritabanı" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Geçersiz tablo adı" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s tablo adını %2$s tablo adına değiştirme hatası" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s tablosu %2$s olarak yeniden adlandırıldı." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Tablo KA tercihleri kaydedilemedi" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3157,7 +3179,7 @@ msgstr "" "Tablo KA tercihlerini temizleme başarısız ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s bakın)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3169,7 +3191,7 @@ msgstr "" "lütfen kontrol edin." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "İşlev" @@ -3181,7 +3203,7 @@ msgstr "İşletici" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3220,7 +3242,7 @@ msgid "Maximum rows to plot" msgstr "Çizim için en fazla satır" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Dış değerlere gözat" @@ -3633,7 +3655,7 @@ msgstr "paylaşılmış" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tablolar" @@ -3644,9 +3666,10 @@ msgstr "Tablolar" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Veri" @@ -3766,32 +3789,32 @@ msgid "Disabled" msgstr "Etkisiz" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "yapı" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "veri" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "yapı ve veri" @@ -4218,13 +4241,13 @@ msgstr "Sıkıştırma" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "İlk satır içine sütun adlarını koy" @@ -4247,7 +4270,6 @@ msgstr "Sütunu dolduran:" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL'u bunla değiştir:" @@ -4287,23 +4309,22 @@ msgstr "Tablo adı şablonu" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Tabloyu dökümle" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Tablo başlığını dahil et" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Tablo başlığı" @@ -4312,14 +4333,14 @@ msgid "Continued table caption" msgstr "Devam eden tablo başlığı" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Etiket anahtarı" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME türü" @@ -4356,7 +4377,7 @@ msgid "SQL compatibility mode" msgstr "SQL uyumluluk kipi" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE seçenekleri:" @@ -4369,7 +4390,7 @@ msgid "Use delayed inserts" msgstr "Gecikmiş eklemeleri kullan" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Dış anahtar kontrolünü etkisizleştir" @@ -4386,7 +4407,7 @@ msgid "Syntax to use when inserting data" msgstr "Veri eklenirken kullanılacak sözdizimi" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Oluşturulan sorgunun azami uzunluğu" @@ -4395,7 +4416,7 @@ msgid "Export type" msgstr "Dışa aktarma türü" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "İşlem içinde dışa aktarmayı kapsa" @@ -4450,7 +4471,6 @@ msgstr "Varsayılan seçenekleri özelleştirir" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4509,7 +4529,6 @@ msgid "Set import and export directories and compression options" msgstr "İçe ve dışa aktarma dizinlerini ve sıkıştırma seçeneklerini ayarlar" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4741,7 +4760,6 @@ msgid "Customize text input fields" msgstr "Metin girdi alanlarını özelleştirir" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! metni" @@ -5952,9 +5970,11 @@ msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Parola" @@ -6132,7 +6152,6 @@ msgstr "VERİ YÜKLE kullanarak CSV" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Açık Kaynaklı Tablolama Belgesi" @@ -6154,19 +6173,16 @@ msgstr "Veritabanı dışa aktarma seçenekleri" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excel için CSV" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "Açık Belge Metni" @@ -6225,7 +6241,7 @@ msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin." msgid "possible deep recursion attack" msgstr "olası aşırı özyinelemeli saldırı" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6233,19 +6249,19 @@ msgstr "" "Sunucu yanıt vermiyor (ya da yerel MySQL sunucusunun soketi doğru olarak " "yapılandırılmadı)." -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "Sunucu yanıt vermiyor." -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin." -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Ayrıntılar..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6258,13 +6274,15 @@ msgid "Change password" msgstr "Parola değiştir" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Parola yok" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Parola tekrarı" @@ -6285,8 +6303,9 @@ msgstr "Veritabanı oluştur" msgid "Create" msgstr "Oluştur" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Yetkiniz yok" @@ -6296,12 +6315,12 @@ msgid "Create table" msgstr "Tablo oluştur" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Adı" @@ -6440,7 +6459,7 @@ msgid "View output as text" msgstr "Çıktıyı metin olarak göster" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Biçim:" @@ -6953,52 +6972,52 @@ msgstr "Paul McCullagh'ın The PrimeBase XT Bloğu" msgid "No data found for GIS visualization." msgstr "GIS görselleştirmesi için bulunan veri yok." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "Adına tıklayarak yapının içeriklerini görün" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını " "değiştirin" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "Aşağıdaki \"Yapı\" bağlantısıyla yapısını düzenleyin" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "Şu veritabanına git: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "%s için ayarları düzenle" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "Şu tabloya git: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "%s yapısı" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "Şu görünüme git: %s" @@ -7069,11 +7088,11 @@ msgstr "" "Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için " "CTRL+OK TUŞLARI'nı kullanın" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" @@ -7207,7 +7226,7 @@ msgstr "Farsça" #: libraries/mysql_charsets.lib.php:292 msgid "Polish" -msgstr "Polonyaca" +msgstr "Lehçe" #: libraries/mysql_charsets.lib.php:295 libraries/mysql_charsets.lib.php:343 msgid "West European" @@ -7319,7 +7338,7 @@ msgstr "phpMyAdmin belgeleri" msgid "Reload navigation frame" msgstr "Rehber çerçeveyi yeniden yükle" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "Bu biçim seçeneğe sahip değil" @@ -7436,93 +7455,93 @@ msgstr "Geçerli kimlik doğrulama anahtarı takılı değil" msgid "Authenticating..." msgstr "Kimlik doğrulanıyor..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "Sütunlar şununla ayrılmış:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "Sütunlar şununla kapatılmış:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "Sütunlar şununla atlatılmış:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "Satırlar şununla sonlandırılmış:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "NULL'u şununla değiştir:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "Sütunlardaki satır başı/satır atlama karakterlerini kaldır" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel yapısı:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "Veri dökümü seçenekleri" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Tablo döküm verisi" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Olay" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Tanım" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tablo için tablo yapısı" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Görünüm yapısı" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Görünüm yapısı durumu" @@ -7538,94 +7557,83 @@ msgstr "(devam eden)" msgid "Structure of table @TABLE@" msgstr "@TABLE@ tablosunun yapısı" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "Nesne oluşturma seçenekleri" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "Tablo başlığı (devamı)" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "Dış anahtar ilişkilerini göster" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "Yorumları göster" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "MIME türlerini göster" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Anamakine" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Üretim Zamanı" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Sunucu sürümü" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP Sürümü" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MedyaViki Tablosu" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 msgid "Export table names" msgstr "Tablo adlarını dışa aktar" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 msgid "Export table headers" msgstr "Tablo başlıklarını dışa aktar" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Tek bir tablonun verisini içeren bir rapor üretir)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "Rapor başlığı:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP düzeni" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" @@ -7633,11 +7641,11 @@ msgstr "" "Yorumları göster (dışa aktarma zaman damgası, PHP sürümü ve sunucu sürümü " "gibi bilgileri dahil et)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "İlave özel başlık yorumu (\\n satırları böler):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" @@ -7645,25 +7653,25 @@ msgstr "" "Veritabanlarının oluşturulduğu, en son güncellendiği ve en son denetlendiği " "zaman damgasını dahil et" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" "Şununla en fazla çıktı uyumluluğu için Veritabanı sistemi veya daha eski " "MySQL sunucusu:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "%s ifadesi ekle" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "İfadeleri ekle:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" @@ -7671,32 +7679,38 @@ msgstr "" "Tablo ve alan adlarını tırnak içine al (Özel karakterlerle ya da anahtar " "kelimelerle şekillendirilmiş sütun ve tablo adlarını korur)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "Veri oluşturma seçenekleri" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "Eklemeden önce tabloyu kes" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "INSERT ifadeleri yerine şunu kullan:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED ifadeleri" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE ifadeleri" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "Veri dökümlenirken kullanılacak işlev:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "Veri eklenirken kullanılacak sözdizimi:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7706,7 +7720,7 @@ msgstr "" "    Örnek: INSERT INTO tbl_adı (sütun_A,sütun_B,sütun_C) " "VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7716,7 +7730,7 @@ msgstr "" "  Örnek: INSERT INTO tbl_adı VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7724,7 +7738,7 @@ msgstr "" "yukarıdakilerin ikisi birden
      Örnek: INSERT " "INTO tbl_adı (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7732,7 +7746,7 @@ msgstr "" "yukarıdakilerin hiçbiri
      Örnek: INSERT INTO " "tbl_adı VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" @@ -7740,7 +7754,7 @@ msgstr "" "Onaltılık düzende gösterimdeki binari sütunları dökümle (örneğin, \"abc" "\", 0x616263 olur)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7749,50 +7763,45 @@ msgstr "" "sunucular arasında TIMESTAMP sütunlarını dökümlemek ve yeniden yüklemek için " "etkinleştirir)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Yordamlar" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "İşlevler" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Dökümü yapılmış tablolar için kısıtlamalar" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Tablo kısıtlamaları" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "TABLO MIME TÜRLERİ" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "TABLO BAĞLANTILARI" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "Veri okunması hatası:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "Nesne oluşturma seçenekleri (tümü önerilir)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "Görünümler" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "İçerikleri dışa aktar" @@ -7866,6 +7875,10 @@ msgstr "Sütun adları" msgid "This plugin does not support compressed imports!" msgstr "Bu eklenti sıkıştırılmış içe aktarım dosyalarını desteklemez!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MedyaViki Tablosu" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7923,6 +7936,10 @@ msgstr "SQL uyumluluk kipi:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Sıfır değerleri için AUTO_INCREMENT değeri kullanma" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8158,11 +8175,12 @@ msgstr "" "Güncellenmiş yapılandırma dosyasını yüklemek için phpMyAdmin'e yeniden " "oturum açın." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "Açıklama yok" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Hiçbirini Seçme" @@ -8184,9 +8202,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Kullanıcı Adı" @@ -8223,34 +8242,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Slave kopya etme kullanıcısı ekle" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Herhangi kullanıcı" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Metin alanını kullan" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Herhangi anamakine" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Yerel" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Bu Anamakine" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Anamakine Tablosu kullan" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8266,7 +8294,7 @@ msgstr "Parola Üret" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8302,8 +8330,8 @@ msgid "Edit event" msgstr "Olay düzenle" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "İstek işlemede hata" @@ -8379,7 +8407,8 @@ msgstr "Olay için geçerli bir tür vermek zorundasınız." msgid "You must provide an event definition." msgstr "Bir olay tanımı vermek zorundasınız." -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Yeni" @@ -8513,24 +8542,24 @@ msgstr "Yordam için geçerli bir dönüş türü vermek zorundasınız." msgid "You must provide a routine definition." msgstr "Bir yordam tanımı vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "%s yordamı yürütme sonuçları" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "İşlemin içindeki son ifade tarafından %d satır etkilendi" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "%s yordamı yürütme sonuçları" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Yordamı çalıştır" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Yordam parametreleri" @@ -8659,28 +8688,28 @@ msgstr "%2$s veritabanında %1$s adıyla olay bulunamadı" msgid "There are no events to display." msgstr "Görüntülemek için olaylar yok." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "%s tablosu yok!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Lütfen %s tablosu için koordinatları yapılandırın" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "%s veritabanının şeması - Sayfa %s" @@ -8817,6 +8846,451 @@ msgstr "Bilinmeyen dil: %1$s." msgid "Current Server" msgstr "Şu Anki Sunucu" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Yetkiniz yok." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "GRANT hariç tüm yetkileri içerir." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Veri okunmasına izin verir." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Veri değiştirilmesine izin ver." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Veri silinmesine izin verir." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Veritabanları ve tabloların kaldırılmasına izin verir." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin " +"temizlenmesine izin verir." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Sunucunun kapatılmasına izin ver." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Verinin içe ve dışa aktarılmasına izin verir." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Bu MySQL sürümünde etkisi yoktur." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Varolan tabloların yapısının değiştirilmesine izin verir." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Bütün veritabanı listesine erişim verir." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"En fazla bağlantı sayısı aşılsa bile bağlanmasına izin verir; genel " +"değişkenleri ayarlamak veya diğer kullanıcıların işlemlerini sonlandırmak " +"gibi pek çok yönetimsel işlemler için gereklidir." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Geçici tablolar oluşturulmasına izin verir." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Kopya edilen slave'ler için gereklidir." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Kullanıcılara slave / master'ların nerede olduğunu sormasına izin verir." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Yeni görünümlerin oluşturulmasına izin verir." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Saklanan yordamların oluşturulmasına izin verir." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Saklanan yordamların değiştirilmesine ve kaldırılmasına izin verir." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" +"Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden " +"adlandırılmasına izin verir." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Saklanan yordamların yürütülmesine izin verir." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "Yok" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Kaynak sınırları" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Kullanıcının saat başına çalıştırabileceği herhangi bir tabloyu veya " +"veritabanını değiştiren komut sayısını sınırlar." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "Kullanıcının saat başına açabileceği yeni bağlantı sayısını sınırlar." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Tabloya özgü yetkiler" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Not: MySQL yetki adları İngilizce olarak belirtilir" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Yönetim" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Genel yetkiler" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Veritabanına özgü yetkiler" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Yeni tabloların oluşturulmasına izin verir." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Tabloların kaldırılmasına izin verir." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Yetki tablolarını yeniden yüklemeden yeni kullanıcıların ve yetkilerin " +"eklenmesine izin verir." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Oturum Açma Bilgisi" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Parolayı değiştirme" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s için parola başarılı olarak değiştirildi." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "%s için yetkileri geri aldınız" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Kullanıcı için veritabanı" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr ""%s" veritabanına erişimi olan kullanıcılar" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Kullanıcı" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Onaylı" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "Kullanıcı eklendi." + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Herhangi" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "genel" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Veritabanına özgü" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "joker" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "Kullanıcı bulunamadı." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Yetkileri düzenle" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Geri al" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "Tümünü dışa Aktar" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... eski olanı sakla." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... eski olanı kullanıcı tablolarından sil." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... eski olandan bütün aktif yetkileri iptal et ve sonra da sil." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +"... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden " +"yükle." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Sütuna özgü yetkiler" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Aşağıdaki veritabanına yetkileri ekle" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "_ ve % jokerleri harfi harfine kullanılmak için \\ ile doldurun" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Aşağıdaki tabloya yetkileri ekle" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Seçili kullanıcıları kaldır" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Kullanıcılardan tüm aktif yetkileri geri al ve sonra da sil." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Silmek için kullanıcı seçilmedi!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Yetkiler yeniden yükleniyor" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Seçili kullanıcılar başarılı olarak silindi." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "%s için yetkileri güncellediniz." + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "Tüm kullanıcılar için yetkiler" + +#: libraries/server_privileges.lib.php:2708 +#, php-format +msgid "Privileges for %s" +msgstr "%s için yetkiler" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "Kullanıcılara genel bakış" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki " +"tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse " +"sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " +"önce %syetkileri yeniden yüklemeniz%s gerekir." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Yeni bir kullanıcı eklediniz." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Kaynak veritabanı" @@ -8863,11 +9337,11 @@ msgstr "Temizle" msgid "Columns" msgstr "Sütun" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver" @@ -9147,12 +9621,6 @@ msgstr "Yazılım sürümü" msgid "Protocol version" msgstr "Protokol sürümü" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Kullanıcı" - #: main.php:217 msgid "Server charset" msgstr "Sunucu karakter grubu" @@ -9675,441 +10143,20 @@ msgstr "Lisans" msgid "disabled" msgstr "etkisizleştirildi" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "GRANT hariç tüm yetkileri içerir." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Varolan tabloların yapısının değiştirilmesine izin verir." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Saklanan yordamların değiştirilmesine ve kaldırılmasına izin verir." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Saklanan yordamların oluşturulmasına izin verir." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Yeni tabloların oluşturulmasına izin verir." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Geçici tablolar oluşturulmasına izin verir." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" -"Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden " -"adlandırılmasına izin verir." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Yeni görünümlerin oluşturulmasına izin verir." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Veri silinmesine izin verir." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Veritabanları ve tabloların kaldırılmasına izin verir." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Tabloların kaldırılmasına izin verir." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Saklanan yordamların yürütülmesine izin verir." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Verinin içe ve dışa aktarılmasına izin verir." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Yetki tablolarını yeniden yüklemeden yeni kullanıcıların ve yetkilerin " -"eklenmesine izin verir." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "Kullanıcının saat başına açabileceği yeni bağlantı sayısını sınırlar." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Kullanıcının saat başına çalıştırabileceği herhangi bir tabloyu veya " -"veritabanını değiştiren komut sayısını sınırlar." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Bu MySQL sürümünde etkisi yoktur." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin " -"temizlenmesine izin verir." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Kullanıcılara slave / master'ların nerede olduğunu sormasına izin verir." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Kopya edilen slave'ler için gereklidir." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Veri okunmasına izin verir." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Bütün veritabanı listesine erişim verir." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Sunucunun kapatılmasına izin ver." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"En fazla bağlantı sayısı aşılsa bile bağlanmasına izin verir; genel " -"değişkenleri ayarlamak veya diğer kullanıcıların işlemlerini sonlandırmak " -"gibi pek çok yönetimsel işlemler için gereklidir." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Veri değiştirilmesine izin ver." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Yetkiniz yok." - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "Yok" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Tabloya özgü yetkiler" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Not: MySQL yetki adları İngilizce olarak belirtilir" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Yönetim" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Genel yetkiler" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Veritabanına özgü yetkiler" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Kaynak sınırları" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Oturum Açma Bilgisi" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Parolayı değiştirme" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "Kullanıcı bulunamadı." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "%s kullanıcısı zaten var!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Yeni bir kullanıcı eklediniz." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "%s için yetkileri güncellediniz." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "%s için yetkileri geri aldınız" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s için parola başarılı olarak değiştirildi." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "%s siliniyor" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Silmek için kullanıcı seçilmedi!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Yetkiler yeniden yükleniyor" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Seçili kullanıcılar başarılı olarak silindi." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Yetkileri düzenle" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Geri al" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "Tümünü dışa Aktar" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Herhangi" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "Tüm kullanıcılar için yetkiler" - -#: server_privileges.php:1708 -#, php-format -msgid "Privileges for %s" -msgstr "%s için yetkiler" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "Kullanıcılara genel bakış" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Onaylı" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Seçili kullanıcıları kaldır" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Kullanıcılardan tüm aktif yetkileri geri al ve sonra da sil." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki " -"tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse " -"sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " -"önce %syetkileri yeniden yüklemeniz%s gerekir." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Sütuna özgü yetkiler" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Aşağıdaki veritabanına yetkileri ekle" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "_ ve % jokerleri harfi harfine kullanılmak için \\ ile doldurun" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Aşağıdaki tabloya yetkileri ekle" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... eski olanı sakla." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... eski olanı kullanıcı tablolarından sil." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... eski olandan bütün aktif yetkileri iptal et ve sonra da sil." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -"... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden " -"yükle." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Kullanıcı için veritabanı" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr ""%s" veritabanına erişimi olan kullanıcılar" - -#: server_privileges.php:2544 -msgid "global" -msgstr "genel" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Veritabanına özgü" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "joker" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "Kullanıcı eklendi." - #: server_replication.php:82 msgid "Unknown error" msgstr "Bilinmeyen hata" @@ -11892,37 +11939,37 @@ msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir." msgid "Wrong data" msgstr "Yanlış veri" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Varsayılan gözatma sorgusu olarak \"%s\" yer imi kullanılıyor." -#: sql.php:430 +#: sql.php:434 msgid "Do you really want to execute following query?" msgstr "Aşağıdaki sorguya çalıştırmak istediğinize emin misiniz?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "PHP kodu olarak gösteriliyor" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "Oanylı SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL sonucu" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Üreten:" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Etiket" @@ -13779,6 +13826,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0'a ayarlı" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP düzeni" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/tt.po b/po/tt.po index 1b080cf168..cd5b424fd5 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: tatarish \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Barısın kürsät" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Ezläw" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Ezläw" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Äydä" @@ -108,7 +111,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%s biremlege beterelde." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Biremlek açıqlaması: " @@ -118,17 +121,17 @@ msgstr "Biremlek açıqlaması: " msgid "Table comments" msgstr "Tüşämä açıqlaması" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Alan iseme" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Töre" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Buş" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Buş" msgid "Default" msgstr "Töpcay" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Bonı belän bäyläneş:" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Açıqlama" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Yuq" @@ -242,19 +248,22 @@ msgstr "Yuq" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Äye" @@ -262,8 +271,8 @@ msgstr "Äye" msgid "View dump (schema) of database" msgstr "Biremlek eçtälegen (tözeleşen) çığaru" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Bu biremlektä ber genä dä tüşämä yuq." @@ -279,79 +288,79 @@ msgstr "Saylanunı Töşer" msgid "The database name is empty!" msgstr "Biremlek iseme buş!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "\"%s\" biremlege \"%s\" itep ataldı" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been copied to %2$s" msgstr "\"%s\" biremlege \"%s\" itep ataldı" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "%s biremlege beterelde." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy msgid "Drop the database (DROP)" msgstr "Biremleklär yuq" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Biremlekne boña kübäyt" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Tözeleşen genä" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Eçtälegen genä" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Kübäytü aldınnan CREATE DATABASE östise" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "%s östäw" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Çikläwlär östise" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Kübäytelgän biremlekkä küçäse" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -361,7 +370,7 @@ msgstr "Kübäytelgän biremlekkä küçäse" msgid "Collation" msgstr "Tezü cayı" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -373,7 +382,7 @@ msgstr "" "Bäyläneştä torğan tüşämä belän eşläp bulmas, östämä eşli-alu sünek tora. Anı " "qabızu öçen, %sbonda çirtäse%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -385,16 +394,18 @@ msgstr "Bäyläneşlär sxeme" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Tüşämä" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Kerem" @@ -404,13 +415,13 @@ msgid "Size" msgstr "Küläme" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "totıla" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -418,7 +429,7 @@ msgstr "Yasalışı" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -426,7 +437,7 @@ msgstr "Soñğı yañartılu" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -439,97 +450,16 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tüşämä" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "You have to choose at least one Column to display" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Artıp" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Kimep" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Tezü" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Kürsät" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Şart" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Add/Delete Criteria Row" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Add/Delete Field Columns" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Sorawnı Yañart" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Tüşämä qullanıp" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Yä" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Wä" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Tıq" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Sal" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Üzgärt" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Kübäytelgän tüşämägä küçäse" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "%s biremlegenä SQL-soraw:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Sorawnı Yulla" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -572,7 +502,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -601,20 +531,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Saylanğannı:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Saylap Beter" @@ -622,31 +553,32 @@ msgstr "Saylap Beter" msgid "Check tables having overhead" msgstr "Check overheaded" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Buşat" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -696,17 +628,18 @@ msgstr "Tüşämä tikşerü" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Biremlek" @@ -726,18 +659,26 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Torış" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Eş" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Kürsät" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" @@ -785,22 +726,22 @@ msgstr "Biremlek" msgid "Bad type!" msgstr "Soraw töre" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Rename database to" msgid "Bad parameters!" msgstr "Biremlekne bolay atap quy" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" biremen saqlaw öçen buş ara citmi." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -808,12 +749,12 @@ msgstr "" "Serverdä %s digän birem bar inde, adın almaştırası, yä inde östän yazu " "tamğasın açası qala." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Eçtälege \"%s\" biremenä saqlandı." @@ -837,7 +778,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -919,27 +860,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Bitbilge kürsätü" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Tamğa beterelde." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Birem uqıp bulmadı" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -947,46 +888,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -1001,7 +942,7 @@ msgstr "Kire" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" cönläläre sünderelgän." @@ -1011,7 +952,7 @@ msgstr "\"DROP DATABASE\" cönläläre sünderelgän." msgid "Do you really want to execute \"%s\"?" msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1082,16 +1023,20 @@ msgstr "Host adı buş!" msgid "The user name is empty!" msgstr "Atama buş!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Sersüzeñ buş!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1117,9 +1062,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1393,12 +1338,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Buş" @@ -1585,10 +1531,10 @@ msgid "Explain output" msgstr "SQL Centekläw" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Waqıt" @@ -1937,7 +1883,7 @@ msgstr "SQL-soraw" msgid "No rows selected" msgstr "Kertemnär sayladı" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Üzgärt" @@ -1946,8 +1892,8 @@ msgstr "Üzgärt" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d digäne yazma sanı öçen kileşmi." @@ -2028,7 +1974,7 @@ msgstr "Data pointer olılığı" msgid "Ignore" msgstr "Qarama" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2573,14 +2519,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Xata" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-soraw" @@ -2591,7 +2537,7 @@ msgstr "SQL-soraw" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2620,6 +2566,10 @@ msgstr "PHP Kodısız" msgid "Create PHP Code" msgstr "PHP-Kod yasa" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Sorawnı Yulla" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2646,7 +2596,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Engine" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "" @@ -2673,7 +2623,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2682,7 +2632,7 @@ msgstr "Başlawğa" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2692,7 +2642,7 @@ msgstr "Uzğan" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2702,7 +2652,7 @@ msgstr "Kiläse" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2725,16 +2675,17 @@ msgstr "" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Tözeleş" @@ -2742,21 +2693,20 @@ msgstr "Tözeleş" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Östäw" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Küzätü" @@ -2778,21 +2728,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web-server'neñ yökläw törgäge" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Bastır" @@ -2809,6 +2759,78 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Artıp" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Kimep" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Tezü" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Şart" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Add/Delete Criteria Row" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Add/Delete Field Columns" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Sorawnı Yañart" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Tüşämä qullanıp" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Yä" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Wä" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Tıq" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Sal" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Üzgärt" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "%s biremlegenä SQL-soraw:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "berärse bulsa" @@ -2850,8 +2872,8 @@ msgstr[0] "%s kileşü bar, %s atlı tüşämädä" msgid "Delete the matches for the %s table?" msgstr "Tüşämä eçtälegen çığaru" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2892,74 +2914,74 @@ msgstr "Kiläse tüşämä eçendä:" msgid "Inside column:" msgstr "Kiläse tüşämä eçendä:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy msgid "Save edited data" msgstr "Biremnär törgäge" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Add/Delete Field Columns" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Şmb" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Alannar sanı" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Dşm" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "yatqırıp" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "yatqırıp (başlıqlar almaşıp)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "bastırıp" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Tamğalanğan soraw cibärü" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Qullanası tezeş" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2973,115 +2995,115 @@ msgstr "Qullanası tezeş" msgid "Options" msgstr "Eşkärtü" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Tulı Mätennär" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 #, fuzzy msgid "Relational key" msgstr "Bäyläneşlär sxeme" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Bäyläneşlär sxeme" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Browser transformation" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Üter" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Törle buluı bar. YBS 3.11 qarísı" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "sorawda" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Yazma sanı:" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "tulayım" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Bastıru küreneşe (bar mätennär belän)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF schema kürsätü" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Bäyläneş tabılmadı" @@ -3201,8 +3223,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Biremleklär" @@ -3218,11 +3240,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3240,9 +3262,9 @@ msgstr "" msgid "Query" msgstr "Soraw" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Xoquqlar" @@ -3251,7 +3273,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" @@ -3357,52 +3379,52 @@ msgstr "Bu MySQL serverdä %s sünderelgän bulğan." msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL server %s saqlaw enginen totmí." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Biremlektä ezläw: " -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "%s digän tışlaw tabılmadı!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Yaraqsız biremlek" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Tüşämä adı yaraqsız" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "\"%s\" tüşämäse \"%s\" itep ataldı" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3411,7 +3433,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksí" @@ -3423,7 +3445,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3468,7 +3490,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3830,7 +3852,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Tüşämä" @@ -3841,9 +3863,10 @@ msgstr "Tüşämä" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Eçtälek" @@ -3965,33 +3988,33 @@ msgid "Disabled" msgstr "Sünek" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 #, fuzzy msgid "structure" msgstr "Tözeleş" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4416,13 +4439,13 @@ msgstr "Qısu" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4451,7 +4474,6 @@ msgstr "Alan uzdıru bilgese" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL'nı almaştırası:" @@ -4498,25 +4520,24 @@ msgstr "Birem adınıñ tözeleşe" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "%s tüşämä" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Tüşämä başlığın östise" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Tüşämä başlığı" @@ -4525,14 +4546,14 @@ msgid "Continued table caption" msgstr "Tüşämä dawamınıñ başlığı" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Açqıç yazması" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME-törläre" @@ -4574,7 +4595,7 @@ msgid "SQL compatibility mode" msgstr "SQL, kileşterü ısulı" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4587,7 +4608,7 @@ msgid "Use delayed inserts" msgstr "Kötterep östise" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Yat tezeş tikşerüen sünderep" @@ -4604,7 +4625,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Kilgän soraw külämeneñ öske küläme" @@ -4614,7 +4635,7 @@ msgid "Export type" msgstr "Çığaru ısulı" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Transaksi eçendä ütkärep" @@ -4669,7 +4690,6 @@ msgstr "Biremlek saqlaw köyläneşe" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4733,7 +4753,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4973,7 +4992,6 @@ msgid "Customize text input fields" msgstr "Biremlek saqlaw köyläneşe" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -6102,9 +6120,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Sersüz" @@ -6271,7 +6291,6 @@ msgstr "LOAD DATA qullanıp CSV" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6293,19 +6312,16 @@ msgstr "Biremlek saqlaw köyläneşe" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV bireme, MS Excel öçen" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6361,7 +6377,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6369,21 +6385,21 @@ msgid "" "configured)." msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Bu server endäşmi" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6394,13 +6410,15 @@ msgid "Change password" msgstr "Sersüz üzgärtü" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Sersüzsez" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Qabatla" @@ -6425,8 +6443,9 @@ msgstr "Yaña biremlek yaratu" msgid "Create" msgstr "Yarat" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Xoquqsız" @@ -6437,12 +6456,12 @@ msgid "Create table" msgstr "Yaña Bit yaratu" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Adı" @@ -6609,7 +6628,7 @@ msgid "View output as text" msgstr "Biremgä saqlıysı" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7093,51 +7112,51 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tözeleşen genä" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" @@ -7211,12 +7230,12 @@ msgstr "" "Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü " "öçen, CTRL+uq töymäläre bar" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7468,7 +7487,7 @@ msgstr "phpMyAdmin qullanması" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7581,84 +7600,84 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Yul ara bilgese" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Alan yaptıruçı bilge" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Alan uzdıru bilgese" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Yul ara bilgese" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "NULL'nı almaştırası:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel söreme" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy msgid "Data dump options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Tüşämä eçtälegen çığaru" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Cibärelde" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7666,25 +7685,25 @@ msgstr "Cibärelde" msgid "Definition" msgstr "Açıqlama" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Tüşämä tözeleşe" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 #, fuzzy msgid "Structure for view" msgstr "Tözeleşen genä" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 #, fuzzy msgid "Stand-in structure for view" msgstr "Tözeleşen genä" @@ -7701,264 +7720,255 @@ msgstr "(dawamlı)" msgid "Structure of table @TABLE@" msgstr "@TABLE@ atlı tüşämä tözeleşe" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Transformation options" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Tüşämä başlığı" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Yat tezeş tikşerüen sünderep" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Buy Açıqlamasın Kürsätäse" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Barlıq MIME-törlär" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Host" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Ürçäw Zamanı" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Server söreme" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP Söreme" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy msgid "Export table names" msgstr "Çığaru ısulı" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "yatqırıp (başlıqlar almaşıp)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Yomğaq başlığı" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Başlıqqa östämä açıqlama östäw (yullar \\n belän ayırıla)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Cömlä" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Cömlä" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Transformation options" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 #, fuzzy msgid "Procedures" msgstr "Proseslar" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 #, fuzzy msgid "Functions" msgstr "Funksí" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Eçtälekne uqu xoquqı." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Qaraş" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 #, fuzzy msgid "Export contents" msgstr "Çığaru ısulı" @@ -8029,6 +8039,10 @@ msgstr "Alan iseme" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -8084,6 +8098,10 @@ msgstr "SQL, kileşterü ısulı" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8327,11 +8345,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "Açıqlamasız" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Saylanunı Töşer" @@ -8351,9 +8370,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "İreşü iseme" @@ -8389,34 +8409,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Törle qullanuçı" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Bu mätennän" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Bar bulğan host" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Cirle" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Bu Sanaq" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Host Tüşämä eçennän" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8430,7 +8459,7 @@ msgstr "Sersüz Ürçetü" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8468,8 +8497,8 @@ msgid "Edit event" msgstr "Cibärelde" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -8557,7 +8586,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8701,25 +8731,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 -#, php-format -msgid "%d row affected by the last statement inside the procedure" -msgid_plural "%d rows affected by the last statement inside the procedure" -msgstr[0] "" - -#: libraries/rte/rte_routines.lib.php:1302 +#: libraries/rte/rte_routines.lib.php:1279 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Eçke funksílar eşlätterergä birä." -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1343 +#, php-format +msgid "%d row affected by the last statement inside the procedure" +msgid_plural "%d rows affected by the last statement inside the procedure" +msgstr[0] "" + +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8877,29 +8907,29 @@ msgstr "Bu biremlektä ber genä dä tüşämä yuq." msgid "There are no events to display." msgstr "Tüşämä tikşerü" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" atlı tüşämä yuq äle!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9049,6 +9079,456 @@ msgstr "Belgesez tel: %1$s." msgid "Current Server" msgstr "Server" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Xoquqlar yuq." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "GRANT'tan basqa bar xoquqlar da bar." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Eçtälekne uqu xoquqı." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Eçtälek östäw/almaştıru xoquqı." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Eçtälek üzgärtü xoquqı." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Eçtälek beterü xoquqı." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Yaña biremlek/tüşämä yasaw xoquqı." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Biremlek/tüşämä beterü xoquqı." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Serverne tuqtatu xoquqı." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Açqıçlarnı qoru/beterü xoquqı." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Allows connecting, even if maximum number of connections is reached; " +"Required for most administrative operations like setting global variables or " +"killing threads of other users." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Waqıtlı tüşämä yasaw xoquqı." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Gives the right to the user to ask where the slaves / masters are." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Yaña qaraş qorırğa birä." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +#, fuzzy +msgid "Allows creating and dropping triggers" +msgstr "Açqıçlarnı qoru/beterü xoquqı." + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "SHOW CREATE VIEW sorawların eşläterlek itä." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Saqlanğan funksílar qorırğa birä." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Eçke funksílar eşlätterergä birä." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Buş" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Resurs çikläwläre" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +#, fuzzy +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Limits the number of new connections the user may open per hour." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Berär tüşämä öçen xoquqlar" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Beläse: MySQL'da xoquq adı İnglizçä kertelä!" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "İdärä" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Töp xoquq" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Berär biremlekkä qağılışlı xoquqlar" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Yaña tüşämä yasaw xoquqı." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Tüşämä beterü xoquqı." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Allows adding users and privileges without reloading the privilege tüşämä." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Kereş Turında" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Sersüzen üzgärtäse tügel" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Qullanuçı biremlege" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, fuzzy, php-format +msgid "Grant all privileges on database "%s"" +msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Qullanuçı" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Xoquq" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "\"%s\" atlı Qaraş beterelgän buldı" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Törle" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "ğömümi" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "berär biremlekkä qağılışlı" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "almaşbilge" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Qullanuçı yuq." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Xoquqlar Üzgärtü" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Töşer" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Export" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Berär bağana öçen xoquqlar" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Kiläse biremlek öçen xoquqlar östäw" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"_ belän % bilgelären şul kileş kenä qullanu öçen \\ belän ütkärergä kiräk" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Kiläse tüşämä öçen xoquqlar östäw" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Saylanğan qullanuçı beterü" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Qullanuçı xoquqların awdarıp beteräse." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Beteräse qullanuçılar saylanmağan!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Bu xoquqlarnı yöklä" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Xoquqlar" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Xoquqlar" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Qullanuçılar tezmäse" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server " +"qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege " +"alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " +"yökläp alası%s." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Yana qullanuçı östälände." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 #, fuzzy msgid "Source database" @@ -9100,11 +9580,11 @@ msgstr "Täqwim" msgid "Columns" msgstr "Alan iseme" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" @@ -9397,12 +9877,6 @@ msgstr "Server söreme" msgid "Protocol version" msgstr "Protokol söreme" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Qullanuçı" - #: main.php:217 #, fuzzy msgid "Server charset" @@ -9959,446 +10433,20 @@ msgstr "" msgid "disabled" msgstr "Sünek" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "GRANT'tan basqa bar xoquqlar da bar." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Yaña biremlek/tüşämä yasaw xoquqı." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Saqlanğan funksílar qorırğa birä." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Yaña tüşämä yasaw xoquqı." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Waqıtlı tüşämä yasaw xoquqı." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Yaña qaraş qorırğa birä." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Eçtälek beterü xoquqı." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Biremlek/tüşämä beterü xoquqı." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Tüşämä beterü xoquqı." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Eçke funksílar eşlätterergä birä." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Allows adding users and privileges without reloading the privilege tüşämä." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Açqıçlarnı qoru/beterü xoquqı." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Eçtälek östäw/almaştıru xoquqı." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -#, fuzzy -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Gives the right to the user to ask where the slaves / masters are." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Eçtälekne uqu xoquqı." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "SHOW CREATE VIEW sorawların eşläterlek itä." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Serverne tuqtatu xoquqı." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Allows connecting, even if maximum number of connections is reached; " -"Required for most administrative operations like setting global variables or " -"killing threads of other users." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -#, fuzzy -msgid "Allows creating and dropping triggers" -msgstr "Açqıçlarnı qoru/beterü xoquqı." - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Eçtälek üzgärtü xoquqı." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Xoquqlar yuq." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Buş" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Berär tüşämä öçen xoquqlar" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Beläse: MySQL'da xoquq adı İnglizçä kertelä!" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "İdärä" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Töp xoquq" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Berär biremlekkä qağılışlı xoquqlar" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Resurs çikläwläre" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Kereş Turında" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Sersüzen üzgärtäse tügel" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Qullanuçı yuq." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" atlı qullanuçı bar inde!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Yana qullanuçı östälände." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "\"%s\" Beterü" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Beteräse qullanuçılar saylanmağan!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Bu xoquqlarnı yöklä" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Xoquqlar Üzgärtü" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Töşer" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Export" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Törle" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Xoquqlar" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Xoquqlar" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Qullanuçılar tezmäse" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Xoquq" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Saylanğan qullanuçı beterü" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Qullanuçı xoquqların awdarıp beteräse." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server " -"qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege " -"alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " -"yökläp alası%s." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Berär bağana öçen xoquqlar" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Kiläse biremlek öçen xoquqlar östäw" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"_ belän % bilgelären şul kileş kenä qullanu öçen \\ belän ütkärergä kiräk" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Kiläse tüşämä öçen xoquqlar östäw" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Qullanuçı biremlege" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, fuzzy, php-format -msgid "Grant all privileges on database "%s"" -msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" - -#: server_privileges.php:2544 -msgid "global" -msgstr "ğömümi" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "berär biremlekkä qağılışlı" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "almaşbilge" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "\"%s\" atlı Qaraş beterelgän buldı" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -12017,41 +12065,41 @@ msgstr "" msgid "Wrong data" msgstr "Biremleklär yuq" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL'nı Tikşer" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL qaytarışı" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Ürçätkeç:" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Yarlıq" @@ -13876,6 +13924,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "PDF" +#~ msgstr "PDF" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/ug.po b/po/ug.po index 15197d41a1..42f59d5cc4 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uyghur \n" @@ -18,7 +18,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" @@ -42,16 +43,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "ئىزدەش" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -61,24 +62,26 @@ msgstr "ئىزدەش" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "ئىجرا قىلىش" @@ -110,7 +113,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "ساندان ئىزاھاتى: " @@ -120,17 +123,17 @@ msgstr "ساندان ئىزاھاتى: " msgid "Table comments" msgstr "جەدۋەل ئىزاھى" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "سۆزلەم" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "تۈرى" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "بوش" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "بوش" msgid "Default" msgstr "ئەندىز" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "ئۇلانما" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "ئىزاھلار" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "يوق" @@ -242,19 +248,22 @@ msgstr "يوق" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "بولدى" @@ -262,8 +271,8 @@ msgstr "بولدى" msgid "View dump (schema) of database" msgstr "ساندان قالدۇقىنى كۆرسىتىش" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "سانداندا جەدۋەل يوق" @@ -279,76 +288,76 @@ msgstr "تاللاشنى قالدۇرۇش" msgid "The database name is empty!" msgstr "ساندان ئىسمىنى بوش قويماڭ!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "ساندان ئىسمى %s غا ئۆزگەرتىلدى %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "ساندان %s غا كۆچۈرۈلدى %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "ساندان %s ئۆچۈرۈلدى." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "كۆچۈرۈلگەن ساندان" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "كۆچۈرۈلگەن ساندان" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "تۈزىلىشىنىلا" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "ئۇچۇرنىلا" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇش" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "قوشۇلغىنى %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "مەجبۇرى قوشۇش" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -358,7 +367,7 @@ msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" msgid "Collation" msgstr "تاسقاش" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -367,7 +376,7 @@ msgstr "" "ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " "%sبۇ يەرنى كۆرۈڭ%s." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" @@ -379,16 +388,18 @@ msgstr "PDF تىزىىسىنى كۆرسىتىش" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "جەدۋەل" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "سەپ سانى" @@ -398,13 +409,13 @@ msgid "Size" msgstr "ھەجىم" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "ئىشلىتىلمەكتە" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -412,7 +423,7 @@ msgstr "قۇرۇش" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -420,7 +431,7 @@ msgstr "ئاخىرقى يېڭلىنىش" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -432,92 +443,15 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s جەدۋەل" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "بۇنى بىجىرىش ئۈچۈن مەزمۇن تاللانغان بولۇشى كېرەك" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "ئارتىش" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "كېمىيىش" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "تۈرلەش" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "كۆرسىتىش" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "شەرت" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "رەت قوشۇش\\ئۆچۈرۈش" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "يېڭلاش" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "جەدۋەللەرنى ئىشلىتىش" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "ياكى" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "ۋە" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "قىستۇرۇش" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "ئۆچۈرۈش" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "ئۆزگەرتىش" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL ئىجرا بولۋاتقان ساندان %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "تاپشۇرۇش" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -560,7 +494,7 @@ msgstr "ئاكتىپ ئىزلاش" msgid "Tracking is not active." msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -588,20 +522,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "تاللانغىنى:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "ھەممىنى تاللاش" @@ -609,31 +544,32 @@ msgstr "ھەممىنى تاللاش" msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "چىقىرىش" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "تازىلاش" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -679,17 +615,18 @@ msgstr "ئىزلانغان جەدۋەل" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "ساندان" @@ -707,18 +644,26 @@ msgstr "يېڭلاش" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "ھالەت" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "ئامال" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "كۆرسىتىش" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" @@ -761,22 +706,22 @@ msgstr "ساندان خاتىرىسى" msgid "Bad type!" msgstr "چىقىرىش" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "چىقارماقچى بولغان ھۆججەت تۈرىنى تاللاڭ!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Routines" msgid "Bad parameters!" msgstr "دائىملىق" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "ھۆججەتنى ساقلاشقا يىتەرلىك بوشلۇق يوق %s。" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -784,12 +729,12 @@ msgstr "" "%s بۇ ھۆججەت مۇلازىمىتېردا باركەن، ھۆججەت ئىسمىنى ئۆزگەرتىڭ ياكى قاپلاپ " "كۆچۈرۈش تۈرىنى تالالڭ." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "بۇ %s ھۆججەتنى مۇلازىمىتېردا ساقلاش ھوقۇقىڭىز يېتەرسىز." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ھۆججىتىدە ساقلاندى." @@ -814,7 +759,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -893,7 +838,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -902,20 +847,20 @@ msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "خەتكۈچنى كۆرسىتىش" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "خەتكۈچ ئۆچۈرۈلدى" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "ھۆججەتنى ئوقۇيالمىدى" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -923,46 +868,46 @@ msgid "" "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "قىستۇرمىلار كىرگۈزىشكە ئامالسىز، قاچىلانمىنى تەكشۈرۈپ بىقىڭ!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "قۇرۇلغان خەتكۈچ %s" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "%d كىرگۈزىش غەلبىىك بولدى" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -977,7 +922,7 @@ msgstr "قايتىش" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin دەستەك توركۆرگۈچلەردە ياخشى ئىشلەيدۇ." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن." @@ -987,7 +932,7 @@ msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكل msgid "Do you really want to execute \"%s\"?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "ساندان تولۇق ئۆچۈرۈلدى!" @@ -1058,16 +1003,20 @@ msgstr "مۇلازىمىتېر ئىسمى بوشكەن!" msgid "The user name is empty!" msgstr "قوللانغۇچى ئىسمى بوشكەن!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "پارول بوشكەن!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Add %s" msgid "Add user" @@ -1091,9 +1040,9 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1363,12 +1312,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "يوق" @@ -1557,10 +1507,10 @@ msgid "Explain output" msgstr "SQL ئىزاھى" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "ۋاقىت" @@ -1905,7 +1855,7 @@ msgstr "SQL سورىقى" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "ئۆزگەرتتىش" @@ -1914,8 +1864,8 @@ msgstr "ئۆزگەرتتىش" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" @@ -1996,7 +1946,7 @@ msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىك msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2495,14 +2445,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "خاتالىق" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL سورىقى" @@ -2513,7 +2463,7 @@ msgstr "SQL سورىقى" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2542,6 +2492,10 @@ msgstr "PHP كودى يوق" msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "تاپشۇرۇش" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2566,7 +2520,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ئىچكى بىرلىشىش" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" @@ -2595,7 +2549,7 @@ msgstr "دائىملىق" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2604,7 +2558,7 @@ msgstr "باشلا" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2614,7 +2568,7 @@ msgstr "ئالدىنقىسى" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2624,7 +2578,7 @@ msgstr "كىيىنكى ئاي" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2649,16 +2603,17 @@ msgstr "بىر چىكىپ تاللاڭ" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "تۈزۈلىشى" @@ -2666,21 +2621,20 @@ msgstr "تۈزۈلىشى" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "قىستۇرۇش" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "كۆزەت" @@ -2702,21 +2656,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "يازدۇر" @@ -2733,6 +2687,74 @@ msgstr "" msgid "Font size" msgstr "خەتنىڭ چوڭ-كىچىكلىكى" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "ئارتىش" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "كېمىيىش" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "تۈرلەش" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "شەرت" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "رەت قوشۇش\\ئۆچۈرۈش" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "يېڭلاش" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "جەدۋەللەرنى ئىشلىتىش" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "ياكى" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "ۋە" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "قىستۇرۇش" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "ئۆچۈرۈش" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "ئۆزگەرتىش" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL ئىجرا بولۋاتقان ساندان %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "سۆزلەردىن ئەڭ ئازدىن بىرى" @@ -2774,8 +2796,8 @@ msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" msgid "Delete the matches for the %s table?" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2814,70 +2836,70 @@ msgstr "تۆۋەندىكى جەدۋەل(لەر): " msgid "Inside column:" msgstr "ئىچىدىكى سۆزلەم:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete columns" msgid "Restore column order" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of columns" msgid "Number of rows" msgstr "سۆزلەم سانى" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "More" msgid "Mode" msgstr "تېخىمۇ كۆپ" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2890,62 +2912,62 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial import" msgid "Partial texts" msgstr "بۆلۈپ كىرگۈزىش" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2953,48 +2975,48 @@ msgstr "" "ئېنىقسىزلىك بولۇشى مۇمكىن. [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a] غا قاراڭ." -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "ئۇمۇمىي" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "بېسىپ چىقىرش كۈرۈلمىسى" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "جەدۋەل ئىزاھى" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "ئۇلىنىشنى تاپالمىدى" @@ -3116,8 +3138,8 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "ساندان" @@ -3133,11 +3155,11 @@ msgid "Tracking" msgstr "ئىز قۇغلاش" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3155,9 +3177,9 @@ msgstr "سانلىق مەلۇمات ئامبىرى قۇرۇق" msgid "Query" msgstr "تەكشۈرۈش" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "ھۇقۇقى" @@ -3166,7 +3188,7 @@ msgid "Routines" msgstr "دائىملىق" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "ھادىسە" @@ -3265,52 +3287,52 @@ msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە ب msgid "This MySQL server does not support the %s storage engine." msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "تېما %s تېپىلمىدى!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "ئۈنۈمسىز ساندان" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى." -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3319,7 +3341,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3331,7 +3353,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3374,7 +3396,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3731,7 +3753,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "" @@ -3742,9 +3764,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "سانلىق مەلۇمات" @@ -3864,32 +3887,32 @@ msgid "Disabled" msgstr "تاقالدى" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4295,13 +4318,13 @@ msgstr "پىرىسلاش" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "" @@ -4324,7 +4347,6 @@ msgstr "مەزمۇنئايلاندۇرۇش بەلگىسى" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "نى ئالماشتۇرۇش ئۈچۈنNULL " @@ -4366,12 +4388,11 @@ msgstr "" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" @@ -4379,13 +4400,13 @@ msgid "Dump table" msgstr "%s جەدۋەل" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "ئۆزئىچىگە ئالغان جەدېۋەلنىڭ تىمىسى" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "جەدېۋەلنىڭ تىمىسى" @@ -4394,14 +4415,14 @@ msgid "Continued table caption" msgstr "داۋاملاشتۇرىدىغان جەدېۋەلنىڭ تىمىسى" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "ئاچقۇچلۇق ئېمزا" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIMEشەكلى" @@ -4440,7 +4461,7 @@ msgid "SQL compatibility mode" msgstr "SQLئۆز ئىچىگە ئالغان شەكلى" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4453,7 +4474,7 @@ msgid "Use delayed inserts" msgstr "" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "" @@ -4470,7 +4491,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "" @@ -4481,7 +4502,7 @@ msgid "Export type" msgstr "چىقىرىش" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "" @@ -4534,7 +4555,6 @@ msgstr "" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4595,7 +4615,6 @@ msgid "Set import and export directories and compression options" msgstr "" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4820,7 +4839,6 @@ msgid "Customize text input fields" msgstr "" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "" @@ -5902,9 +5920,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "پارول" @@ -6078,7 +6098,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "OpenOffice جەدىۋېلى" @@ -6100,19 +6119,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excel دىكى CSVشەكلى" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "OpenOffice ھۆججىتى" @@ -6168,7 +6184,7 @@ msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىن msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6176,21 +6192,21 @@ msgid "" "configured)." msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "مۇلازىمىتېردا ئىنكاس يوق" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "تەپسىلاتلار..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى." @@ -6201,13 +6217,15 @@ msgid "Change password" msgstr "پارولنى ئۆزگەرتىش" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "پارول يوق" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "قايتا كىرگۈزىش" @@ -6230,8 +6248,9 @@ msgstr "ساندان قۇرۇش" msgid "Create" msgstr "قۇرۇش" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "ھوقۇقسىز" @@ -6241,12 +6260,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "ئىسمى" @@ -6409,7 +6428,7 @@ msgid "View output as text" msgstr "ھۆججەتنى باشقا ساقلاش" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -6877,52 +6896,52 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Go to database: %s" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "تۈزىلىشىنىلا" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6991,11 +7010,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7245,7 +7264,7 @@ msgstr "phpMyAdmin ھۆججىتى" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7354,82 +7373,82 @@ msgstr "" msgid "Authenticating..." msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Columns terminated by" msgid "Columns separated with:" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with:" msgstr "مەزمۇن ئايرىش بەلگىسى" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with:" msgstr "مەزمۇنئايلاندۇرۇش بەلگىسى" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "نى ئالماشتۇرۇش ئۈچۈنNULL " -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel نۇسخىسى" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "ئايلاندۇرۇپ ساقلاش جەدىۋېلىدىكى سانلىق مەلۇمات" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7437,24 +7456,24 @@ msgstr "" msgid "Definition" msgstr "ئىزاھات" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "جەدېۋەلنىڭ تۈزىلىشى" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7472,254 +7491,245 @@ msgstr "داۋاملاشتۇرلىدىغان" msgid "Structure of table @TABLE@" msgstr "تۈزىلىشىنىلا" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "جەدېۋەلنىڭ تىمىسى" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Table comments" msgid "Display comments" msgstr "جەدۋەل ئىزاھى" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "ئاساسىي ماشىنا" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "قۇرۇلغان ۋاقتى" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "مۇلازىمىتىر نۇسخىسى" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHPنۇسخىسى" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWikiكۈرۈنىشى" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Invalid table name" msgid "Export table names" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "Export" msgid "Export table headers" msgstr "چىقىرىش" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "دوكلات تېمىسى" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP سانلىق گۇرۇپىسى" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Add constraints" msgid "Add statements:" msgstr "مەجبۇرى قوشۇش" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Action" +msgid "Data creation options" +msgstr "ئامال" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "قاراش" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7788,6 +7798,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWikiكۈرۈنىشى" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7845,6 +7859,10 @@ msgstr "SQLئۆز ئىچىگە ئالغان شەكلى" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8028,11 +8046,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "تاللاشنى بىكار قىلىش" @@ -8052,9 +8071,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -8089,34 +8109,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8130,7 +8159,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8170,8 +8199,8 @@ msgid "Edit event" msgstr "مەجبۇرى قوشۇش" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" @@ -8254,7 +8283,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8399,24 +8429,24 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8576,28 +8606,28 @@ msgstr "سانداندا جەدۋەل يوق" msgid "There are no events to display." msgstr "ئىزلانغان جەدۋەل" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8742,6 +8772,439 @@ msgstr "" msgid "Current Server" msgstr "مۇلازىمىتېر" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "چىقىرىش" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "ھۇقۇقى" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "ھۇقۇقى" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8788,11 +9251,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -9061,12 +9524,6 @@ msgstr "مۇلازىمىتىر نۇسخىسى" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "" - #: main.php:217 #, fuzzy #| msgid "Remove database" @@ -9591,429 +10048,20 @@ msgstr "" msgid "disabled" msgstr "تاقالدى" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "چىقىرىش" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "ھۇقۇقى" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "ھۇقۇقى" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11592,39 +11640,39 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" @@ -13416,6 +13464,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP سانلىق گۇرۇپىسى" + #~ msgid "rows" #~ msgstr "كۆزەت" diff --git a/po/uk.po b/po/uk.po index 32638b90fa..0c7fb22c82 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: ukrainian \n" @@ -16,7 +16,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Показати все" @@ -41,16 +42,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Шукати" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -60,24 +61,26 @@ msgstr "Шукати" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "Вперед" @@ -111,7 +114,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Базу даних %1$s створено." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Коментар бази даних: " @@ -121,17 +124,17 @@ msgstr "Коментар бази даних: " msgid "Table comments" msgstr "Коментарі таблиці" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -143,34 +146,34 @@ msgstr "Стовпчик" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Тип" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -179,13 +182,13 @@ msgid "Null" msgstr "Нуль" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -193,10 +196,10 @@ msgstr "Нуль" msgid "Default" msgstr "По замовчуванню" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -205,10 +208,10 @@ msgstr "Лінки до" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -219,18 +222,21 @@ msgstr "Коментарі" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Ні" @@ -243,19 +249,22 @@ msgstr "Ні" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Так" @@ -263,8 +272,8 @@ msgstr "Так" msgid "View dump (schema) of database" msgstr "Переглянути дамп (схему) БД" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "В БД не виявлено таблиць." @@ -280,76 +289,76 @@ msgstr "Зняти всі відмітки" msgid "The database name is empty!" msgstr "Ім'я бази даних порожнє!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Базу даних %s перейменовано в %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Базу даних %s скопійовано в %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Перейменувати базу даних в" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "Видалити базу даних" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "Базу даних %s знищено." -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "Знищити базу даних (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Копіювати базу даних в" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Лише структуру" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Структуру і дані" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Лише дані" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Виконайте CREATE DATABASE перед копіюванням" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "Додати %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "Додати AUTO_INCREMENT значення" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Додати constraints" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Перейти до скопійованої бази даних" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -359,7 +368,7 @@ msgstr "Перейти до скопійованої бази даних" msgid "Collation" msgstr "Порівняння" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -368,7 +377,7 @@ msgstr "" "Сховище конфігурації phpMyAdmin деактивовано. Для того, щоб довідатись чому, " "натисніть %sтут%s." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "Редагувати або експортувати схему зв'язків" @@ -378,16 +387,18 @@ msgstr "Редагувати або експортувати схему зв'я #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Таблиця" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Рядки" @@ -397,13 +408,13 @@ msgid "Size" msgstr "Розмір" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "використовується" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -411,7 +422,7 @@ msgstr "Створення" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -419,7 +430,7 @@ msgstr "Останнє оновлення" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -433,92 +444,15 @@ msgstr[0] "%s таблиця" msgstr[1] "%s таблиці" msgstr[2] "%s таблиць" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Необхідно вибрати принаймі один Стовпчик для показу" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Зростаючий" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Спадаючий" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Посортувати" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Показати" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Критерій" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "Додати/Прибрати рядки критеріїв" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "Додати/Прибрати колонки" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Доповнити запит" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Використовувати таблиці" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Або" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Та" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Вставити" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Видалити" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Змінити" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "Перемкнутись на %sвізуальний конструктор%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "SQL-запит до БД %s:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "Виконати запит" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -559,7 +493,7 @@ msgstr "Трекінг є активним." msgid "Tracking is not active." msgstr "Трекінг не активний." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -589,20 +523,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s механізм зберігання за замовчуванням на цьому MySQL сервері." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "З відміченими:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Відмітити все" @@ -610,31 +545,32 @@ msgstr "Відмітити все" msgid "Check tables having overhead" msgstr "Перевірити чи мають таблиці накладні витрати" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Очистити" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -678,17 +614,18 @@ msgstr "Відслідковувані таблиці" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "БД" @@ -706,18 +643,26 @@ msgstr "Оновлено" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Статус" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Дія" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Показати" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Видалити дані спостереження для цієї таблиці" @@ -760,20 +705,20 @@ msgstr "Журнал бази даних" msgid "Bad type!" msgstr "Невірний тип!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Обранний тип експорту збережений в файл!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "Невірні параметри!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "Бракує місця для збереження файлу %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -781,12 +726,12 @@ msgstr "" "Файл %s існує на сервері, прошу змінити назву файлу, або відмітити опцію " "заміни існуючих файлів." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб-сервер не має привілеїв для збереження файлу %s." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump збережено у файл %s." @@ -810,7 +755,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "Геометрія" @@ -883,7 +828,7 @@ msgstr "" "Оберіть \"ГеометріюЗТексту\" (\"GeomFromText\") із \"Функції\" стовпчика та " "вставте після рядка в поле \"Значення\"" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -893,20 +838,20 @@ msgstr "" "зверніться до %sдокументації%s для знаходження шляхів вирішення цієї " "проблеми." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Показані закладки" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Закладку було видалено." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Неможливо прочитати файл" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -916,7 +861,7 @@ msgstr "" "Ви намагаєтесь завантажитит файл з непідтрумуваною компресією (%s). " "Підтримка якої не здійснюється або вимкнена у вашій конфігурації." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -926,28 +871,28 @@ msgstr "" "файлу перевищив допустимий максимум для вашої PHP конфігурації. Дивіться " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Неможливо конвертувати кодування файлів без бібліотеки кодування" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Неможливо завантажити імпортовані плагіни, будь ласка перевірте ваше " "інсталювання!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створена" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Імпорт завершився успішно, %d запитів виконано." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -955,7 +900,7 @@ msgstr "" "Досягнуто часове обмеження віконання скрипту, якщо Ви бажаєте закінчити " "імпорт, необхідно повторно відправити той самий файл." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -964,8 +909,8 @@ msgstr "" "phpMyAdmin не зможе закінчити цей імпорт якщо Ви на збільшите час виконання " "PHP скриптів." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -980,7 +925,7 @@ msgstr "Назад" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin є більш зручним в браузері з підтримкою фреймів." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператори \"DROP DATABASE\" заборонені." @@ -990,7 +935,7 @@ msgstr "Оператори \"DROP DATABASE\" заборонені." msgid "Do you really want to execute \"%s\"?" msgstr "Ви насправді хочете " -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Ви збираєтесь здійснити ЗНИЩЕННЯ БД!" @@ -1050,16 +995,20 @@ msgstr "Порожнє ім'я хоста!" msgid "The user name is empty!" msgstr "Порожнє і'мя користувача!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Порожній пароль!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "Додати користувача" @@ -1079,9 +1028,9 @@ msgstr "Закрити" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1327,12 +1276,13 @@ msgstr "Додати графік до сітки" msgid "Please add at least one variable to the series" msgstr "Будь ласка додайте щонайменше одну змінну до ряду" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Жодного" @@ -1520,10 +1470,10 @@ msgid "Explain output" msgstr "Тлумачити вихідні дані" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Час" @@ -1835,7 +1785,7 @@ msgstr "Показати блок запиту" msgid "No rows selected" msgstr "Рядків не вибрано" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Змінити" @@ -1844,8 +1794,8 @@ msgstr "Змінити" msgid "Query execution time" msgstr "Час виконання запиту" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -1922,7 +1872,7 @@ msgstr "Зміст" msgid "Ignore" msgstr "Ігнорувати" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "Копіювати" @@ -2418,14 +2368,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Помилка" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL-запит" @@ -2436,7 +2386,7 @@ msgstr "SQL-запит" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2465,6 +2415,10 @@ msgstr "без PHP коду" msgid "Create PHP Code" msgstr "Створити PHP код" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "Виконати запит" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2489,7 +2443,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "в рядок" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Профілювання" @@ -2516,14 +2470,14 @@ msgstr "Пропущено параметр:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "Почати" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2531,7 +2485,7 @@ msgstr "Попередній" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2539,7 +2493,7 @@ msgstr "Вперед" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2562,16 +2516,17 @@ msgstr "Клікніть, щоб змінити" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" @@ -2579,21 +2534,20 @@ msgstr "Структура" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Вставити" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Переглянути" @@ -2614,21 +2568,21 @@ msgstr "Переглянути Ваш комп'ютер:" msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "Немає файлів для завантаження" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "Виконати" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Друк" @@ -2647,6 +2601,74 @@ msgstr "" msgid "Font size" msgstr "Розмір шрифту" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Зростаючий" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Спадаючий" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Посортувати" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Критерій" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "Додати/Прибрати рядки критеріїв" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "Додати/Прибрати колонки" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Доповнити запит" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Використовувати таблиці" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Або" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Та" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Вставити" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Видалити" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Змінити" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "SQL-запит до БД %s:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "принаймі одне з слів" @@ -2691,8 +2713,8 @@ msgstr[2] "%s співпадінь у таблиці %s" msgid "Delete the matches for the %s table?" msgstr "Видалити співпадіння для таблиці %s ?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2727,69 +2749,69 @@ msgstr "Всередині таблиць:" msgid "Inside column:" msgstr "Всередині стовпчика:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows:" msgid "Number of rows" msgstr "Число рядків:" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "More" msgid "Mode" msgstr "Більше" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "горизонтальному" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "горизонтальному (повернуті заголовки)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "вертикальному" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute every" msgid "Headers every %s rows" msgstr "Виконати кожні" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2802,115 +2824,115 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Часткові тексти" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Повні тексти" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Схема зв'язків" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Показувати двійковий вміст як HEX" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Перетворення МІМЕ-типу бровзером" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Рядок видалено" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Вбити" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "по запиту" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Показано записи" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "всього" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Показати PDF схему" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Створити користувача" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Лінк не знайдено" @@ -3036,8 +3058,8 @@ msgstr "" "вилученим." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Бази Даних" @@ -3053,11 +3075,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3075,9 +3097,9 @@ msgstr "" msgid "Query" msgstr "Запит згідно прикладу" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Привілеї" @@ -3086,7 +3108,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3185,45 +3207,45 @@ msgstr "%s було вимкнене для цього MySQL серверу." msgid "This MySQL server does not support the %s storage engine." msgstr "Цей MySQL сервер не підтримує %s кодування." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "невідомий статус таблиці: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Тема %s не знайдена!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Неправильна база даних" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Неправильна назва таблиці" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Помилка зміни назви таблиці %1$s на %2$s" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Таблицю %s було перейменовано в %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "Неможливо зберегти табличні налаштування UI" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3232,7 +3254,7 @@ msgstr "" "Помилка очищення таблиичних налаштувань UI (див. $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3244,7 +3266,7 @@ msgstr "" "таблиці." #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функція" @@ -3256,7 +3278,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3301,7 +3323,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3664,7 +3686,7 @@ msgstr "загальні" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Таблиць" @@ -3675,9 +3697,10 @@ msgstr "Таблиць" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Дані" @@ -3801,32 +3824,32 @@ msgid "Disabled" msgstr "заблоковано" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "структура" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "дані" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "структура і дані" @@ -4251,13 +4274,13 @@ msgstr "Стискання" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "Помістити імена колонок в перший рядок" @@ -4280,7 +4303,6 @@ msgstr "Колонки екрануються у" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "Замінити NULL на" @@ -4320,23 +4342,22 @@ msgstr "Шаблон імені таблиці" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "Дамп таблиці" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Вставити заголовок таблиці" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Заголовок таблиці" @@ -4345,14 +4366,14 @@ msgid "Continued table caption" msgstr "Продовжений заголовок таблиці" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Ключ підпису" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME type" @@ -4389,7 +4410,7 @@ msgid "SQL compatibility mode" msgstr "Режим сумісності SQL" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE опції:" @@ -4402,7 +4423,7 @@ msgid "Use delayed inserts" msgstr "Використовувати вставки з затримкою" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Відключити перевірки зовнішніх ключів" @@ -4419,7 +4440,7 @@ msgid "Syntax to use when inserting data" msgstr "Синтакс що використовується коли вставляють дані" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Максимальна довжина створеного запиту" @@ -4428,7 +4449,7 @@ msgid "Export type" msgstr "Тип експорту" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Помістити експорт у транзакцію" @@ -4485,7 +4506,6 @@ msgstr "Налаштувати опції по замовчуванню" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4544,7 +4564,6 @@ msgid "Set import and export directories and compression options" msgstr "Встанови теки імпорту та експорту та параметри стискання" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4777,7 +4796,6 @@ msgid "Customize text input fields" msgstr "Налаштувати текстові поля вводу" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! текст" @@ -5898,9 +5916,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Пароль" @@ -6062,7 +6082,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6084,19 +6103,16 @@ msgstr "Налаштування експорту бази даних" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "CSV для даних MS Excel" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6152,25 +6168,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6181,13 +6197,15 @@ msgid "Change password" msgstr "Змінити пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Без паролю" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Підтвердження" @@ -6210,8 +6228,9 @@ msgstr "Створити нову БД" msgid "Create" msgstr "Створити" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Без привілеїв" @@ -6221,12 +6240,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Назва" @@ -6362,7 +6381,7 @@ msgid "View output as text" msgstr "Зберегти вивід у файл" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "Формат:" @@ -6826,53 +6845,53 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "БД відсутні" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Set value: %s" msgid "Go to table: %s" msgstr "Встановити значення: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Лише структуру" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -6943,11 +6962,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7199,7 +7218,7 @@ msgstr "Документація по phpMyAdmin" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7315,105 +7334,105 @@ msgstr "Не підключений валідний ключ аутентифі msgid "Authenticating..." msgstr "Авторизуємося..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Рядки розділено" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Поля взято в" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Поля екрануються" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Рядки розділено" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Замінити NULL на" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy #| msgid "Database export options" msgid "Data dump options" msgstr "Налаштування експорту бази даних" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Дамп даних таблиці" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Подія" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Визначення" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Структура таблиці" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7429,257 +7448,248 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "Структура таблиці @TABLE@" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Опції перетворення" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table of contents" msgid "Table caption (continued)" msgstr "Зміст" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Показувати коментарі стовпців" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Доступні MIME-types" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Хост" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Час створення" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Версія сервера" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "Версія PHP" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Invalid table name" msgid "Export table names" msgstr "Неправильна назва таблиці" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "горизонтальному (повернуті заголовки)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Import files" msgid "Report title:" msgstr "Імпорт файлів" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Параметр" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Параметр" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Опції перетворення" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Дозволити читання даних." -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7748,6 +7758,10 @@ msgstr "Назви колонок" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7801,6 +7815,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8027,11 +8045,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "без опису" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Зняти усі відмітки" @@ -8051,9 +8070,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Ім'я користувача" @@ -8088,34 +8108,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Довільний користувач" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Використовувати текстове поле" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Довільний хост" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Локальний" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Цей хост" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Використовувати Таблицю Хостів" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8129,7 +8158,7 @@ msgstr "Згенерувати пароль" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8166,8 +8195,8 @@ msgid "Edit event" msgstr "Редагувати подію" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Помилка при обробці запиту" @@ -8245,7 +8274,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "Новий" @@ -8374,7 +8404,12 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "Результати виконання порядку %s" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -8382,18 +8417,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "Результати виконання порядку %s" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "Виконати порядок" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "Параметри порядку" @@ -8524,28 +8554,28 @@ msgstr "У базі даних %2$s немає події з назвою %1$s" msgid "There are no events to display." msgstr "Немає подій." -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "Таблиця %s не існує!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Прошу сконфігурувати координати для таблиці %s" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Схема бази даних %s - Сторінка %s" @@ -8684,6 +8714,465 @@ msgstr "Невідома мова: %1$s." msgid "Current Server" msgstr "Поточний Сервер" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Немає прав." + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "Містить всі права за винятком GRANT." + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Дозволити читання даних." + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Дозволити вставку та заміну даних." + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Дозволити зміну даних." + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Дозволяє видалення даних." + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Дозволяє створювати нові бази даних і таблиці." + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Дозволяє видалення баз даних та таблиць." + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "Дозволити перезавантаження установок та очищення кешу сервера." + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Дозволити вимкнення сервера." + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Дозволяє перегляд процесів усіх користувачів" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Дозволити імпорт даних з файлів, та експорт у файли." + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "Неефективно для цієї версії MySQL." + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Дозволити створення та знищення індексів." + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Дозволяє змінювати структуру наявних таблиць." + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Надає доступ до повного списку баз даних." + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Дозволити під'єднання, навіть якщо досягнуто максимальної кількості " +"під'єднань; обов'язково для більшості адміністративних операцій таких як " +"встановлення глобальних змінних чи припинення процесів інших користувачів." + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Дозволяє створювати тимчасові таблиці." + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Дозволити блокування таблиць для біжучих потоків." + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Необхідно для реплікації slaves." + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "Надати користувачу право запитувати де є slaves / masters." + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Дозволяє встановлювати події у планувальник подій" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "Дозволяє створення та видалення тригерів" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Дозволяє виконувати SHOW CREATE VIEW запити." + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Дозволяє створення збережених процедур." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Дозволяє зміну та видалення збережених процедур." + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" +"Дозволяє створення, видалення та перейменування облікових записів " +"користувачів." + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Дозволяє виконання збережених процедур." + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Немає" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Обмеження ресурсів" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Обмежити кількість запитів, які користувач може надіслати серверу протягом " +"години." + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази " +"даних, які користувач може виконати протягом години." + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Обмежити кількість нових під'єднань, які користувач може створювати протягом " +"години." + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "Обмежити кількість одночасних підключень, які користувач може мати." + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Права, які стосуються таблиці" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "Примітка: назви прав MySQL задаються по-англійськи" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Адміністрування" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Глобальні права" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Права, які стосуються бази даних" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Дозволяє створювати нові таблиці." + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Дозволяє знищувати таблиці." + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Дозволити додавання користувачів та прав без перезавантаження таблиці прав." + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Інформація авторизації" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Не змінювати пароль" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "Пароль для %s успішно змінено." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "Ви відмінили права для %s" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "Користувачі, котрі мають доступ до "%s"" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Користувач" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "Grant" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "The row has been deleted" +msgid "User has been added." +msgstr "Рядок видалено" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Довільний" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "глобальний" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "специфічний для бази даних" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "шаблон" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Не знайдено користувача." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Редагування прав" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Відмінити" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Експорт" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... залишити старого." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... знищити старого з таблиці користувачів." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... анулювати всі активні права старого користувача, знищивши його після " +"того." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +" ... знищити старого з таблиці користувачів та перевантажити права після " +"того." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Змінити реєстраційні дані / Копіювати користувача" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Створити нового користувача з такими ж правами і ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Права, які стосуються колонок таблиці" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Додати права для цієї бази даних" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Додати права для цієї таблиці" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Видалити вибраних користувачів" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "Відмінити всі активні права користувачів та усунути їх після цього." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Не вибрано користувачів для видалення!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Перезавантаження прав" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Вибраних користувачів успішно видалено." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "Ви оновили права для %s." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Привілеї" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Привілеї" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Огляд користувачів" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав " +"MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються " +"сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " +"необхідно %sперезавантажити права%s перед продовженням." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Вказаного користувача не знайдено в таблиці прав." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Ви додали нового користувача." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8730,11 +9219,11 @@ msgstr "Очистити" msgid "Columns" msgstr "Колонки" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL запит" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Надати всім користувачам доступ до цієї закладки" @@ -9033,12 +9522,6 @@ msgstr "Версія сервера" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Користувач" - #: main.php:217 #, fuzzy #| msgid "Remove database" @@ -9562,455 +10045,20 @@ msgstr "Ліцензія" msgid "disabled" msgstr "відключено" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "Містить всі права за винятком GRANT." - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Дозволяє змінювати структуру наявних таблиць." - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Дозволяє зміну та видалення збережених процедур." - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Дозволяє створювати нові бази даних і таблиці." - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Дозволяє створення збережених процедур." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Дозволяє створювати нові таблиці." - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Дозволяє створювати тимчасові таблиці." - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" -"Дозволяє створення, видалення та перейменування облікових записів " -"користувачів." - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Дозволяє видалення даних." - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Дозволяє видалення баз даних та таблиць." - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Дозволяє знищувати таблиці." - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Дозволяє встановлювати події у планувальник подій" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Дозволяє виконання збережених процедур." - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Дозволити імпорт даних з файлів, та експорт у файли." - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Дозволити додавання користувачів та прав без перезавантаження таблиці прав." - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Дозволити створення та знищення індексів." - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Дозволити вставку та заміну даних." - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Дозволити блокування таблиць для біжучих потоків." - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Обмежити кількість нових під'єднань, які користувач може створювати протягом " -"години." - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Обмежити кількість запитів, які користувач може надіслати серверу протягом " -"години." - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази " -"даних, які користувач може виконати протягом години." - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "Обмежити кількість одночасних підключень, які користувач може мати." - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Дозволяє перегляд процесів усіх користувачів" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "Неефективно для цієї версії MySQL." - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "Дозволити перезавантаження установок та очищення кешу сервера." - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "Надати користувачу право запитувати де є slaves / masters." - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Необхідно для реплікації slaves." - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Дозволити читання даних." - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Надає доступ до повного списку баз даних." - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Дозволяє виконувати SHOW CREATE VIEW запити." - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Дозволити вимкнення сервера." - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Дозволити під'єднання, навіть якщо досягнуто максимальної кількості " -"під'єднань; обов'язково для більшості адміністративних операцій таких як " -"встановлення глобальних змінних чи припинення процесів інших користувачів." - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "Дозволяє створення та видалення тригерів" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Дозволити зміну даних." - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Немає прав." - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Немає" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Права, які стосуються таблиці" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "Примітка: назви прав MySQL задаються по-англійськи" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Адміністрування" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Глобальні права" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Права, які стосуються бази даних" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Обмеження ресурсів" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Інформація авторизації" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Не змінювати пароль" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Не знайдено користувача." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "Користувач %s вже існує!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Ви додали нового користувача." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "Ви оновили права для %s." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "Ви відмінили права для %s" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "Пароль для %s успішно змінено." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "Видалення %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Не вибрано користувачів для видалення!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Перезавантаження прав" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Вибраних користувачів успішно видалено." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Права успішно перезавантажено." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Редагування прав" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Відмінити" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Експорт" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Довільний" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Привілеї" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Привілеї" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Огляд користувачів" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "Grant" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Видалити вибраних користувачів" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Відмінити всі активні права користувачів та усунути їх після цього." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав " -"MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються " -"сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " -"необхідно %sперезавантажити права%s перед продовженням." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Вказаного користувача не знайдено в таблиці прав." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Права, які стосуються колонок таблиці" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Додати права для цієї бази даних" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Додати права для цієї таблиці" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Змінити реєстраційні дані / Копіювати користувача" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Створити нового користувача з такими ж правами і ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... залишити старого." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... знищити старого з таблиці користувачів." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... анулювати всі активні права старого користувача, знищивши його після " -"того." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -" ... знищити старого з таблиці користувачів та перевантажити права після " -"того." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "Користувачі, котрі мають доступ до "%s"" - -#: server_privileges.php:2544 -msgid "global" -msgstr "глобальний" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "специфічний для бази даних" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "шаблон" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "The row has been deleted" -msgid "User has been added." -msgstr "Рядок видалено" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11610,41 +11658,41 @@ msgstr "" msgid "Wrong data" msgstr "БД відсутні" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ви насправді хочете " -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Перевірити SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL result" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Згенеровано" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Мітка" diff --git a/po/ur.po b/po/ur.po index cc7ed83853..bf6e7c1ba5 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-20 00:33+0200\n" "Last-Translator: dasatti \n" "Language-Team: Urdu \n" @@ -18,7 +18,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "تمام دکھائیں" @@ -42,16 +43,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "تلاش" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -61,24 +62,26 @@ msgstr "تلاش" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "جائیں" @@ -113,7 +116,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "ڈیٹا بیس %1$s بنا دیا گیا" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "کوائفیہ تبصرہ: " @@ -123,17 +126,17 @@ msgstr "کوائفیہ تبصرہ: " msgid "Table comments" msgstr "جدول تبصرے" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -147,34 +150,34 @@ msgstr "کالم" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "قِسم" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -183,13 +186,13 @@ msgid "Null" msgstr "خالی" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -197,10 +200,10 @@ msgstr "خالی" msgid "Default" msgstr "طے شدہ" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -209,10 +212,10 @@ msgstr "ربط بطرف" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -223,18 +226,21 @@ msgstr "تبصرہ" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "نہیں" @@ -247,19 +253,22 @@ msgstr "نہیں" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "ہاں" @@ -267,8 +276,8 @@ msgstr "ہاں" msgid "View dump (schema) of database" msgstr "کوائفیہ کی ڈمپ (شجرہ) منظر کریں" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "کوائفیہ میں کوئی جدول نہیں مِلا۔" @@ -284,76 +293,76 @@ msgstr "تمام انتخاب ختم کریں" msgid "The database name is empty!" msgstr "کوائفیہ نام خالی ہے!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "کوائفیہ %s() نام %s میں تبدیل ہوچکا ہے" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "کوائفیہ %s نام %s میں نقل کیا جاچکا ہے" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "کوائفیہ نام بدلیں" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "کوائفیہ ہٹائیں" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "کوائفیہ چھوڑیں (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "کوائفیہ نقل کریں بطرف" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "صرف ساخت" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "ساخت اور کوائف" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "کوائف صرف" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE نقل سے قبل" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "اضافہ کریں %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قدر اضافہ کریں" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "پابندیاں لگائیں" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "نقل شدہ کوائفیہ پر جائیں" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -363,7 +372,7 @@ msgstr "نقل شدہ کوائفیہ پر جائیں" msgid "Collation" msgstr "ترتیب" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -372,7 +381,7 @@ msgstr "" "phpMyAdmin کی تشکیل زخیرہبند کر دی گئی ہے۔ اس بارے میں جاننے کے لیے %share%s " "کلک کریں۔" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" @@ -382,16 +391,18 @@ msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "جدول" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "صفیں" @@ -402,13 +413,13 @@ msgid "Size" msgstr "ناپ" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "استعمال میں ہے" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -416,7 +427,7 @@ msgstr "بنائیں" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -424,7 +435,7 @@ msgstr "آخری دفعہ کی تازہ کاری" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -437,93 +448,16 @@ msgid_plural "%s tables" msgstr[0] "%s جدول" msgstr[1] "%s جداول" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "آپ کو دکھانے کے لیے کم از کم ایک کالم چننا ہو گا" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "صعودی" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "نزولی" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "چھانٹیں" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "دکھائیں" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "کسوٹی" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "کسوٹی صفیں اضافہ/حذف کریں" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "کالم اضافہ/حذف کریں" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "طلب تازہ کریں" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "جداول استعمال کریں" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "یا" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "اور" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Ins" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Del" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "ترمیم" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "بصری تعمیر کنندہ" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "کوائفیہ کے لیے %s SQL طلب" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "طلب بھیجیں" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -564,7 +498,7 @@ msgstr "کھوج فعال ہے۔" msgid "Tracking is not active." msgstr "کھوج غیر فعال ہے۔" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -593,20 +527,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "مع منتخب:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "تمام پڑتال کریں" @@ -614,31 +549,32 @@ msgstr "تمام پڑتال کریں" msgid "Check tables having overhead" msgstr "اوور ہیڈ جداول کی پڑتال کریں" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "برآمد" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "چھپائی منظر" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "خالی" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -686,17 +622,18 @@ msgstr "کھوج شدہ جداول" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "کوائفیہ" @@ -714,18 +651,26 @@ msgstr "تازہ کی گئی" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "حالت" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "عمل" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "دکھائیں" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" @@ -768,22 +713,22 @@ msgstr "کوائفیہ لاگ" msgid "Bad type!" msgstr "برآمد" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "منتخب برآمد قسم اس مسل میں محفوظ ہو!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Remove database" msgid "Bad parameters!" msgstr "کوائفیہ ہٹائیں" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "مسل %s محفوظ کرنے کے لیے ناکافی جگہ ہے۔" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -791,12 +736,12 @@ msgstr "" "مسل %s اس سرور میں پہلے سے موجود ہے، مسل نام تبدیل کریں یا بر تحریر اختیار " "پڑتال کریں۔" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "اس مسل %s کو محفوظ کرنے کے لیے ویب سرور کے پاس اجازت نہیں ہے۔" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" @@ -822,7 +767,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -903,7 +848,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -912,20 +857,20 @@ msgstr "" "آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " "%sdocumentation%s دیکھیں۔" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "نشانی دکھاتے ہوئے" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "نشانی حذف ہوچکا ہے۔" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "مسل قابل مطالعہ نہیں ہے" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -935,7 +880,7 @@ msgstr "" "آپ نے غیر معاون سکڑاؤ (%s) کے ساتھ مسل لوڈ کرنے کی کوشش کی ہے۔ ممکن ہے کہ یہ " "معاونت لاگو نہیں ہے یا تشکیل میں نااہل کیا گیا ہے۔" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -945,26 +890,26 @@ msgstr "" "سائز مقررہ حد سے تجاوز کرگئی ہو جو آپ کے PHP تشکیل میں ہے۔ دیکھیں[a@./" "Documentation.html#faq1_16@Documentation]عمومی سوالات 1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "درآمد پلگ ان لوڈ نہیں ہوسکے، اپنی تنصیب کا پڑتال کریں!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "نشانی %s بنایا گیا" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "درآمد کامیابی سے مکمل ہوا, %d طلب چلائے۔" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -972,7 +917,7 @@ msgstr "" "سکرپٹ وقت ختم ہوا، اگر آپ درآمد مکمل کرنا چاہتے ہیں تو اسی مسل کو دوبارہ " "بھیجیں اور درآمد دوبارہ شروع ہوگا۔" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -980,8 +925,8 @@ msgstr "" "بہرحال آخری دفعہ کوائف صرفی نہیں ہوا، اس کا مطلب ہے کہ phpMyAdmin اس درآمد " "کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -996,7 +941,7 @@ msgstr "واپس" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin ایک فریم صلاحیت والے براؤزر کے ساتھ زیادہ موزوں ہے۔" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" @@ -1006,7 +951,7 @@ msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" msgid "Do you really want to execute \"%s\"?" msgstr "کیا آپ واقعی چاہتے ہیں" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!" @@ -1075,16 +1020,20 @@ msgstr "ہوسٹ نام خالی ہے!" msgid "The user name is empty!" msgstr "صارف کا نام خالی ہے" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "پاس ورڈ خالی ہے" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "پاس ورڈ ایک جیسے نہیں ہیں" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Add %s" msgid "Add user" @@ -1106,9 +1055,9 @@ msgstr "بند کریں" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1378,12 +1327,13 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "" @@ -1573,10 +1523,10 @@ msgid "Explain output" msgstr "SQL کی تفصیل بتائیں" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "وقت" @@ -1919,7 +1869,7 @@ msgstr "طلب خانہ دکھائیں" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "" @@ -1930,8 +1880,8 @@ msgstr "" msgid "Query execution time" msgstr "چلنے کی حد اوقات" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "" @@ -2008,7 +1958,7 @@ msgstr "" msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2505,14 +2455,14 @@ msgid "en" msgstr "انگریزی" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "نقص" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL طلب" @@ -2523,7 +2473,7 @@ msgstr "SQL طلب" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2552,6 +2502,10 @@ msgstr "PHP کوڈ کے بغیر" msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "طلب بھیجیں" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2576,7 +2530,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ان لائن" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "تفصیلات" @@ -2603,7 +2557,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2612,7 +2566,7 @@ msgstr "شروع" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2622,7 +2576,7 @@ msgstr "پچھلا" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2632,7 +2586,7 @@ msgstr "اگلا" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2657,16 +2611,17 @@ msgstr "انتخاب کے لیے کلک کریں" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "ساخت" @@ -2674,21 +2629,20 @@ msgstr "ساخت" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "داخل کریں" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "براؤز" @@ -2709,21 +2663,21 @@ msgstr "اپنے کمپیوٹر کو براؤز کریں:" msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "چھاپیں" @@ -2740,6 +2694,74 @@ msgstr "" msgid "Font size" msgstr "فانٹ سائز" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "صعودی" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "نزولی" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "چھانٹیں" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "کسوٹی" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "کسوٹی صفیں اضافہ/حذف کریں" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "کالم اضافہ/حذف کریں" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "طلب تازہ کریں" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "جداول استعمال کریں" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "یا" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "اور" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Ins" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Del" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "ترمیم" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "کوائفیہ کے لیے %s SQL طلب" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "کم از کم لفظوں میں سے ایک" @@ -2782,8 +2804,8 @@ msgstr[1] "%sجدول کے ساتھ مشابہات%s" msgid "Delete the matches for the %s table?" msgstr "اس جدول کے مشابہات حذف %s کریں؟" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2822,74 +2844,74 @@ msgstr "جدول میں:" msgid "Inside column:" msgstr "کالم میں:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "پوشہ محفوظ کریں" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Startup" msgid "Start row" msgstr "ابتدائیہ" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of inserted rows" msgid "Number of rows" msgstr "داخل شدہ صفوں کی تعداد" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "More" msgid "Mode" msgstr "مزید" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2902,107 +2924,107 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "ثنائی مشمولات بطور HEX دکھائیں" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "ٹیبل کمنٹس" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "" @@ -3127,8 +3149,8 @@ msgstr "" "جائے گا۔" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "کوائفیے" @@ -3144,11 +3166,11 @@ msgid "Tracking" msgstr "" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" @@ -3166,9 +3188,9 @@ msgstr "" msgid "Query" msgstr "" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "" @@ -3177,7 +3199,7 @@ msgid "Routines" msgstr "" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" @@ -3279,52 +3301,52 @@ msgstr "%s اس MySQL سرور کے لیے نااہل ہے۔" msgid "This MySQL server does not support the %s storage engine." msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت نہیں ہے۔" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "خیالیہ %s نیہں ملا!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "غلط کوائفیہ" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "غلط جدول نام" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3333,7 +3355,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3345,7 +3367,7 @@ msgstr "" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3390,7 +3412,7 @@ msgid "Maximum rows to plot" msgstr "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "" @@ -3753,7 +3775,7 @@ msgstr "حصہ دارانہ" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "جداول" @@ -3764,9 +3786,10 @@ msgstr "جداول" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "کوائف" @@ -3888,32 +3911,32 @@ msgid "Disabled" msgstr "غیر فعال" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "ساخت" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "کوائف" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "ساخت اور کوائف" @@ -4333,13 +4356,13 @@ msgstr "سکڑاؤ" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "کالم نام پہلے صف میں ڈالیں" @@ -4362,7 +4385,6 @@ msgstr "کالم جداجدا ہیں" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL کو ان سے بدلیں" @@ -4402,23 +4424,22 @@ msgstr "جدول نام سانچا" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "جدول ڈ٘مپ کریں" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "جدول عنوان شامل کریں" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "جدول عنوان" @@ -4427,14 +4448,14 @@ msgid "Continued table caption" msgstr "جاری شدہ جدول عنوان" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "سرنامہ کلید" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME قسم" @@ -4471,7 +4492,7 @@ msgid "SQL compatibility mode" msgstr "SQL موازنت موڈ" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4484,7 +4505,7 @@ msgid "Use delayed inserts" msgstr "تاخیر سے داخلے کا طریقہ استعمال کریں" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "فارن کلید پڑتال غیر فعال کریں" @@ -4501,7 +4522,7 @@ msgid "Syntax to use when inserting data" msgstr "کوائف داخل کرنے کا طریقہ کار" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "تخلیق شدہ طلب کی لمبائی کی حد" @@ -4510,7 +4531,7 @@ msgid "Export type" msgstr "برآمد قسم" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "ایک ٹرانزیکشن میں برآمد بند کریں" @@ -4565,7 +4586,6 @@ msgstr "طے شدہ اختیارات کی تخصیص کریں" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4624,7 +4644,6 @@ msgid "Set import and export directories and compression options" msgstr "درآمد اور برآمد کے لیے پوشے اور سکڑاؤ اختیارات مقرر کریں" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4855,7 +4874,6 @@ msgid "Customize text input fields" msgstr "متن ان پٹ قطعے تخصیص کریں" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! متن" @@ -6010,9 +6028,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -6178,7 +6198,6 @@ msgstr "" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "" @@ -6200,19 +6219,16 @@ msgstr "" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "" @@ -6270,25 +6286,25 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6299,13 +6315,15 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "" @@ -6328,8 +6346,9 @@ msgstr "جدول بنائیں" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "" @@ -6339,12 +6358,12 @@ msgid "Create table" msgstr "" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "" @@ -6488,7 +6507,7 @@ msgid "View output as text" msgstr "" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "" @@ -6948,54 +6967,54 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "کوائفیہ جائیں" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "حداول کی گنتی کریں" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "صرف ساخت" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "" @@ -7064,11 +7083,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7318,7 +7337,7 @@ msgstr "phpMyAdmin دستاویز" msgid "Reload navigation frame" msgstr "" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "" @@ -7430,70 +7449,70 @@ msgstr "جائز توثیقی کلید پلگ نہیں ہے" msgid "Authenticating..." msgstr "توثیق کررہا ہے..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7501,24 +7520,24 @@ msgstr "" msgid "Definition" msgstr "وضاحت" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "" @@ -7536,248 +7555,239 @@ msgstr "" msgid "Structure of table @TABLE@" msgstr "سٹرکچر صرف" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Table comments" msgid "Display comments" msgstr "ٹیبل کمنٹس" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Invalid table name" msgid "Export table names" msgstr "غلط جدول نام" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "Export method" msgid "Export table headers" msgstr "برآمد طریقہ" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Add constraints" msgid "Add statements:" msgstr "Add constraints" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Action" +msgid "Data creation options" +msgstr "عمل" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "ویو" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "" @@ -7846,6 +7856,10 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, php-format msgid "Invalid format of mediawiki input on line:
%s." @@ -7901,6 +7915,10 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8088,11 +8106,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "تمام غیر پڑتال کریں" @@ -8112,9 +8131,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "" @@ -8149,34 +8169,43 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8190,7 +8219,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8230,8 +8259,8 @@ msgid "Edit event" msgstr "نیا صارف اضافہ کریں" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" @@ -8317,7 +8346,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8462,25 +8492,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "" @@ -8640,28 +8670,28 @@ msgstr "کوائیفیہ میں کوئی جدول نہیں ملا" msgid "There are no events to display." msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -8804,6 +8834,439 @@ msgstr "" msgid "Current Server" msgstr "" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "برآمد" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Check Privileges" +msgid "Privileges for all users" +msgstr "استحقاق پڑتال کریں" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Check Privileges" +msgid "Privileges for %s" +msgstr "استحقاق پڑتال کریں" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8852,11 +9315,11 @@ msgstr "" msgid "Columns" msgstr "آراء-رائے" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "" @@ -9125,12 +9588,6 @@ msgstr "آخری نسخہ" msgid "Protocol version" msgstr "" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "" - #: main.php:217 #, fuzzy #| msgid "Remove database" @@ -9654,429 +10111,20 @@ msgstr "" msgid "disabled" msgstr "غیر فعال" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "برآمد" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Check Privileges" -msgid "Privileges for all users" -msgstr "استحقاق پڑتال کریں" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Check Privileges" -msgid "Privileges for %s" -msgstr "استحقاق پڑتال کریں" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "" - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "" - -#: server_privileges.php:2544 -msgid "global" -msgstr "" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" - #: server_replication.php:82 msgid "Unknown error" msgstr "" @@ -11671,39 +11719,39 @@ msgstr "" msgid "Wrong data" msgstr "کوائف" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "کیا آپ واقعی چاہتے ہیں" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "" diff --git a/po/uz.po b/po/uz.po index c6a40e4041..453842d598 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-17 15:09+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: uzbek_cyrillic \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Барчасини кўрсатиш" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Қидириш" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "Қидириш" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "OK" @@ -107,7 +110,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s маълумотлар базаси тузилди." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ: " @@ -117,17 +120,17 @@ msgstr "Маълумотлар базасига изоҳ: " msgid "Table comments" msgstr "Жадвал изоҳи" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -141,34 +144,34 @@ msgstr "Майдон номлари" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Тур" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -177,13 +180,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -191,10 +194,10 @@ msgstr "Null" msgid "Default" msgstr "Андоза" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -203,10 +206,10 @@ msgstr "Алоқалар" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -217,18 +220,21 @@ msgstr "Изоҳлар" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Йўқ" @@ -241,19 +247,22 @@ msgstr "Йўқ" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ҳа" @@ -261,8 +270,8 @@ msgstr "Ҳа" msgid "View dump (schema) of database" msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." @@ -278,80 +287,80 @@ msgstr "Белгилашни бекор қилиш" msgid "The database name is empty!" msgstr "Маълумотлар базаси номи бўш!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "`\"%s\"` маълумотлар базасининг номи `\"%s\"` деб ўзгартирилди." -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха кўчирилди." -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "\"%s\" маълумотлар омбори ўчирилди." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ушбу базага ўтиш" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Фақат тузилиши" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Фақат маълумотлар" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Чекловлар қўшиш" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Нусха олинган маълумотлар базасига ўтиш" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -361,7 +370,7 @@ msgstr "Нусха олинган маълумотлар базасига ўти msgid "Collation" msgstr "Таққослаш" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -373,7 +382,7 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -385,16 +394,18 @@ msgstr "Алоқалар схемаси" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Жадвал" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Қаторларсони" @@ -404,13 +415,13 @@ msgid "Size" msgstr "Ҳажми" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "ишлатилмоқда" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -418,7 +429,7 @@ msgstr "Тузиш" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -426,7 +437,7 @@ msgstr "Охирги янгиланиш" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -440,97 +451,16 @@ msgid_plural "%s tables" msgstr[0] "Жадваллар сони: \"%s\"" msgstr[1] "Жадваллар сони: \"%s\"" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак." -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "Ўсиш тартибида" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Камайиш тартибида" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Сортировка қилиш" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Кўрсатиш" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Критерий" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Қатор қўшиш/ўчириш" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Устун қўшиш/ўчириш" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "Сўровни янгилаш" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Жадвалларни ишлатиш" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Ёки" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Ва" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Қўйиш" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "Ўчириш" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "Ўзгаририш" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Нусха олинган жадвалга ўтиш" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "\"%s\" маълумотлар базасига SQL-сўров:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "сўровни бажариш" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -573,7 +503,7 @@ msgstr "Кузатиш фаол." msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -603,20 +533,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Белгиланганларни:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Барчасини белгилаш" @@ -624,31 +555,32 @@ msgstr "Барчасини белгилаш" msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Тозалаш" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -698,17 +630,18 @@ msgstr "Кузатилган жадваллар" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Маълумотлар базаси" @@ -726,18 +659,26 @@ msgstr "Янгиланди" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Ҳолат" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Амал" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Кўрсатиш" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" @@ -780,22 +721,22 @@ msgstr "База лог файлини" msgid "Bad type!" msgstr "Сўров тури" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Белгиланган экспорт тури файлга сақланиши шарт!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Apply index(s)" msgid "Bad parameters!" msgstr "Индекс(лар)ни сақлаш" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" файлини сақлаш учун дискда етарли жой мавжуд эмас." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -803,12 +744,12 @@ msgstr "" "\"%s\" файли серверда мавжуд, унинг номини ўзгартиринг ёки қайта ёзиш " "параметрини ёқинг." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" файлини веб-серверга сақлаш учун ҳуқуқлар етарли эмас." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп \"%s\" файлида сақланди." @@ -833,7 +774,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -916,7 +857,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -925,20 +866,20 @@ msgstr "" "Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " "%sдокументацияда%s келтирилган." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Хатчўпларни кўрсатиш" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Хатчўп ўчирилди." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Файлни ўқиб бўлмади!!" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -949,7 +890,7 @@ msgstr "" "эмас, шунинг учун ушбу файлни импорт қилиб бўлмайди. Агар дастур мавжуд " "бўлса, демак у конфигурация вақтида ўчириб қўйилган." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -960,28 +901,28 @@ msgstr "" "қийматдан катта. Қаранг: [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импорт муваффақиятли тугатилди, бажарилган сўровлар сони: %d." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -990,7 +931,7 @@ msgstr "" "ўша файлни танлаган ҳолда уни қайта ишга туширинг ва жараён узилган жойдан " "бошлаб давом этади." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -999,8 +940,8 @@ msgstr "" "Одатда, бу ҳол, php-сценарийлар учун ажратилган вақт оширилмагунча " "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -1016,7 +957,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ишлаши учун фреймлар билан ишлай оладиган браузер керак." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган." @@ -1026,7 +967,7 @@ msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) msgid "Do you really want to execute \"%s\"?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!" @@ -1097,16 +1038,20 @@ msgstr "Хост номи бўш!" msgid "The user name is empty!" msgstr "Фойдаланувчи номи белгиланмаган!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Парол белгиланмаган!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1132,9 +1077,9 @@ msgstr "Ёпиш" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1413,12 +1358,13 @@ msgstr "Тўрга боғлаб қўйиш" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Йўқ" @@ -1611,10 +1557,10 @@ msgid "Explain output" msgstr "Сўров таҳлили" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Вақт" @@ -1976,7 +1922,7 @@ msgstr "SQL сўровлари қутиси" msgid "No rows selected" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "Ўзгартириш" @@ -1987,8 +1933,8 @@ msgstr "Ўзгартириш" msgid "Query execution time" msgstr "Максимум бажарилиш вақти" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d сони тўғри қатор рақами эмас!" @@ -2071,7 +2017,7 @@ msgstr "Маълумотлар файли кўрсатгичи ҳажми" msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2628,14 +2574,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Хатолик" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL сўрови" @@ -2646,7 +2592,7 @@ msgstr "SQL сўрови" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2677,6 +2623,10 @@ msgstr "PHP-код олиб ташлаш" msgid "Create PHP Code" msgstr "PHP-код" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "сўровни бажариш" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2703,7 +2653,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Жадвал турлари" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Профиллаштириш" @@ -2732,7 +2682,7 @@ msgstr "Муолажалар" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2741,7 +2691,7 @@ msgstr "Боши" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2751,7 +2701,7 @@ msgstr "Орқага" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2761,7 +2711,7 @@ msgstr "Кейинги" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2788,16 +2738,17 @@ msgstr "Танлаш учун сичқонча тугмасини босинг" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Тузилиши" @@ -2805,21 +2756,20 @@ msgstr "Тузилиши" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Қўйиш" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Кўриб чиқиш" @@ -2841,21 +2791,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Чоп этиш" @@ -2872,6 +2822,78 @@ msgstr "" msgid "Font size" msgstr "Шрифт ўлчами" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "Ўсиш тартибида" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Камайиш тартибида" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Сортировка қилиш" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Критерий" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Қатор қўшиш/ўчириш" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Устун қўшиш/ўчириш" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "Сўровни янгилаш" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Жадвалларни ишлатиш" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Ёки" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Ва" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Қўйиш" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "Ўчириш" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "Ўзгаририш" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "\"%s\" маълумотлар базасига SQL-сўров:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "сўзлардан бири" @@ -2915,8 +2937,8 @@ msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s msgid "Delete the matches for the %s table?" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2957,75 +2979,75 @@ msgstr "Қуйидаги жадвал(лар)да қидириш:" msgid "Inside column:" msgstr "Қуйидаги майдон(лар)да қидириш: " -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "Сақлаш директорияси" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "CHAR textarea columns" msgid "Restore column order" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Бошлаш" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Майдонлар сони " -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Душ" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "горизонтал" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "горизонтал (айлантирилган сарлавҳалар)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "вертикал" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Белгиланган сўровни бажариш" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Индекс бўйича сортировка қилиш" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -3038,68 +3060,68 @@ msgstr "Индекс бўйича сортировка қилиш" msgid "Options" msgstr "Параметрлар" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Маълумотларни қисқартириб кўрсатиш" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Маълумотларни кенгайтирилган ҳолда кўрсатиш" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Алоқадор калит" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Алоқадор майдон қиймати" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Иккилик маълумотларни кўрсатиш" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "BLOB туридаги маълумотларни кўрсатиш" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Ўгириш" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Ёзув ўчирилди" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Тугатиш" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -3107,48 +3129,48 @@ msgstr "" "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]\"FAQ " "3.11\"[/a]га қаранг" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "сўров бўйича" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Ёзувларни кўрсатиш" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "жами" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Чоп этиш версияси (тўла)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схемани кўрсатиш" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Алоқа топилмади" @@ -3274,8 +3296,8 @@ msgid "" msgstr "%1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Маълумотлар базалари" @@ -3291,11 +3313,11 @@ msgid "Tracking" msgstr "Кузатиш" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Триггерлар" @@ -3313,9 +3335,9 @@ msgstr "Маълумотлар базаси бўш!" msgid "Query" msgstr "Сўров" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Привилегиялар" @@ -3324,7 +3346,7 @@ msgid "Routines" msgstr "Муолажалар" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Ҳодисалар" @@ -3433,55 +3455,55 @@ msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверд msgid "This MySQL server does not support the %s storage engine." msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Репликация сервери аҳволи ҳақида маълумот" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Манба база" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "\"%s\" мавзуси топилмади!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Нотўғри маълумотлар базаси" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Жадвал номи нотўғри" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3490,7 +3512,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функция" @@ -3502,7 +3524,7 @@ msgstr "Оператор" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3549,7 +3571,7 @@ msgid "Maximum rows to plot" msgstr "Кўрсатиладиган қаторларнинг максимал сони" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" @@ -3914,7 +3936,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Жадваллар" @@ -3925,9 +3947,10 @@ msgstr "Жадваллар" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Маълумотлар" @@ -4062,32 +4085,32 @@ msgid "Disabled" msgstr "Фаолсизлантирилган" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "тузилиш" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4544,13 +4567,13 @@ msgstr "Сиқиш" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4579,7 +4602,6 @@ msgstr "Белги олдида қуйидаги белги мавжуд " #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL қийматни қуйидагига алмаштириш" @@ -4625,25 +4647,24 @@ msgstr "Жадвал номи шаблони" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "Жадваллар сони: \"%s\"" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Жадвалга сарлавҳа қўшиш" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Жадвал сарлавҳаси" @@ -4652,14 +4673,14 @@ msgid "Continued table caption" msgstr "Жадвал сарлавҳаси (давоми)" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Белги идентификатори" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME тури" @@ -4700,7 +4721,7 @@ msgid "SQL compatibility mode" msgstr "SQL билан мослик режими" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4713,7 +4734,7 @@ msgid "Use delayed inserts" msgstr "Кечиктирилган қўйиш (DELAYED INSERTS) дан фойдаланиш" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Ташқи калитларни текширишни ўчириш" @@ -4730,7 +4751,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Тузилаёган сўровнинг максимал узунлиги" @@ -4741,7 +4762,7 @@ msgid "Export type" msgstr "Жадвалларни экспорт қилиш" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Транзакцияга экспортни қўшиш" @@ -4798,7 +4819,6 @@ msgstr "Экспорт афзалликларини созлаш" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4859,7 +4879,6 @@ msgid "Set import and export directories and compression options" msgstr "Импорт ва экспорт каталоглари ва қисиш усулларини белгилаш" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -5107,7 +5126,6 @@ msgid "Customize text input fields" msgstr "Экспорт танловларини мослаштириш" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! матн" @@ -6378,9 +6396,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Парол" @@ -6563,7 +6583,6 @@ msgstr "\"LOAD DATA\" ишлатилган CSV" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document жадвали" @@ -6587,19 +6606,16 @@ msgstr "Маълумотлар базаси экспорт параметрла #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excel учун CSV" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "OpenDocument матн" @@ -6667,7 +6683,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6675,21 +6691,21 @@ msgid "" "configured)." msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер жавоб бермаяпти" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Тафсилотлар..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6702,13 +6718,15 @@ msgid "Change password" msgstr "Паролни ўзгартириш" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Парол йўқ" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Тасдиқлаш" @@ -6733,8 +6751,9 @@ msgstr "Янги маълумотлар базаси тузиш" msgid "Create" msgstr "Тузиш" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Привилегиялар йўқ" @@ -6744,12 +6763,12 @@ msgid "Create table" msgstr "Жадвал тузиш" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Номи" @@ -6927,7 +6946,7 @@ msgid "View output as text" msgstr "Файл каби сақлаш" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7461,60 +7480,60 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " "бажаришингиз мумкин:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ушбу базага ўтиш" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ушбу жадвалга ўтиш" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Фақат тузилиши" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" @@ -7588,11 +7607,11 @@ msgid "" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" @@ -7846,7 +7865,7 @@ msgstr "phpMyAdmin документацияси" msgid "Reload navigation frame" msgstr "Навигация ойнасини қайта юклаш" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7966,86 +7985,86 @@ msgstr "Тўғри аутентификация калити уланмаган" msgid "Authenticating..." msgstr "Aутентификация..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Қаторлар бўлувчиси" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Майдон қийматлари қуйидаги белги ичига олинган " -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Белги олдида қуйидаги белги мавжуд " -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Қаторлар бўлувчиси" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "NULL қийматни қуйидагига алмаштириш" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove carriage return/line feed characters within columns" msgstr "Майдонлар ичидаги сатрдан-сатрга кўчириш белгиларини олиб ташлаш" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel-версияси" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy #| msgid "Databases display options" msgid "Data dump options" msgstr "Маълумотлар базаларини кўрсатиш афзалликлари" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Жадвал маълумотларини дамп қилиш" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Ҳодиса" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -8053,24 +8072,24 @@ msgstr "Ҳодиса" msgid "Definition" msgstr "Тавсифи" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Жадвал тузилиши" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Намойиш этиш учун тузилма" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Намойиш этиш учун тузилма" @@ -8086,263 +8105,254 @@ msgstr "(давоми)" msgid "Structure of table @TABLE@" msgstr "@TABLE@ жадвалининг тузилиши" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "Ўгиришлар параметрлари" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Жадвал сарлавҳаси" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Ташқи калитларни текширишни ўчириш" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Майдон изоҳларини кўрсатиш" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Мавжуд MIME турлари" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Хост" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Тузилган сана" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Сервер версияси" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP версиясм" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki жадвали" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "Таркибини экспорт қилиш" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "горизонтал (айлантирилган сарлавҳалар)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Маълум бир жадвал маълумотларини ўз ичига олган ҳисобот тузиш)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Ҳисобот сарлавҳаси" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP массиви" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "Сарлавҳага ўз изоҳингизни қўшиш (\\n белгиси сатрдан сатрга ўтказади)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Тавсиф" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Тавсиф" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "Ўгиришлар параметрлари" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Муолажалар" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Функциялар" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "ЖАДВАЛ УЧУН MIME ТУРЛАРИ" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "Жадвал алоқалари" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Маълумотларни чақиришга рухсат беради" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Намойиш" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Таркибини экспорт қилиш" @@ -8414,6 +8424,10 @@ msgstr "Майдон номлари" msgid "This plugin does not support compressed imports!" msgstr "Ушбу модул қисилган маълумотларни импорт қила олмайди!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki жадвали" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -8482,6 +8496,10 @@ msgstr "SQL билан мослик режими" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8760,11 +8778,12 @@ msgstr "" "Янгиланган конфигурация файли ишга тушиши учун, phpMyAdmin дастуридан чиқиб, " "қайта киринг." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "тавсиф мавжуд эмас" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Белгилашни бекор қилиш" @@ -8787,9 +8806,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Фойдаланувчи номи" @@ -8826,34 +8846,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Тобе репликация фойдаланувчисини қўшиш" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Ҳар қайси фойдаланувчи" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Матнмайдонини ишлатиш" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Ҳар қайси хост" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Локал" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Ушбу хост" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Хостлар жадвалидан фойдаланиш" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8869,7 +8898,7 @@ msgstr "Парол ўрнатиш" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8910,8 +8939,8 @@ msgid "Edit event" msgstr "Серверларни таҳрирлаш" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -9002,7 +9031,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -9151,25 +9181,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 -#, php-format -msgid "%d row affected by the last statement inside the procedure" -msgid_plural "%d rows affected by the last statement inside the procedure" -msgstr[0] "" - -#: libraries/rte/rte_routines.lib.php:1302 +#: libraries/rte/rte_routines.lib.php:1279 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1343 +#, php-format +msgid "%d row affected by the last statement inside the procedure" +msgid_plural "%d rows affected by the last statement inside the procedure" +msgstr[0] "" + +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -9340,29 +9370,29 @@ msgstr "Маълумотлар базасида биронта ҳам жадва msgid "There are no events to display." msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" жадвали мавжуд эмас!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "\"%s\" жадвалининг координаталарини ўзгартириш" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9514,6 +9544,476 @@ msgstr "Номаълум тил: %1$s." msgid "Current Server" msgstr "Жорий сервер" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Привилегиялар йўқ" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Маълумотларни чақиришга рухсат беради" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Маълумотларни ўзгартиришга рухсат беради" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Маълумотларни ўчиришга рухсат беради" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат " +"беради" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Сервер ишини якунлашга рухсат беради" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Уланишлар максимал қийматга етганда ҳам уланиш ўрнатишга рухсат беради. " +"(Кўпгина административ вазифаларни бажариш учун керак, масалан, глобал " +"ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Вақтинчалик жадваллар тузишга рухсат беради" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат " +"беради" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" +"Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) " +"тузиш ва уларни ўчиришга рухсат беради" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Сақланадиган муолажалар тузишга рухсат беради" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Йўқ" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Ресурслардан фойдаланишни чеклаш" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор " +"қилади." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки " +"маълумотлар базасини ўзгартирадиган буйруқлар сони" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган " +"уланишлар сони" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Жадвал даражасижаги привилегиялар" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади." + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Администрация" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Глобал привилегиялар" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Маълумотлар базаси привилегиялари" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Янги жадваллар тузишга рухсат беради" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Жадвалларни ўчиришга рухъсат беради" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан " +"привилегиялар қўшишга рухсат беради" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Паролни ўзгартирмаслик" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "\"%s\" фойдаланувчининг привилегиялари бекор қилинди." + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Фойдаланувчи учун маълумотлар базаси" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" +"Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " +"привилегияларни бериш." + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" +"(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " +"тўлиқ привилегияларни бериш." + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Фойдаланувчи" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "GRANT" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "\"%s\" намойиши ўчирилди" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Ҳар қайси" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "Глобал" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Маълумотлар базаси даражасида" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "Гуруҳлаш белгиси" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Биронта ҳам фойдаланувчи топилмади." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Привилегияларни таҳрирлаш" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Бекор қилиш" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Экспорт" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "ва эскисини сақлаш." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "ва фойдаланувчилар жадвалидан эскисини ўчириш." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Майдон привилегиялари" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари " +"ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак." + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Қуйидаги жадвалга привилегия қўшиш" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Белгиланган фойдаланувчиларни ўчириш" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " +"ўчириш." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Привилегиялар қайта юкланмоқда" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "\"%s\" учун привилегиялар ўзгартирилди." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Привилегиялар" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Привилегиялар" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни " +"тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги " +"маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " +"мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Сиз янги фойдаланувчи қўшдингиз." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Манба база" @@ -9562,11 +10062,11 @@ msgstr "Тозалаш" msgid "Columns" msgstr "Майдон номлари" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" @@ -9874,12 +10374,6 @@ msgstr "Версияларни кўрсатиш" msgid "Protocol version" msgstr "Протокол версияси" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Фойдаланувчи" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -10466,466 +10960,20 @@ msgstr "" msgid "disabled" msgstr "Фаолсизлантирилган" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Сақланадиган муолажалар тузишга рухсат беради" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Янги жадваллар тузишга рухсат беради" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Вақтинчалик жадваллар тузишга рухсат беради" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Маълумотларни ўчиришга рухсат беради" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Жадвалларни ўчиришга рухъсат беради" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан " -"привилегиялар қўшишга рухсат беради" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки " -"маълумотлар базасини ўзгартирадиган буйруқлар сони" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган " -"уланишлар сони" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат " -"беради" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат " -"беради" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Маълумотларни чақиришга рухсат беради" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Сервер ишини якунлашга рухсат беради" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Уланишлар максимал қийматга етганда ҳам уланиш ўрнатишга рухсат беради. " -"(Кўпгина административ вазифаларни бажариш учун керак, масалан, глобал " -"ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" -"Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) " -"тузиш ва уларни ўчиришга рухсат беради" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Маълумотларни ўзгартиришга рухсат беради" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Привилегиялар йўқ" - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Йўқ" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Жадвал даражасижаги привилегиялар" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади." - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Администрация" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Глобал привилегиялар" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Маълумотлар базаси привилегиялари" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Ресурслардан фойдаланишни чеклаш" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор " -"қилади." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Паролни ўзгартирмаслик" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Биронта ҳам фойдаланувчи топилмади." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" номли фойдаланувчи мавжуд!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Сиз янги фойдаланувчи қўшдингиз." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "\"%s\" учун привилегиялар ўзгартирилди." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "\"%s\" фойдаланувчининг привилегиялари бекор қилинди." - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "\"%s\" ўчирилмоқда" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Привилегиялар қайта юкланмоқда" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Привилегияларни таҳрирлаш" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Бекор қилиш" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Экспорт" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Ҳар қайси" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Привилегиялар" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Привилегиялар" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "GRANT" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Белгиланган фойдаланувчиларни ўчириш" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " -"ўчириш." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни " -"тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги " -"маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " -"мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Майдон привилегиялари" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари " -"ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак." - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Қуйидаги жадвалга привилегия қўшиш" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "ва эскисини сақлаш." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "ва фойдаланувчилар жадвалидан эскисини ўчириш." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Фойдаланувчи учун маълумотлар базаси" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" -"Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " -"привилегияларни бериш." - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" -"(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " -"тўлиқ привилегияларни бериш." - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" - -#: server_privileges.php:2544 -msgid "global" -msgstr "Глобал" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Маълумотлар базаси даражасида" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "Гуруҳлаш белгиси" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "\"%s\" намойиши ўчирилди" - #: server_replication.php:82 msgid "Unknown error" msgstr "Номаълум хатолик" @@ -12810,41 +12858,41 @@ msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус msgid "Wrong data" msgstr "Маълумотлар базаси мавжуд эмас" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "PHP-код сифатида кўрсатиш" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL тўғрилигини текшириш" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL сўрови натижаси" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Тузилган" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Хатчўп белгиси" @@ -14730,6 +14778,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Максимал уланишлар сони " +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP массиви" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/uz@latin.po b/po/uz@latin.po index 664dace696..303149bf2c 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-03-14 14:57+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: uzbek_latin \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 0.6\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "Barchasini ko‘rsatish" @@ -40,16 +41,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "Qidirish" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -59,24 +60,26 @@ msgstr "Qidirish" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "OK" @@ -108,7 +111,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s ma`lumotlar bazasi tuzildi." -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh: " @@ -118,17 +121,17 @@ msgstr "Ma`lumotlar bazasiga izoh: " msgid "Table comments" msgstr "Jadval izohi" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -142,34 +145,34 @@ msgstr "Maydon nomlari" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "Tur" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -178,13 +181,13 @@ msgid "Null" msgstr "Null" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -192,10 +195,10 @@ msgstr "Null" msgid "Default" msgstr "Andoza" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -204,10 +207,10 @@ msgstr "Aloqalar" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -218,18 +221,21 @@ msgstr "Izohlar" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "Yo‘q" @@ -242,19 +248,22 @@ msgstr "Yo‘q" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ha" @@ -262,8 +271,8 @@ msgstr "Ha" msgid "View dump (schema) of database" msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." @@ -279,80 +288,80 @@ msgstr "Belgilashni bekor qilish" msgid "The database name is empty!" msgstr "Ma`lumotlar bazasi nomi bo‘sh!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "`\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi." -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:493 +#: db_operations.php:492 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "\"%s\" ma`lumotlar ombori o‘chirildi." -#: db_operations.php:510 +#: db_operations.php:509 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ushbu bazaga o‘tish" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "Faqat tuzilishi" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "Faqat ma`lumotlar" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "Cheklovlar qo‘shish" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -362,7 +371,7 @@ msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" msgid "Collation" msgstr "Taqqoslash" -#: db_operations.php:624 +#: db_operations.php:623 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -374,7 +383,7 @@ msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: db_operations.php:659 +#: db_operations.php:658 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -386,16 +395,18 @@ msgstr "Aloqalar sxemasi" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "Jadval" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "Qatorlarsoni" @@ -405,13 +416,13 @@ msgid "Size" msgstr "Hajmi" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "ishlatilmoqda" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -419,7 +430,7 @@ msgstr "Tuzish" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -427,7 +438,7 @@ msgstr "Oxirgi yangilanish" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -441,97 +452,16 @@ msgid_plural "%s tables" msgstr[0] "Jadvallar soni: \"%s\"" msgstr[1] "Jadvallar soni: \"%s\"" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "So‘rovni bajarish uchun, maydon/maydonlar tanlangan bo‘lishi kerak." -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "O‘sish tartibida" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "Kamayish tartibida" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "Sortirovka qilish" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "Ko‘rsatish" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "Kriteriy" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Criteria Row" -msgid "Add/Delete criteria rows" -msgstr "Qator qo‘shish/o‘chirish" - -#: db_qbe.php:433 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add/Delete columns" -msgstr "Ustun qo‘shish/o‘chirish" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "So‘rovni yangilash" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "Jadvallarni ishlatish" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "Yoki" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "Va" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "Qo‘yish" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "O‘chirish" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "O‘zgarirish" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Nusxa olingan jadvalga o‘tish" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "so‘rovni bajarish" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -574,7 +504,7 @@ msgstr "Kuzatish faol." msgid "Tracking is not active." msgstr "Kuzatish faol emas." -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -604,20 +534,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "Belgilanganlarni:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "Barchasini belgilash" @@ -625,31 +556,32 @@ msgstr "Barchasini belgilash" msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "Tozalash" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -699,17 +631,18 @@ msgstr "Kuzatilgan jadvallar" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "Ma`lumotlar bazasi" @@ -727,18 +660,26 @@ msgstr "Yangilandi" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "Holat" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "Amal" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "Ko‘rsatish" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" @@ -781,22 +722,22 @@ msgstr "Baza log faylini" msgid "Bad type!" msgstr "So‘rov turi" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "Belgilangan eksport turi faylga saqlanishi shart!" -#: export.php:125 +#: export.php:124 #, fuzzy #| msgid "Apply index(s)" msgid "Bad parameters!" msgstr "Indеks(lar)ni saqlash" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" faylini saqlash uchun diskda yetarli joy mavjud emas." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -804,12 +745,12 @@ msgstr "" "\"%s\" fayli serverda mavjud, uning nomini o‘zgartiring yoki qayta yozish " "parametrini yoqing." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" faylini veb-serverga saqlash uchun huquqlar yetarli emas." -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp \"%s\" faylida saqlandi." @@ -834,7 +775,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -917,7 +858,7 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -926,20 +867,20 @@ msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "Xatcho‘plarni ko‘rsatish" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "Xatcho‘p o‘chirildi." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "Faylni o‘qib bo‘lmadi!!" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -950,7 +891,7 @@ msgstr "" "mavjud emas, shuning uchun ushbu faylni import qilib bo‘lmaydi. Agar dastur " "mavjud bo‘lsa, demak u konfiguratsiya vaqtida o‘chirib qo‘yilgan." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -961,28 +902,28 @@ msgstr "" "qiymatdan katta. Qarang: [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "" "Import modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/" "export katalogini tekshiring." -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" xatcho‘pi tuzildi" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import muvaffaqiyatli tugatildi, bajarilgan so‘rovlar soni: %d." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -991,7 +932,7 @@ msgstr "" "unda o‘sha faylni tanlagan holda uni qayta ishga tushiring va jarayon " "uzilgan joydan boshlab davom etadi." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1000,8 +941,8 @@ msgstr "" "Odatda, bu hol, php-ssenariylar uchun ajratilgan vaqt oshirilmaguncha " "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -1018,7 +959,7 @@ msgstr "" "phpMyAdmin ishlashi uchun freymlar bilan ishlay oladigan brauzer " "kerak." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" "\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan." @@ -1029,7 +970,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!" @@ -1101,16 +1042,20 @@ msgstr "Xost nomi bo‘sh!" msgid "The user name is empty!" msgstr "Foydalanuvchi nomi belgilanmagan!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "Parol belgilanmagan!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1136,9 +1081,9 @@ msgstr "Yopish" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1417,12 +1362,13 @@ msgstr "To‘rga bog‘lab qo‘yish" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "Yo‘q" @@ -1615,10 +1561,10 @@ msgid "Explain output" msgstr "So‘rov tahlili" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "Vaqt" @@ -1982,7 +1928,7 @@ msgid "No rows selected" msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "O‘zgartirish" @@ -1993,8 +1939,8 @@ msgstr "O‘zgartirish" msgid "Query execution time" msgstr "Maksimum bajarilish vaqti" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d soni to‘g‘ri qator raqami emas!" @@ -2077,7 +2023,7 @@ msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "" @@ -2636,14 +2582,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "Xatolik" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL so‘rovi" @@ -2654,7 +2600,7 @@ msgstr "SQL so‘rovi" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2685,6 +2631,10 @@ msgstr "PHP-kod olib tashlash" msgid "Create PHP Code" msgstr "PHP-kod" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "so‘rovni bajarish" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2711,7 +2661,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Jadval turlari" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "Profillashtirish" @@ -2740,7 +2690,7 @@ msgstr "Muolajalar" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2749,7 +2699,7 @@ msgstr "Boshi" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2759,7 +2709,7 @@ msgstr "Orqaga" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2769,7 +2719,7 @@ msgstr "Keyingi" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2796,16 +2746,17 @@ msgstr "Tanlash uchun sichqoncha tugmasini bosing" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "Tuzilishi" @@ -2813,21 +2764,20 @@ msgstr "Tuzilishi" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Qo‘yish" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "Ko‘rib chiqish" @@ -2849,21 +2799,21 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "Chop etish" @@ -2880,6 +2830,78 @@ msgstr "" msgid "Font size" msgstr "Shrift o‘lchami" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "O‘sish tartibida" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "Kamayish tartibida" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "Sortirovka qilish" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "Kriteriy" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Criteria Row" +msgid "Add/Delete criteria rows" +msgstr "Qator qo‘shish/o‘chirish" + +#: libraries/DBQbe.class.php:547 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add/Delete columns" +msgstr "Ustun qo‘shish/o‘chirish" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "So‘rovni yangilash" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "Jadvallarni ishlatish" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "Yoki" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "Va" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "Qo‘yish" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "O‘chirish" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "O‘zgarirish" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "so‘zlardan biri" @@ -2923,8 +2945,8 @@ msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgid "Delete the matches for the %s table?" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2966,75 +2988,75 @@ msgstr "Quyidagi jadval(lar)da qidirish:" msgid "Inside column:" msgstr "Quyidagi maydon(lar)da qidirish: " -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "Saqlash direktoriyasi" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "CHAR textarea columns" msgid "Restore column order" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Start" msgid "Start row" msgstr "Boshlash" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of fields" msgid "Number of rows" msgstr "Maydonlar soni " -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "Mon" msgid "Mode" msgstr "Dush" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "gorizontal" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "gorizontal (aylantirilgan sarlavhalar)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "Headers every %s rows" msgstr "Belgilangan so‘rovni bajarish" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "Indeks bo‘yicha sortirovka qilish" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -3047,68 +3069,68 @@ msgstr "Indeks bo‘yicha sortirovka qilish" msgid "Options" msgstr "Parametrlar" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Ma`lumotlarni qisqartirib ko‘rsatish" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Ma`lumotlarni kengaytirilgan holda ko‘rsatish" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "Aloqador kalit" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Aloqador maydon qiymati" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "Ikkilik ma`lumotlarni ko‘rsatish" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "O‘girish" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "Tugatish" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -3116,48 +3138,48 @@ msgstr "" "Taxminiy bo‘lishi mumkin. [a@./Documentation." "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "so‘rov bo‘yicha" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "jami" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "Chop etish versiyasi (to‘la)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-sxemani ko‘rsatish" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "Aloqa topilmadi" @@ -3283,8 +3305,8 @@ msgid "" msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "Ma`lumotlar bazalari" @@ -3300,11 +3322,11 @@ msgid "Tracking" msgstr "Kuzatish" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggerlar" @@ -3322,9 +3344,9 @@ msgstr "Ma`lumotlar bazasi bo‘sh!" msgid "Query" msgstr "So‘rov" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "Privilegiyalar" @@ -3333,7 +3355,7 @@ msgid "Routines" msgstr "Muolajalar" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Hodisalar" @@ -3442,55 +3464,55 @@ msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan." msgid "This MySQL server does not support the %s storage engine." msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi." -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Manba baza" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "\"%s\" mavzusi topilmadi!" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "Noto‘g‘ri ma`lumotlar bazasi" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi." -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3499,7 +3521,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksiya" @@ -3511,7 +3533,7 @@ msgstr "Operator" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3558,7 +3580,7 @@ msgid "Maximum rows to plot" msgstr "Ko‘rsatiladigan qatorlarning maksimal soni" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "Tashqi qiymatlarni ko‘rib chiqish" @@ -3923,7 +3945,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "Jadvallar" @@ -3934,9 +3956,10 @@ msgstr "Jadvallar" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "Ma`lumotlar" @@ -4072,32 +4095,32 @@ msgid "Disabled" msgstr "Faolsizlantirilgan" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "tuzilish" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 #, fuzzy #| msgid "Structure and data" msgid "structure and data" @@ -4555,13 +4578,13 @@ msgstr "Siqish" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 #, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" @@ -4590,7 +4613,6 @@ msgstr "Belgi oldida quyidagi belgi mavjud " #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "NULL qiymatni quyidagiga almashtirish" @@ -4636,25 +4658,24 @@ msgstr "Jadval nomi shabloni" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 #, fuzzy #| msgid "%s table(s)" msgid "Dump table" msgstr "Jadvallar soni: \"%s\"" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "Jadvalga sarlavha qo‘shish" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "Jadval sarlavhasi" @@ -4663,14 +4684,14 @@ msgid "Continued table caption" msgstr "Jadval sarlavhasi (davomi)" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "Belgi identifikatori" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME turi" @@ -4711,7 +4732,7 @@ msgid "SQL compatibility mode" msgstr "SQL bilan moslik rejimi" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "" @@ -4724,7 +4745,7 @@ msgid "Use delayed inserts" msgstr "Kechiktirilgan qo‘yish (DELAYED INSERTS) dan foydalanish" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" @@ -4741,7 +4762,7 @@ msgid "Syntax to use when inserting data" msgstr "" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "Tuzilayogan so‘rovning maksimal uzunligi" @@ -4752,7 +4773,7 @@ msgid "Export type" msgstr "Jadvallarni eksport qilish" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "Tranzaksiyaga eksportni qo‘shish" @@ -4809,7 +4830,6 @@ msgstr "Eksport afzalliklarini sozlash" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4870,7 +4890,6 @@ msgid "Set import and export directories and compression options" msgstr "Import va eksport kataloglari va qisish usullarini belgilash" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -5118,7 +5137,6 @@ msgid "Customize text input fields" msgstr "Eksport tanlovlarini moslashtirish" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! matn" @@ -6398,9 +6416,11 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "Parol" @@ -6585,7 +6605,6 @@ msgstr "\"LOAD DATA\" ishlatilgan CSV" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "Open Document jadvali" @@ -6609,19 +6628,16 @@ msgstr "Ma`lumotlar bazasi eksport parametrlari" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excel uchun CSV" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "OpenDocument matn" @@ -6689,7 +6705,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6697,21 +6713,21 @@ msgid "" "configured)." msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server javob bermayapti" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "Tafsilotlar..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -6724,13 +6740,15 @@ msgid "Change password" msgstr "Parolni o‘zgartirish" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "Parol yo‘q" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "Tasdiqlash" @@ -6755,8 +6773,9 @@ msgstr "Yangi ma`lumotlar bazasi tuzish" msgid "Create" msgstr "Tuzish" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "Privilegiyalar yo‘q" @@ -6766,12 +6785,12 @@ msgid "Create table" msgstr "Jadval tuzish" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "Nomi" @@ -6949,7 +6968,7 @@ msgid "View output as text" msgstr "Fayl kabi saqlash" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 #, fuzzy #| msgid "Format" msgid "Format:" @@ -7487,60 +7506,60 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi " "amallarni bajarishingiz mumkin:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ushbu bazaga o‘tish" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ushbu jadvalga o‘tish" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Faqat tuzilishi" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" @@ -7615,11 +7634,11 @@ msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" @@ -7873,7 +7892,7 @@ msgstr "phpMyAdmin dokumentatsiyasi" msgid "Reload navigation frame" msgstr "Navigatsiya oynasini qayta yuklash" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -7993,86 +8012,86 @@ msgstr "To‘g‘ri autentifikatsiya kaliti ulanmagan" msgid "Authenticating..." msgstr "Autentifikatsiya..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 #, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Qatorlar bo‘luvchisi" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Maydon qiymatlari quyidagi belgi ichiga olingan " -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Belgi oldida quyidagi belgi mavjud " -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Qatorlar bo‘luvchisi" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "NULL qiymatni quyidagiga almashtirish" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove carriage return/line feed characters within columns" msgstr "Maydonlar ichidagi satrdan-satrga ko‘chirish belgilarini olib tashlash" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 #, fuzzy #| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel-versiyasi" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 #, fuzzy #| msgid "Databases display options" msgid "Data dump options" msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "Jadval ma`lumotlarini damp qilish" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Hodisa" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -8080,24 +8099,24 @@ msgstr "Hodisa" msgid "Definition" msgstr "Tavsifi" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "Jadval tuzilishi" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "Namoyish etish uchun tuzilma" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "Namoyish etish uchun tuzilma" @@ -8113,264 +8132,255 @@ msgstr "(davomi)" msgid "Structure of table @TABLE@" msgstr "@TABLE@ jadvalining tuzilishi" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 #, fuzzy #| msgid "Transformation options" msgid "Object creation options" msgstr "O‘girishlar parametrlari" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 #, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" msgstr "Jadval sarlavhasi" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Maydon izohlarini ko‘rsatish" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 #, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" msgstr "Mavjud MIME turlari" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "Xost" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "Tuzilgan sana" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "Server versiyasi" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP versiyasm" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki jadvali" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "Tarkibini eksport qilish" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "gorizontal (aylantirilgan sarlavhalar)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(Ma`lum bir jadval ma`lumotlarini o‘z ichiga olgan hisobot tuzish)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 #, fuzzy #| msgid "Report title" msgid "Report title:" msgstr "Hisobot sarlavhasi" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP massivi" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Sarlavhaga o‘z izohingizni qo‘shish (\\n belgisi satrdan satrga o‘tkazadi)" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, fuzzy, php-format #| msgid "Statements" msgid "Add %s statement" msgstr "Tavsif" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 #, fuzzy #| msgid "Statements" msgid "Add statements:" msgstr "Tavsif" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Transformation options" +msgid "Data creation options" +msgstr "O‘girishlar parametrlari" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Muolajalar" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "Funksiyalar" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "Jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "JADVAL UCHUN MIME TURLARI" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "Jadval aloqalari" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 #, fuzzy #| msgid "View" msgid "Views" msgstr "Namoyish" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "Tarkibini eksport qilish" @@ -8443,6 +8453,10 @@ msgstr "Maydon nomlari" msgid "This plugin does not support compressed imports!" msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki jadvali" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -8512,6 +8526,10 @@ msgstr "SQL bilan moslik rejimi" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nol qiymatlari uchun \"AUTO_INCREMENT\" ishlatmaslik" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8794,11 +8812,12 @@ msgstr "" "Yangilangan konfiguratsiya fayli ishga tushishi uchun, phpMyAdmin dasturidan " "chiqib, qayta kiring." -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "tavsif mavjud emas" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "Belgilashni bekor qilish" @@ -8821,9 +8840,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "Foydalanuvchi nomi" @@ -8860,34 +8880,43 @@ msgstr "" msgid "Add slave replication user" msgstr "Tobе rеplikatsiya foydalanuvchisini qo‘shish" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "Har qaysi foydalanuvchi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "Matnmaydonini ishlatish" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "Har qaysi xost" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "Ushbu xost" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "Xostlar jadvalidan foydalanish" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8903,7 +8932,7 @@ msgstr "Parol o‘rnatish" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8944,8 +8973,8 @@ msgid "Edit event" msgstr "Serverlarni tahrirlash" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" @@ -9036,7 +9065,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -9185,25 +9215,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 -#, php-format -msgid "%d row affected by the last statement inside the procedure" -msgid_plural "%d rows affected by the last statement inside the procedure" -msgstr[0] "" - -#: libraries/rte/rte_routines.lib.php:1302 +#: libraries/rte/rte_routines.lib.php:1279 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1343 +#, php-format +msgid "%d row affected by the last statement inside the procedure" +msgid_plural "%d rows affected by the last statement inside the procedure" +msgstr[0] "" + +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -9374,29 +9404,29 @@ msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." msgid "There are no events to display." msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" jadvali mavjud emas!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "\"%s\" jadvalining koordinatalarini o‘zgartirish" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -9548,6 +9578,483 @@ msgstr "Noma`lum til: %1$s." msgid "Current Server" msgstr "Joriy sеrvеr" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "Privilegiyalar yo‘q" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" +"Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat " +"beradi" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "Server ishini yakunlashga ruxsat beradi" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"Ulanishlar maksimal qiymatga yetganda ham ulanish o‘rnatishga ruxsat " +"beradi. (Ko‘pgina administrativ vazifalarni bajarish uchun kerak, masalan, " +"global o‘zgaruvchilar o‘rnatish yoki boshqa foydalanuvchi jarayonini " +"o‘chirish)" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "" +"Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" +"Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga " +"ruxsat beradi" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "" +"Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan " +"jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" +"Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +#, fuzzy +#| msgid "None" +msgctxt "None privileges" +msgid "None" +msgstr "Yo‘q" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "Resurslardan foydalanishni cheklash" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" +"IZOH: parametr qiymatlarini 0 (nol) deb belgilash mavjud cheklashlarni bekor " +"qiladi." + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" +"Foydalanuvchi bir soat davomida yuborishi mumkin bo‘lgan so‘rovlar soni" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" +"Foydalanuvchi bir soat davomida bajarishi mumkin bo‘lgan biron-bir jadval " +"yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" +"Foydalanuvchi bir soat davomida o‘rnatishi mumkin bo‘lgan yangi ulanishlar " +"soni" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" +"Bir foydalanuvchi tomonidan bir vaqtning o‘zida o‘rnatishi mumkin bo‘lgan " +"ulanishlar soni" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "Jadval darajasijagi privilegiyalar" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi." + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "Administratsiya" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "Global privilegiyalar" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "Ma`lumotlar bazasi privilegiyalari" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "Yangi jadvallar tuzishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "Jadvallarni o‘chirishga rux`sat beradi" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" +"Foydalanuvchilarni qo‘shish va privilegiyalar jadvalini qayta yuklamasdan " +"privilegiyalar qo‘shishga ruxsat beradi" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "Foydalanuvchi hisobi haqida ma`lumot" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "Parolni o‘zgartirmaslik" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "\"%s\" foydalanuvchining privilegiyalari bekor qilindi." + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "" +"Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " +"privilegiyalarni berish." + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" +"(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " +"bazalariga to‘liq privilegiyalarni berish." + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "Foydalanuvchi" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "GRANT" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "\"%s\" namoyishi o‘chirildi" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "Har qaysi" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "Global" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "Ma`lumotlar bazasi darajasida" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "Guruhlash belgisi" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +#, fuzzy +#| msgid "No user(s) found." +msgid "No user found." +msgstr "Bironta ham foydalanuvchi topilmadi." + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "Privilegiyalarni tahrirlash" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "Bekor qilish" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "Eksport" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "va eskisini saqlash." + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "va foydalanuvchilar jadvalidan eskisini o‘chirish." + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" +", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " +"yuklash." + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "Maydon privilegiyalari" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" +"Ma`lumotlar bazalari nomlarida pastki chiziq (_) va foiz (%) belgilari " +"ishlatilganda ular oldiga teskari egri chiziq (\\) qo‘yish kerak." + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "Quyidagi jadvalga privilegiya qo‘shish" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "Belgilangan foydalanuvchilarni o‘chirish" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" +"Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " +"ularni o‘chirish." + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "" +"Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "Privilegiyalar qayta yuklanmoqda" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "\"%s\" uchun privilegiyalar o‘zgartirildi." + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "Privilegiyalar" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "Privilegiyalar" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni " +"to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi " +"ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " +"mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "Siz yangi foydalanuvchi qo‘shdingiz." + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "Manba baza" @@ -9596,11 +10103,11 @@ msgstr "Tozalash" msgid "Columns" msgstr "Maydon nomlari" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" @@ -9910,12 +10417,6 @@ msgstr "Vеrsiyalarni ko‘rsatish" msgid "Protocol version" msgstr "Protokol versiyasi" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "Foydalanuvchi" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -10504,473 +11005,20 @@ msgstr "" msgid "disabled" msgstr "Faolsizlantirilgan" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "Yangi jadvallar tuzishga ruxsat beradi" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "" -"Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "Jadvallarni o‘chirishga rux`sat beradi" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "" -"Foydalanuvchilarni qo‘shish va privilegiyalar jadvalini qayta yuklamasdan " -"privilegiyalar qo‘shishga ruxsat beradi" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "" -"Foydalanuvchi bir soat davomida o‘rnatishi mumkin bo‘lgan yangi ulanishlar " -"soni" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "" -"Foydalanuvchi bir soat davomida yuborishi mumkin bo‘lgan so‘rovlar soni" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "" -"Foydalanuvchi bir soat davomida bajarishi mumkin bo‘lgan biron-bir jadval " -"yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "" -"Bir foydalanuvchi tomonidan bir vaqtning o‘zida o‘rnatishi mumkin bo‘lgan " -"ulanishlar soni" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "" -"Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat " -"beradi" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "" -"Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga " -"ruxsat beradi" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "" -"Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "Server ishini yakunlashga ruxsat beradi" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"Ulanishlar maksimal qiymatga yetganda ham ulanish o‘rnatishga ruxsat " -"beradi. (Ko‘pgina administrativ vazifalarni bajarish uchun kerak, masalan, " -"global o‘zgaruvchilar o‘rnatish yoki boshqa foydalanuvchi jarayonini " -"o‘chirish)" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "" -"Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan " -"jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "Privilegiyalar yo‘q" - -#: server_privileges.php:499 server_privileges.php:500 -#, fuzzy -#| msgid "None" -msgctxt "None privileges" -msgid "None" -msgstr "Yo‘q" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "Jadval darajasijagi privilegiyalar" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi." - -#: server_privileges.php:724 -msgid "Administration" -msgstr "Administratsiya" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "Global privilegiyalar" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "Ma`lumotlar bazasi privilegiyalari" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "Resurslardan foydalanishni cheklash" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"IZOH: parametr qiymatlarini 0 (nol) deb belgilash mavjud cheklashlarni bekor " -"qiladi." - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "Foydalanuvchi hisobi haqida ma`lumot" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "Parolni o‘zgartirmaslik" - -#: server_privileges.php:1053 server_privileges.php:2582 -#, fuzzy -#| msgid "No user(s) found." -msgid "No user found." -msgstr "Bironta ham foydalanuvchi topilmadi." - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" nomli foydalanuvchi mavjud!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "Siz yangi foydalanuvchi qo‘shdingiz." - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "\"%s\" uchun privilegiyalar o‘zgartirildi." - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "\"%s\" foydalanuvchining privilegiyalari bekor qilindi." - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "\"%s\" o‘chirilmoqda" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "Privilegiyalar qayta yuklanmoqda" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "Privilegiyalarni tahrirlash" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "Bekor qilish" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "Eksport" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "Har qaysi" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "Privilegiyalar" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "Privilegiyalar" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "GRANT" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "Belgilangan foydalanuvchilarni o‘chirish" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " -"ularni o‘chirish." - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "" -"Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni " -"to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi " -"ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " -"mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "Maydon privilegiyalari" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "" -"Ma`lumotlar bazalari nomlarida pastki chiziq (_) va foiz (%) belgilari " -"ishlatilganda ular oldiga teskari egri chiziq (\\) qo‘yish kerak." - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "Quyidagi jadvalga privilegiya qo‘shish" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "va eskisini saqlash." - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "va foydalanuvchilar jadvalidan eskisini o‘chirish." - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "" -", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " -"yuklash." - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "" -"Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " -"privilegiyalarni berish." - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" -"(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " -"bazalariga to‘liq privilegiyalarni berish." - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" - -#: server_privileges.php:2544 -msgid "global" -msgstr "Global" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "Ma`lumotlar bazasi darajasida" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "Guruhlash belgisi" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "\"%s\" namoyishi o‘chirildi" - #: server_replication.php:82 msgid "Unknown error" msgstr "Noma’lum xatolik" @@ -12873,41 +12921,41 @@ msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak" msgid "Wrong data" msgstr "Ma`lumotlar bazasi mavjud emas" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "PHP-kod sifatida ko‘rsatish" -#: sql.php:831 +#: sql.php:807 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL so‘rovi natijasi" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "Tuzilgan" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "Xatcho‘p belgisi" @@ -14794,6 +14842,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Maksimal ulanishlar soni " +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP massivi" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/zh_CN.po b/po/zh_CN.po index 76188e6c62..ee1862ec52 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-07-23 19:45+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "全部显示" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "搜索" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "搜索" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "执行" @@ -107,7 +110,7 @@ msgstr "该系统不支持 %s 文件,请访问 www.phpmyadmin.net 查询更多 msgid "Database %1$s has been created." msgstr "创建数据库 %1$s 成功。" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "数据库注释: " @@ -117,17 +120,17 @@ msgstr "数据库注释: " msgid "Table comments" msgstr "表注释" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -139,34 +142,34 @@ msgstr "字段" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "类型" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -175,13 +178,13 @@ msgid "Null" msgstr "空" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -189,10 +192,10 @@ msgstr "空" msgid "Default" msgstr "默认" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -201,10 +204,10 @@ msgstr "链接到" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -215,18 +218,21 @@ msgstr "注释" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "否" @@ -239,19 +245,22 @@ msgstr "否" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "是" @@ -259,8 +268,8 @@ msgstr "是" msgid "View dump (schema) of database" msgstr "查看数据库的转储(大纲)" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "数据库中没有表。" @@ -276,75 +285,75 @@ msgstr "全不选" msgid "The database name is empty!" msgstr "数据库名不能为空!" -#: db_operations.php:328 +#: db_operations.php:327 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "已将数据库 %1$s 改名为 %2$s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "已将数据库 %s 复制为 %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "将数据库改名为" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "删除数据库" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "已被删除数据库 %s 。" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "删除数据库 (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "复制数据库到" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "仅结构" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "结构和数据" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "仅数据" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "复制前创建数据库 (CREATE DATABASE)" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "添加 %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "添加自增 (AUTO_INCREMENT) 值" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "强制添加" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "切换到复制的数据库" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -354,14 +363,14 @@ msgstr "切换到复制的数据库" msgid "Collation" msgstr "整理" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "phpMyAdmin 高级功能尚未激活。要查出原因,请点击%s此处%s。" -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "编辑或导出关系大纲" @@ -371,16 +380,18 @@ msgstr "编辑或导出关系大纲" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "表" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "行数" @@ -390,13 +401,13 @@ msgid "Size" msgstr "大小" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "使用中" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -404,7 +415,7 @@ msgstr "创建时间" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -412,7 +423,7 @@ msgstr "最后更新" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -424,92 +435,15 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s 张表" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "您最少要选择显示一列" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "递增" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "递减" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "排序" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "显示" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "条件" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "添加/删除标准行" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "添加/删除字段" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "更新查询" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "使用表" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "或" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "与" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "插入" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "删除" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "修改" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "切换到 %s可视化查询生成器%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "在数据库 %s 执行 SQL 语句:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "提交查询" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -550,7 +484,7 @@ msgstr "追踪已启用。" msgid "Tracking is not active." msgstr "追踪已禁用。" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -578,20 +512,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 服务器的默认存储引擎。" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "选中项:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "全选" @@ -599,31 +534,32 @@ msgstr "全选" msgid "Check tables having overhead" msgstr "仅选择多余" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "导出" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "打印预览" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "清空" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -667,17 +603,18 @@ msgstr "已追踪的表" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "数据库" @@ -695,18 +632,26 @@ msgstr "更新" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "状态" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "操作" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "显示" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "删除追踪数据" @@ -747,31 +692,31 @@ msgstr "数据库日志" msgid "Bad type!" msgstr "非法类型!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "选择导出文件的类型!" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "非法参数!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "没有足够的空间保存文件 %s。" -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "服务器上已存在文件 %s,请修改文件名或选中覆盖选项。" -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "网站服务器没有保存文件 %s 的权限。" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "转存已经保存到文件 %s 中。" @@ -795,7 +740,7 @@ msgid "SRID" msgstr "SRID" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "几何体" @@ -825,7 +770,6 @@ msgid "Add a point" msgstr "添加点" #: gis_data_editor.php:209 js/messages.php:324 -#| msgid "Lines terminated by" msgid "Linestring" msgstr "线" @@ -838,12 +782,10 @@ msgid "Inner Ring" msgstr "内环" #: gis_data_editor.php:241 -#| msgid "Add a new User" msgid "Add a linestring" msgstr "添加线" #: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 -#| msgid "Add a new User" msgid "Add an inner ring" msgstr "添加内环" @@ -856,7 +798,6 @@ msgid "Add a polygon" msgstr "添加多边形" #: gis_data_editor.php:299 -#| msgid "Add event" msgid "Add geometry" msgstr "添加几何体" @@ -870,27 +811,27 @@ msgid "" "string into the \"Value\" field" msgstr "从 \"函数\" 列中选择 \"GeomFromText\" 并粘贴下列内容到 \"值\" 列中" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "显示书签" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "书签已删除。" -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "无法读取文件" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -899,7 +840,7 @@ msgid "" msgstr "" "您正在载入不支持的压缩格式 (%s)。配置文件中没有对应这种格式的配置说明。" -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -908,32 +849,32 @@ msgstr "" "没有接收到要导入的数据。可能是文件名没有提交,也可能是文件大小超出 PHP 限制。" "参见 [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]。" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "没有字符集转换库,无法转换文件字符集" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "无法加载导入插件,请检查你的安装!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "已创建书签 %s" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "导入成功,执行了 %d 个查询。" -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "脚本超时,如果你要完成导入,请重新提交相同的文件,导入将会继续进行。" -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -941,8 +882,8 @@ msgstr "" "在最后一次执行时没有数据被解析,建议您增加 PHP 运行时间限制,否则 phpMyAdmin " "将无法完成导入操作。" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -957,7 +898,7 @@ msgstr "返回" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 更适合在支持框架的浏览器中使用。" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" @@ -967,7 +908,7 @@ msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" msgid "Do you really want to execute \"%s\"?" msgstr "您真的要" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "您将要删除一个完整的数据库!" @@ -1025,16 +966,20 @@ msgstr "主机名不能为空!" msgid "The user name is empty!" msgstr "用户名不能为空!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "密码不能为空!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "两次密码不一致!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "添加用户" @@ -1054,9 +999,9 @@ msgstr "关闭" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1300,12 +1245,13 @@ msgstr "添加图表" msgid "Please add at least one variable to the series" msgstr "请至少添加一个数据" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "无" @@ -1427,7 +1373,6 @@ msgid "From general log" msgstr "从通用日志" #: js/messages.php:172 -#| msgid "Loading logs" msgid "Analysing logs" msgstr "正在分析日志" @@ -1462,7 +1407,6 @@ msgid "Jump to Log table" msgstr "转到日志表" #: js/messages.php:180 -#| msgid "No data" msgid "No data found" msgstr "未找到数据" @@ -1475,15 +1419,14 @@ msgid "Analyzing..." msgstr "正在分析。。。" #: js/messages.php:184 -#| msgid "Explain SQL" msgid "Explain output" msgstr "分析输出" #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "时间" @@ -1509,12 +1452,10 @@ msgid "Chart" msgstr "图表" #: js/messages.php:191 -#| msgid "Add chart" msgid "Edit chart" msgstr "编辑图表" #: js/messages.php:192 -#| msgid "Series:" msgid "Series" msgstr "数据" @@ -1587,12 +1528,10 @@ msgid "Import" msgstr "导入" #: js/messages.php:213 -#| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "导入监控设置" #: js/messages.php:214 -#| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "请选择要导入的文件" @@ -1787,7 +1726,7 @@ msgstr "显示查询框" msgid "No rows selected" msgstr "没有选中任何行" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "修改" @@ -1796,8 +1735,8 @@ msgstr "修改" msgid "Query execution time" msgstr "查询执行时间" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效行数。" @@ -1820,7 +1759,6 @@ msgid "Show search criteria" msgstr "显示搜索条件" #: js/messages.php:298 libraries/TableSearch.class.php:225 -#| msgid "Search" msgid "Zoom Search" msgstr "缩放搜索" @@ -1871,7 +1809,7 @@ msgstr "数据点内容" msgid "Ignore" msgstr "忽略" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "复制" @@ -2237,7 +2175,6 @@ msgstr "日历-月-年" #. l10n: Year suffix for calendar, "none" is empty. #: js/messages.php:508 -#| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "年" @@ -2352,14 +2289,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "错误" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL 查询" @@ -2370,7 +2307,7 @@ msgstr "SQL 查询" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2399,6 +2336,10 @@ msgstr "无 PHP 代码" msgid "Create PHP Code" msgstr "创建 PHP 代码" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "提交查询" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2423,7 +2364,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "快速编辑" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "概要" @@ -2450,14 +2391,14 @@ msgstr "缺少参数:" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 msgctxt "First page" msgid "Begin" msgstr "首页" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 msgctxt "Previous page" msgid "Previous" @@ -2465,7 +2406,7 @@ msgstr "上一页" #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 msgctxt "Next page" msgid "Next" @@ -2473,7 +2414,7 @@ msgstr "下一页" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 msgctxt "Last page" msgid "End" msgstr "尾页" @@ -2494,16 +2435,17 @@ msgstr "点击切换" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "结构" @@ -2511,21 +2453,20 @@ msgstr "结构" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "插入" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "浏览" @@ -2546,21 +2487,21 @@ msgstr "从计算机中上传:" msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "没有可上传的文件" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "执行" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "打印" @@ -2577,6 +2518,74 @@ msgstr "配置文件权限错误,无法写入!" msgid "Font size" msgstr "字号" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "递增" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "递减" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "排序" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "条件" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "添加/删除标准行" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "添加/删除字段" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "更新查询" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "使用表" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "或" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "与" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "插入" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "删除" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "修改" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "在数据库 %s 执行 SQL 语句:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "至少一个词" @@ -2617,8 +2626,8 @@ msgstr[0] "在表 %2$s 中找到 %1$s 个匹配" msgid "Delete the matches for the %s table?" msgstr "删除 %s 表中所有匹配的记录?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2653,65 +2662,65 @@ msgstr "于下列表:" msgid "Inside column:" msgstr "包含字段:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 msgid "Save edited data" msgstr "保存已编辑的数据" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 msgid "Restore column order" msgstr "恢复字段顺序" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 msgid "Start row" msgstr "起始行" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 msgid "Number of rows" msgstr "行数" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 msgid "Mode" msgstr "模式" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "水平" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "水平 (旋转表头)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "垂直" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, fuzzy, php-format #| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "每 %s 行重复表头" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "主键排序" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2724,104 +2733,104 @@ msgstr "主键排序" msgid "Options" msgstr "选项" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "部分内容" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "完整内容" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "关联键" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "关联显示字段" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "显示二进制内容" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "显示 BLOB 内容" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "以十六进制显示二进制内容" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 msgid "Hide browser transformation" msgstr "隐藏浏览器转换" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "文本表达式 (WKT)" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "二进制表达式 (WKB)" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "已删除该行" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "杀死" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" "可能接近。参见 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "查询中" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "显示行" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "总计" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "查询结果选项" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "打印预览 (全文显示)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "显示图表" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "可视化 GIS 数据" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "新建视图" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "找不到链接" @@ -2868,7 +2877,8 @@ msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -"移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]" +"移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]" +"FAQ 1.11[/a]" #: libraries/File.class.php:485 msgid "Error while moving uploaded file." @@ -2942,8 +2952,8 @@ msgid "" msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除。" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "数据库" @@ -2959,11 +2969,11 @@ msgid "Tracking" msgstr "追踪" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "触发器" @@ -2981,9 +2991,9 @@ msgstr "数据库是空的!" msgid "Query" msgstr "查询" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "权限" @@ -2992,7 +3002,7 @@ msgid "Routines" msgstr "程序" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "事件" @@ -3085,46 +3095,46 @@ msgstr "%s 在此 MySQL 服务器上被禁止了。" msgid "This MySQL server does not support the %s storage engine." msgstr "此 MySQL 服务器不支持 %s 存储引擎。" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 msgid "unknown table status: " msgstr "未知表状态: " -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "源数据库" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "未找到主题 %s !" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "无效的数据库" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "无效的数据表名" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "将表 %1$s 改名为 %2$s 时发生错误" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "已将数据表 %s 改名为 %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "无法保存表界面设置" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3132,7 +3142,7 @@ msgid "" msgstr "" "清除表用户界面设置失败(查看$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3142,7 +3152,7 @@ msgstr "" "无法保存用户界面属性 \"%s\"。修改将在刷新本页后丢失。请检查表结构是否已修改。" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "函数" @@ -3154,7 +3164,7 @@ msgstr "运算符" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3193,7 +3203,7 @@ msgid "Maximum rows to plot" msgstr "显示的最多行数" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "浏览不相关的值" @@ -3218,7 +3228,6 @@ msgid "How to use" msgstr "如何使用" #: libraries/TableSearch.class.php:1210 -#| msgid "Reset" msgid "Reset zoom" msgstr "重置缩放" @@ -3551,7 +3560,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "数据表" @@ -3562,9 +3571,10 @@ msgstr "数据表" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "数据" @@ -3682,32 +3692,32 @@ msgid "Disabled" msgstr "已禁用" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "结构" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "数据" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "结构和数据" @@ -4115,13 +4125,13 @@ msgstr "压缩" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "首行保存字段名" @@ -4144,7 +4154,6 @@ msgstr "内容转义符" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "将 NULL 替换为" @@ -4184,23 +4193,22 @@ msgstr "数据表名模板" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "转储数据表" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "包含表的标题" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "表的标题" @@ -4209,14 +4217,14 @@ msgid "Continued table caption" msgstr "延续的表的标题" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "关键标签" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME 类型" @@ -4253,7 +4261,7 @@ msgid "SQL compatibility mode" msgstr "SQL 兼容模式" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE 选项:" @@ -4266,7 +4274,7 @@ msgid "Use delayed inserts" msgstr "使用延迟插入" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "禁止选定不相关的主键" @@ -4283,7 +4291,7 @@ msgid "Syntax to use when inserting data" msgstr "在插入数据时使用的语法" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "创建查询的最大长度" @@ -4292,7 +4300,7 @@ msgid "Export type" msgstr "导出类型" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "处理事务中封装输出" @@ -4347,7 +4355,6 @@ msgstr "自定义默认选项" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4406,7 +4413,6 @@ msgid "Set import and export directories and compression options" msgstr "设置导入和导出文件夹以及压缩选项" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4630,7 +4636,6 @@ msgid "Customize text input fields" msgstr "自定义文本输入框" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! 文本" @@ -5580,7 +5585,9 @@ msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" -msgstr "注意:该选项不影响 [kbd]config[/kbd] 认证方式,因为密码是保存在配置文件中,该选项也不限制直接执行可实现相同功能的命令" +msgstr "" +"注意:该选项不影响 [kbd]config[/kbd] 认证方式,因为密码是保存在配置文件中,该" +"选项也不限制直接执行可实现相同功能的命令" #: libraries/config/messages.inc.php:458 msgid "Show password change form" @@ -5743,9 +5750,11 @@ msgstr "需要启用 SQL 校验器" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "密码" @@ -5917,7 +5926,6 @@ msgstr "CSV 使用 LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "OpenOffice 表格" @@ -5939,19 +5947,16 @@ msgstr "数据库导出选项" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "微软 Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "OpenOffice 文档" @@ -6007,25 +6012,25 @@ msgstr "缺少 %s 扩展。请检查 PHP 配置。" msgid "possible deep recursion attack" msgstr "可能的深度递归攻击" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "服务器无响应(或者本地 MySQL 服务器的套接字没有正确配置)。" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 msgid "The server is not responding." msgstr "服务器没有响应。" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "请检查数据库目录的权限。" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "详细..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用配置文件中定义的控制用户连接失败。" @@ -6036,13 +6041,15 @@ msgid "Change password" msgstr "修改密码" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "无密码" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "重新输入" @@ -6063,8 +6070,9 @@ msgstr "新建数据库" msgid "Create" msgstr "创建" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "无权限" @@ -6074,12 +6082,12 @@ msgid "Create table" msgstr "新建数据表" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "名字" @@ -6215,7 +6223,7 @@ msgid "View output as text" msgstr "直接显示为文本" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "格式:" @@ -6503,8 +6511,8 @@ msgid "" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -"重建 MyISAM 索引时 MySQL 最多可以使用的临时文件大小 (在 REPAIR TABLE、ALTER TABLE 或 LOAD DATA " -"INFILE 时)。" +"重建 MyISAM 索引时 MySQL 最多可以使用的临时文件大小 (在 REPAIR TABLE、ALTER " +"TABLE 或 LOAD DATA INFILE 时)。" #: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" @@ -6527,7 +6535,9 @@ msgstr "修复线程" msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." -msgstr "如果该值大于 1,在进行排序过程的修复操作时 MyISAM 表的索引将会并发 (每个索引都有自己的线程) 创建。" +msgstr "" +"如果该值大于 1,在进行排序过程的修复操作时 MyISAM 表的索引将会并发 (每个索引" +"都有自己的线程) 创建。" #: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" @@ -6690,50 +6700,50 @@ msgstr "PrimeBase XT 博客 —— Paul McCullagh 著" msgid "No data found for GIS visualization." msgstr "未找到用于 GIS 可视化的数据。" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列结构被创建或修改。你可以:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 msgid "View a structure's contents by clicking on its name" msgstr "请通过点击结构的名称来查看它的内容" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "点击相应的“选项”链接修改它的设置" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 msgid "Edit structure by following the \"Structure\" link" msgstr "请通过点击 \"结构\" 链接来编辑结构" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, php-format msgid "Go to database: %s" msgstr "转到数据库: %s" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, php-format msgid "Edit settings for %s" msgstr "编辑 %s 的设置" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, php-format msgid "Go to table: %s" msgstr "转到表: %s" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, php-format msgid "Structure of %s" msgstr "%s 的结构" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, php-format msgid "Go to view: %s" msgstr "转到视图: %s" @@ -6802,11 +6812,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -7054,7 +7064,7 @@ msgstr "phpMyAdmin 文档" msgid "Reload navigation frame" msgstr "刷新导航框架" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "该格式没有选项" @@ -7164,93 +7174,93 @@ msgstr "没有可用的密钥插入" msgid "Authenticating..." msgstr "正在认证..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "字段分隔符:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "内容分隔符:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "内容转义符:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "换行符:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "将 NULL 替换为:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "删除字段中的回车换行符" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel 版本:" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "数据转储选项" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "转存表中的数据" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "事件" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "定义" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "表的结构" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "视图结构" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "替换视图以便查看" @@ -7266,162 +7276,158 @@ msgstr "(延续的)" msgid "Structure of table @TABLE@" msgstr "@TABLE@ 表的结构" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "对象创建选项" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "表的副标题" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "显示外键的关系" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "显示注释" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "显示 MIME 类型" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "主机" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "生成日期" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "服务器版本" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP 版本" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki 表" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "导出内容" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "水平 (旋转表头)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(根据一张表的数据生成报告)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "报告标题:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP 数组" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "显示注释 (包括导出时间、PHP 版本和服务器版本等信息)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "在文件头添加自定义注释 (\\n 为换行):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "包含数据库创建、最后更新和最后检查的时间" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "最大程度兼容数据库系统或旧版本的 MySQL 服务器:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "添加 %s 语句" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "添加语句:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" "给表和字段名加上反引号 (保护名称中含有特殊字符或保留字的字段和表)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "对象创建选项" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "代替 INSERT (插入) 语句,使用:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED (延迟插入) 语句" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE (忽略插入) 语句" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "转储数据时所使用的函数:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "插入数据时所使用的语法:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7430,7 +7436,7 @@ msgstr "" "给每个 INSERT (插入) 语句加上字段名
      " "如:INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7439,7 +7445,7 @@ msgstr "" "在每个 INSERT(插入) 语句中插入多行
      " "如:INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7447,7 +7453,7 @@ msgstr "" "以上兼有
      如:INSERT INTO tbl_name (col_A," "col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7455,13 +7461,13 @@ msgstr "" "以上均不
      如:INSERT INTO tbl_name VALUES " "(1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "转储二进制字段时用十六进制标记 (例如,“abc”将用 0x616263 表示)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7469,50 +7475,45 @@ msgstr "" "转储 TIMESTAMP 字段时用 UTC 时区 (允许在不同时区的服务器间转储和重新载入 " "TIMESTAMP 字段)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "存储过程" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "函数" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "限制导出的表" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "限制表" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME 类型表" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "表的关联" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 msgid "Error reading data:" msgstr "读取数据时发生错误:" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "对象创建选项 (推荐全选)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "视图" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "导出内容" @@ -7583,6 +7584,10 @@ msgstr "字段名" msgid "This plugin does not support compressed imports!" msgstr "该插件不支持导入文件!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki 表" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7637,6 +7642,10 @@ msgstr "SQL 兼容模式:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要给零值使用自增 (AUTO_INCREMENT)" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -7857,11 +7866,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "请重新登录 phpMyAdmin 以加载新配置并使其生效。" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "无说明" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "全不选" @@ -7883,9 +7893,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "用户名" @@ -7920,34 +7931,43 @@ msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。" msgid "Add slave replication user" msgstr "添加从复制用户" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "任意用户" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "使用文本域" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "任意主机" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "此主机" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "使用主机表" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7961,7 +7981,7 @@ msgstr "生成密码" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7997,8 +8017,8 @@ msgid "Edit event" msgstr "编辑事件" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "处理请求时的错误" @@ -8074,7 +8094,8 @@ msgstr "请选择一个有效的事件类型。" msgid "You must provide an event definition." msgstr "请输入事件定义。" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "新建" @@ -8209,24 +8230,24 @@ msgstr "请设置一个有效的返回类型。" msgid "You must provide a routine definition." msgstr "请输入程序定义。" -#: libraries/rte/rte_routines.lib.php:1286 +#: libraries/rte/rte_routines.lib.php:1279 +#, php-format +msgid "Execution results of routine %s" +msgstr "程序 %s 的运行结果" + +#: libraries/rte/rte_routines.lib.php:1343 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "存储过程中最后一条语句影响了 %d 行" -#: libraries/rte/rte_routines.lib.php:1302 -#, php-format -msgid "Execution results of routine %s" -msgstr "程序 %s 的运行结果" - -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "运行程序" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 msgid "Routine parameters" msgstr "程序参数" @@ -8355,28 +8376,28 @@ msgstr "在数据库 %2$s 中找不到名为 %1$s 的事件" msgid "There are no events to display." msgstr "没有事件。" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "数据表 %s 不存在!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "请配置表 %s 的并发" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "数据库 %s 的大纲 - 第 %s 页" @@ -8511,6 +8532,438 @@ msgstr "未知的语言:%1$s." msgid "Current Server" msgstr "当前服务器" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "无权限。" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "除了授权 (GRANT) 以外的所有权限。" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "允许读取数据。" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "允许插入和替换数据。" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "允许修改数据。" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "允许删除数据。" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "允许创建新数据库和数据表。" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "允许删除数据库和数据表。" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "允许重新载入服务器设置并刷新服务器的缓存。" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "允许关闭服务器。" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "允许查看所有用户的进程" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "允许从文件中导入数据以及将数据导出至文件。" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "在此版本的 MySQL 中无效。" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "允许创建和删除索引。" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "允许修改现有数据表的结构。" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "允许访问完整的数据库列表。" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"允许在达到最大连接数时连接,对于大多数像设置全局变量或杀死其它用户线程这样的" +"管理操作是必需的。" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "允许创建临时表。" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "允许锁定当前线程的表。" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "回复附属者所需。" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "用户有权询问附属者/控制者在哪里。" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "允许创建视图。" + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "允许为事件触发器设置事件" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "允许创建和删除触发器" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "允许执行 SHOW CREATE VIEW 查询。" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "允许创建存储过程。" + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "允许修改或删除储存过程。" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "允许创建、删除和重命名用户账户。" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "允许运行存储过程。" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "无" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "资源限制" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "注意:若将这些选项设为 0(零) 即不限制。" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "限制用户每小时可发送到服务器的查询数。" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "限制用户每小时打开的新连接数。" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "限制该用户的并发连接数。" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "按表指定权限" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "注意:MySQL 权限名称会以英文显示" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "管理" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "全局权限" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "按数据库指定权限" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "允许创建新数据表。" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "允许删除数据表。" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "允许添加用户和权限,而不允许重新载入权限表。" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "登录信息" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "保持原密码" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s 的密码已修改。" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "您已撤销 %s 的权限" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "用户数据库" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "创建与用户同名的数据库并授予所有权限" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "授予数据库 "%s" 的所有权限" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "用户可以访问“%s”" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "用户" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "授权" + +#: libraries/server_privileges.lib.php:1547 +msgid "User has been added." +msgstr "用户已添加。" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "任意" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "全局" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "按数据库指定" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "通配符" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "未找到用户。" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "编辑权限" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "撤销" + +#: libraries/server_privileges.lib.php:1729 +msgid "Export all" +msgstr "全部导出" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... 保留旧用户。" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... 从用户表中删除旧用户。" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... 撤销旧用户的所有权限,然后删除旧用户。" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "... 从用户表中删除旧用户,然后重新载入权限。" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "修改登录信息/复制用户" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "创建具有相同权限的新用户然后 ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "按字段指定权限" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "在下列数据库添加权限" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "在下列数据表添加权限" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "删除选中的用户" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "撤销用户所有权限,然后删除用户。" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "删除与用户同名的数据库。" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "没有选择要删除的用户!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "重新载入权限" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "已成功删除选中的用户。" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "您已更新了 %s 的权限。" + +#: libraries/server_privileges.lib.php:2695 +msgid "Privileges for all users" +msgstr "所有用户的权限" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "权限" + +#: libraries/server_privileges.lib.php:2812 +msgid "Users overview" +msgstr "用户概况" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" +"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" +"限%s。" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "在权限表内找不到选中的用户。" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "您已添加了一个新用户。" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "源数据库" @@ -8557,11 +9010,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" @@ -8589,7 +9042,9 @@ msgstr "仅查看" msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" -msgstr "您的 SQL 查询可能有错。如果可能的话,以下会列出 MySQL 服务器的错误输出,这可能对您解决问题有一定的帮助" +msgstr "" +"您的 SQL 查询可能有错。如果可能的话,以下会列出 MySQL 服务器的错误输出,这可" +"能对您解决问题有一定的帮助" #: libraries/sqlparser.lib.php:171 msgid "" @@ -8826,12 +9281,6 @@ msgstr "软件版本" msgid "Protocol version" msgstr "协议版本" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "用户" - #: main.php:217 msgid "Server charset" msgstr "服务器字符集" @@ -9341,428 +9790,20 @@ msgstr "授权" msgid "disabled" msgstr "已禁用" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "除了授权 (GRANT) 以外的所有权限。" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "允许修改现有数据表的结构。" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "允许修改或删除储存过程。" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "允许创建新数据库和数据表。" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "允许创建存储过程。" - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "允许创建新数据表。" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "允许创建临时表。" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "允许创建、删除和重命名用户账户。" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "允许创建视图。" - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "允许删除数据。" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "允许删除数据库和数据表。" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "允许删除数据表。" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "允许为事件触发器设置事件" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "允许运行存储过程。" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "允许从文件中导入数据以及将数据导出至文件。" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "允许添加用户和权限,而不允许重新载入权限表。" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "允许创建和删除索引。" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "允许插入和替换数据。" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "允许锁定当前线程的表。" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "限制用户每小时打开的新连接数。" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "限制用户每小时可发送到服务器的查询数。" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "限制该用户的并发连接数。" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "允许查看所有用户的进程" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "在此版本的 MySQL 中无效。" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "允许重新载入服务器设置并刷新服务器的缓存。" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "用户有权询问附属者/控制者在哪里。" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "回复附属者所需。" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "允许读取数据。" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "允许访问完整的数据库列表。" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "允许执行 SHOW CREATE VIEW 查询。" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "允许关闭服务器。" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"允许在达到最大连接数时连接,对于大多数像设置全局变量或杀死其它用户线程这样的" -"管理操作是必需的。" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "允许创建和删除触发器" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "允许修改数据。" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "无权限。" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "无" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "按表指定权限" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "注意:MySQL 权限名称会以英文显示" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "管理" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "全局权限" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "按数据库指定权限" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "资源限制" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "注意:若将这些选项设为 0(零) 即不限制。" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "登录信息" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "保持原密码" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "未找到用户。" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "用户 %s 己存在!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "您已添加了一个新用户。" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "您已更新了 %s 的权限。" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "您已撤销 %s 的权限" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s 的密码已修改。" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "正在删除 %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "没有选择要删除的用户!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "重新载入权限" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "已成功删除选中的用户。" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "编辑权限" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "撤销" - -#: server_privileges.php:1589 -msgid "Export all" -msgstr "全部导出" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "任意" - -#: server_privileges.php:1695 -msgid "Privileges for all users" -msgstr "所有用户的权限" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "权限" - -#: server_privileges.php:1739 -msgid "Users overview" -msgstr "用户概况" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "授权" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "删除选中的用户" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "撤销用户所有权限,然后删除用户。" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "删除与用户同名的数据库。" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" -"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" -"限%s。" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "在权限表内找不到选中的用户。" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "按字段指定权限" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "在下列数据库添加权限" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "在下列数据表添加权限" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "修改登录信息/复制用户" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "创建具有相同权限的新用户然后 ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... 保留旧用户。" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... 从用户表中删除旧用户。" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... 撤销旧用户的所有权限,然后删除旧用户。" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "... 从用户表中删除旧用户,然后重新载入权限。" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "用户数据库" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "创建与用户同名的数据库并授予所有权限" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "授予数据库 "%s" 的所有权限" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "用户可以访问“%s”" - -#: server_privileges.php:2544 -msgid "global" -msgstr "全局" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "按数据库指定" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "通配符" - -#: server_privileges.php:2590 -msgid "User has been added." -msgstr "用户已添加。" - #: server_replication.php:82 msgid "Unknown error" msgstr "未知错误" @@ -10138,7 +10179,9 @@ msgstr "复制状态" msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -msgstr "在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正确。" +msgstr "" +"在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" +"确。" #: server_status.php:1134 msgid "Received" @@ -10785,8 +10828,9 @@ msgid "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" msgstr "" -"当前用于控制连接的线程数。如果 Threads_created 很大,您可能需要增加 thread_cache_size " -"的值。(如果线程状况良好,这么做通常并不会带来显著的性能提升。)" +"当前用于控制连接的线程数。如果 Threads_created 很大,您可能需要增加 " +"thread_cache_size 的值。(如果线程状况良好,这么做通常并不会带来显著的性能提" +"升。)" #: server_status.php:1470 #, fuzzy @@ -11419,39 +11463,39 @@ msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。" msgid "Wrong data" msgstr "无效数据" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用书签 \"%s\" 作为默认的查询。" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "您真的要" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "显示为 PHP 代码" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "已校验的 SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL 查询结果" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "生成者" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "标签" @@ -12242,8 +12286,8 @@ msgid "" "distribution. The MySQL manual only is accurate for official MySQL binaries, " "not any package distributions (such as RedHat, Debian/Ubuntu etc)." msgstr "" -"如果您没有从源代码编译,您可能使用了再发行的修改版本。MySQL 手册仅适用于官方二进制,而非其它再发行包 (如 " -"RedHat、Debian/Ubuntu 等等)。" +"如果您没有从源代码编译,您可能使用了再发行的修改版本。MySQL 手册仅适用于官方" +"二进制,而非其它再发行包 (如 RedHat、Debian/Ubuntu 等等)。" #: libraries/advisory_rules.txt:119 msgid "'source' found in version_comment" @@ -12283,7 +12327,9 @@ msgid "" "Your memory capacity is above 3 GiB (assuming the Server is on localhost), " "so MySQL might not be able to access all of your memory. You might want to " "consider installing the 64-bit version of MySQL." -msgstr "您的内存大小超过 3 GB (若服务器就在本地),MySQL 可能无法访问所有内存。您需要考虑安装 64 位版本的 MySQL。" +msgstr "" +"您的内存大小超过 3 GB (若服务器就在本地),MySQL 可能无法访问所有内存。您需要" +"考虑安装 64 位版本的 MySQL。" #: libraries/advisory_rules.txt:140 #, php-format @@ -12305,8 +12351,9 @@ msgid "" "and setting {query_cache_type} to 'ON'. Note: If you are using " "memcached, ignore this recommendation." msgstr "" -"若正确设置查询缓存将带来性能上的极大提升。您可以通过设置 {query_cache_size} 为 2 位数的 MB 值和设置 " -"{query_cache_type} 为 'ON'。注意: 若您正在使用 memcached,请忽略此建议。" +"若正确设置查询缓存将带来性能上的极大提升。您可以通过设置 {query_cache_size} " +"为 2 位数的 MB 值和设置 {query_cache_type} 为 'ON'。注意: 若您正在使" +"用 memcached,请忽略此建议。" #: libraries/advisory_rules.txt:151 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -12329,16 +12376,18 @@ msgid "" "refman/5.5/en/ha-memcached.html\">memcached instead of the MySQL Query " "cache, especially if you have multiple slaves." msgstr "" -"您正在一台具有相当高流量的数据库中使用 MySQL 查询缓存。除非您有多台从服务器,使用 memcached 代替 MySQL 查询缓存将更好。" +"您正在一台具有相当高流量的数据库中使用 MySQL 查询缓存。除非您有多台从服务器," +"使用 memcached 代替 MySQL 查询缓存将更好。" #: libraries/advisory_rules.txt:158 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " "This rule fires if there is more than 100 queries per second." -msgstr "查询缓存已启用且服务器每秒收到 %d 个查询。该规则在每秒超过 100 个查询时被触发。" +msgstr "" +"查询缓存已启用且服务器每秒收到 %d 个查询。该规则在每秒超过 100 个查询时被触" +"发。" #: libraries/advisory_rules.txt:160 #, php-format @@ -12371,7 +12420,8 @@ msgstr "查询缓存使用不到 80%%。" msgid "" "This might be caused by {query_cache_limit} being too low. Flushing the " "query cache might help as well." -msgstr "这可能是因为 {query_cache_limit} 太低所导致。刷新查询缓存可能会有帮助。" +msgstr "" +"这可能是因为 {query_cache_limit} 太低所导致。刷新查询缓存可能会有帮助。" #: libraries/advisory_rules.txt:172 #, php-format @@ -12385,7 +12435,6 @@ msgid "Query cache fragmentation" msgstr "查询缓存碎片" #: libraries/advisory_rules.txt:177 -#| msgid "The query cache is not enabled." msgid "The query cache is considerably fragmented." msgstr "查询缓存碎片化相当严重。" @@ -12455,12 +12504,10 @@ msgstr "根据您的环境,减小该值可能会带来性能上的提升。" #: libraries/advisory_rules.txt:193 #, php-format -#| msgid "Current version: %s" msgid "Current query cache size: %s" msgstr "当前查询缓存大小: %s" #: libraries/advisory_rules.txt:195 -#| msgid "Query results" msgid "Query cache min result size" msgstr "查询缓存结果最小大小" @@ -12682,8 +12729,6 @@ msgid "" msgstr "%s%% 的临时表被创建在磁盘上,该值应低于 25%%" #: libraries/advisory_rules.txt:269 -#| msgid "%s table" -#| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "临时磁盘使用率" @@ -12963,12 +13008,10 @@ msgid "" msgstr "Max_used_connections 为 max_connections 的 %s%%,该值应低于 80%%" #: libraries/advisory_rules.txt:392 -#| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "已中止连接率" #: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 -#| msgid "Too many clients are aborted." msgid "Too many connections are aborted." msgstr "太多连接已中止。" @@ -12982,12 +13025,10 @@ msgstr "" #: libraries/advisory_rules.txt:397 #, php-format -#| msgid "%s%% of all clients are aborted. This value should be below 2%%" msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "%s%% 的连接已中止。该值应低于 1%%" #: libraries/advisory_rules.txt:399 -#| msgid "Persistent connections" msgid "Rate of aborted connections" msgstr "已中止连接的比例" @@ -13000,7 +13041,6 @@ msgid "" msgstr "客户端取消率为 %s,此值应低于 1 每小时" #: libraries/advisory_rules.txt:406 -#| msgid "Format of imported file" msgid "Percentage of aborted clients" msgstr "已中止客户端比例" @@ -13013,7 +13053,9 @@ msgid "" "Clients are usually aborted when they did not close their connection to " "MySQL properly. This can be due to network issues or code not closing a " "database handler properly. Check your network and code." -msgstr "客户端中止通常是因为它们没有正确关闭到 MySQL 服务器的连接。这可能由网络问题或代码中没有正确关闭数据库连接引起。请检查您的网络和代码。" +msgstr "" +"客户端中止通常是因为它们没有正确关闭到 MySQL 服务器的连接。这可能由网络问题或" +"代码中没有正确关闭数据库连接引起。请检查您的网络和代码。" #: libraries/advisory_rules.txt:411 #, php-format @@ -13178,6 +13220,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 被设为 0" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP 数组" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/po/zh_TW.po b/po/zh_TW.po index 31d6def2bc..fea090ff97 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-07-18 11:12+0200\n" +"POT-Creation-Date: 2012-07-27 10:40+0200\n" "PO-Revision-Date: 2012-05-23 10:16+0200\n" "Last-Translator: MoA Chung \n" "Language-Team: chinese_traditional \n" @@ -15,7 +15,8 @@ msgstr "" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 -#: libraries/DisplayResults.class.php:790 server_privileges.php:1851 +#: libraries/DisplayResults.class.php:794 +#: libraries/server_privileges.lib.php:2520 msgid "Show all" msgstr "全部顯示" @@ -39,16 +40,16 @@ msgstr "" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 -#: libraries/CommonFunctions.class.php:3594 -#: libraries/CommonFunctions.class.php:3595 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3593 +#: libraries/CommonFunctions.class.php:3594 libraries/Menu.class.php:274 #: libraries/Menu.class.php:368 msgid "Search" msgstr "搜尋" -#: browse_foreigners.php:171 db_operations.php:432 db_operations.php:472 -#: db_operations.php:587 db_operations.php:616 gis_data_editor.php:304 +#: browse_foreigners.php:171 db_operations.php:431 db_operations.php:471 +#: db_operations.php:586 db_operations.php:615 gis_data_editor.php:304 #: js/messages.php:231 libraries/DbSearch.class.php:479 -#: libraries/DisplayResults.class.php:1635 +#: libraries/DisplayResults.class.php:1640 #: libraries/TableSearch.class.php:1166 libraries/core.lib.php:534 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 @@ -58,24 +59,26 @@ msgstr "搜尋" #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 -#: libraries/rte/rte_routines.lib.php:1538 +#: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:165 #: libraries/schema/User_Schema.class.php:225 #: libraries/schema/User_Schema.class.php:467 #: libraries/schema/User_Schema.class.php:507 +#: libraries/server_privileges.lib.php:473 +#: libraries/server_privileges.lib.php:1417 +#: libraries/server_privileges.lib.php:1874 +#: libraries/server_privileges.lib.php:2466 +#: libraries/server_privileges.lib.php:2977 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/tbl_properties.inc.php:734 #: pmd_pdf.php:148 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:114 server_privileges.php:856 server_privileges.php:1980 -#: server_privileges.php:2344 server_privileges.php:2395 -#: server_privileges.php:2427 server_replication.php:265 -#: server_replication.php:348 server_replication.php:379 -#: server_synchronize.php:1483 tbl_indexes.php:318 tbl_operations.php:296 -#: tbl_operations.php:333 tbl_operations.php:544 tbl_operations.php:607 -#: tbl_operations.php:810 tbl_structure.php:719 tbl_structure.php:752 -#: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:191 -#: view_operations.php:96 +#: server_binlog.php:114 server_replication.php:265 server_replication.php:348 +#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:318 +#: tbl_operations.php:296 tbl_operations.php:333 tbl_operations.php:544 +#: tbl_operations.php:607 tbl_operations.php:810 tbl_structure.php:719 +#: tbl_structure.php:752 tbl_tracking.php:497 tbl_tracking.php:639 +#: view_create.php:191 view_operations.php:96 msgid "Go" msgstr "執行" @@ -107,7 +110,7 @@ msgstr "本系統不支援 %s 格式,詳情請參考 www.phpmyadmin.net" msgid "Database %1$s has been created." msgstr "建立資料庫 %1$s 成功" -#: db_datadict.php:49 db_operations.php:424 +#: db_datadict.php:49 db_operations.php:423 msgid "Database comment: " msgstr "資料庫註釋: " @@ -117,17 +120,17 @@ msgstr "資料庫註釋: " msgid "Table comments" msgstr "表註釋" -#: db_datadict.php:163 db_qbe.php:246 libraries/Index.class.php:467 -#: libraries/TableSearch.class.php:198 libraries/TableSearch.class.php:1219 -#: libraries/insert_edit.lib.php:1586 -#: libraries/plugins/export/ExportHtmlword.class.php:268 -#: libraries/plugins/export/ExportHtmlword.class.php:384 -#: libraries/plugins/export/ExportLatex.class.php:506 -#: libraries/plugins/export/ExportOdt.class.php:348 -#: libraries/plugins/export/ExportOdt.class.php:447 -#: libraries/plugins/export/ExportTexytext.class.php:258 -#: libraries/plugins/export/ExportTexytext.class.php:359 -#: libraries/plugins/export/ExportTexytext.class.php:422 +#: db_datadict.php:163 libraries/DBQbe.class.php:354 +#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1219 libraries/insert_edit.lib.php:1586 +#: libraries/plugins/export/ExportHtmlword.class.php:275 +#: libraries/plugins/export/ExportHtmlword.class.php:391 +#: libraries/plugins/export/ExportLatex.class.php:500 +#: libraries/plugins/export/ExportOdt.class.php:353 +#: libraries/plugins/export/ExportOdt.class.php:452 +#: libraries/plugins/export/ExportTexytext.class.php:267 +#: libraries/plugins/export/ExportTexytext.class.php:368 +#: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 #: libraries/tbl_properties.inc.php:323 tbl_indexes.php:234 @@ -139,34 +142,34 @@ msgstr "欄位" #: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 #: libraries/TableSearch.class.php:199 libraries/db_structure.lib.php:48 #: libraries/insert_edit.lib.php:263 libraries/insert_edit.lib.php:267 -#: libraries/plugins/export/ExportHtmlword.class.php:271 -#: libraries/plugins/export/ExportHtmlword.class.php:387 -#: libraries/plugins/export/ExportLatex.class.php:507 -#: libraries/plugins/export/ExportOdt.class.php:351 -#: libraries/plugins/export/ExportOdt.class.php:450 -#: libraries/plugins/export/ExportTexytext.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:360 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:394 +#: libraries/plugins/export/ExportLatex.class.php:501 +#: libraries/plugins/export/ExportOdt.class.php:356 +#: libraries/plugins/export/ExportOdt.class.php:455 +#: libraries/plugins/export/ExportTexytext.class.php:268 +#: libraries/plugins/export/ExportTexytext.class.php:369 #: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 #: libraries/rte/rte_routines.lib.php:895 #: libraries/rte/rte_routines.lib.php:920 -#: libraries/rte/rte_routines.lib.php:1456 +#: libraries/rte/rte_routines.lib.php:1486 #: libraries/schema/Pdf_Relation_Schema.class.php:1392 #: libraries/schema/Pdf_Relation_Schema.class.php:1413 -#: libraries/tbl_properties.inc.php:87 server_privileges.php:2441 -#: tbl_printview.php:134 tbl_structure.php:204 tbl_tracking.php:311 -#: tbl_tracking.php:374 +#: libraries/server_privileges.lib.php:1511 +#: libraries/tbl_properties.inc.php:87 tbl_printview.php:134 +#: tbl_structure.php:204 tbl_tracking.php:311 tbl_tracking.php:374 msgid "Type" msgstr "類型" #: db_datadict.php:166 libraries/Index.class.php:470 #: libraries/TableSearch.class.php:1220 libraries/insert_edit.lib.php:1595 -#: libraries/plugins/export/ExportHtmlword.class.php:274 -#: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:508 -#: libraries/plugins/export/ExportOdt.class.php:354 -#: libraries/plugins/export/ExportOdt.class.php:453 -#: libraries/plugins/export/ExportTexytext.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:361 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:397 +#: libraries/plugins/export/ExportLatex.class.php:502 +#: libraries/plugins/export/ExportOdt.class.php:359 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:269 +#: libraries/plugins/export/ExportTexytext.class.php:370 #: libraries/schema/Pdf_Relation_Schema.class.php:1394 #: libraries/schema/Pdf_Relation_Schema.class.php:1415 #: libraries/tbl_properties.inc.php:94 tbl_printview.php:135 @@ -175,13 +178,13 @@ msgid "Null" msgstr "空" #: db_datadict.php:167 db_structure.php:644 -#: libraries/plugins/export/ExportHtmlword.class.php:277 -#: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:509 -#: libraries/plugins/export/ExportOdt.class.php:357 -#: libraries/plugins/export/ExportOdt.class.php:456 -#: libraries/plugins/export/ExportTexytext.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:362 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:400 +#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportOdt.class.php:362 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:270 +#: libraries/plugins/export/ExportTexytext.class.php:371 #: libraries/schema/Pdf_Relation_Schema.class.php:1395 #: libraries/schema/Pdf_Relation_Schema.class.php:1416 #: libraries/tbl_properties.inc.php:91 tbl_printview.php:136 @@ -189,10 +192,10 @@ msgstr "空" msgid "Default" msgstr "預設" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:397 -#: libraries/plugins/export/ExportLatex.class.php:511 -#: libraries/plugins/export/ExportOdt.class.php:460 -#: libraries/plugins/export/ExportTexytext.class.php:364 +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportOdt.class.php:465 +#: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 #: libraries/schema/Pdf_Relation_Schema.class.php:1418 tbl_printview.php:139 msgid "Links to" @@ -201,10 +204,10 @@ msgstr "連結到" #: db_datadict.php:173 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 -#: libraries/plugins/export/ExportHtmlword.class.php:402 -#: libraries/plugins/export/ExportLatex.class.php:514 -#: libraries/plugins/export/ExportOdt.class.php:465 -#: libraries/plugins/export/ExportTexytext.class.php:367 +#: libraries/plugins/export/ExportHtmlword.class.php:409 +#: libraries/plugins/export/ExportLatex.class.php:508 +#: libraries/plugins/export/ExportOdt.class.php:470 +#: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 #: libraries/schema/Pdf_Relation_Schema.class.php:1419 #: libraries/tbl_properties.inc.php:114 tbl_printview.php:141 @@ -215,18 +218,21 @@ msgstr "註釋" #: libraries/Index.class.php:387 libraries/Index.class.php:740 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:325 -#: libraries/plugins/export/ExportHtmlword.class.php:624 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:715 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:631 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:720 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 -#: server_privileges.php:1615 server_privileges.php:1625 -#: server_privileges.php:1909 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2261 -#: server_privileges.php:2558 sql.php:369 sql.php:436 tbl_printview.php:192 -#: tbl_structure.php:347 tbl_tracking.php:334 tbl_tracking.php:390 -#: tbl_tracking.php:395 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1774 +#: libraries/server_privileges.lib.php:1787 +#: libraries/server_privileges.lib.php:2058 +#: libraries/server_privileges.lib.php:2064 +#: libraries/server_privileges.lib.php:2388 +#: libraries/server_privileges.lib.php:2401 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:128 sql.php:373 +#: sql.php:440 tbl_printview.php:192 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:390 tbl_tracking.php:395 msgid "No" msgstr "否" @@ -239,19 +245,22 @@ msgstr "否" #: libraries/mult_submits.inc.php:125 libraries/mult_submits.inc.php:287 #: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324 #: libraries/mult_submits.inc.php:331 -#: libraries/plugins/export/ExportHtmlword.class.php:625 -#: libraries/plugins/export/ExportLatex.class.php:578 -#: libraries/plugins/export/ExportOdt.class.php:716 -#: libraries/plugins/export/ExportTexytext.class.php:556 +#: libraries/plugins/export/ExportHtmlword.class.php:632 +#: libraries/plugins/export/ExportLatex.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:721 +#: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 +#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1771 +#: libraries/server_privileges.lib.php:1785 +#: libraries/server_privileges.lib.php:2057 +#: libraries/server_privileges.lib.php:2062 +#: libraries/server_privileges.lib.php:2385 +#: libraries/server_privileges.lib.php:2401 #: libraries/user_preferences.lib.php:307 prefs_manage.php:127 -#: server_databases.php:104 server_databases.php:111 -#: server_privileges.php:1613 server_privileges.php:1623 -#: server_privileges.php:1906 server_privileges.php:1920 -#: server_privileges.php:2256 server_privileges.php:2259 -#: server_privileges.php:2558 sql.php:435 tbl_printview.php:193 -#: tbl_structure.php:45 tbl_structure.php:347 tbl_tracking.php:334 -#: tbl_tracking.php:388 tbl_tracking.php:393 +#: server_databases.php:104 server_databases.php:111 sql.php:439 +#: tbl_printview.php:193 tbl_structure.php:45 tbl_structure.php:347 +#: tbl_tracking.php:334 tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "是" @@ -259,8 +268,8 @@ msgstr "是" msgid "View dump (schema) of database" msgstr "查看資料庫的轉存(大綱)" -#: db_export.php:33 db_printview.php:93 db_qbe.php:144 db_tracking.php:52 -#: export.php:414 navigation.php:280 +#: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 +#: libraries/DBQbe.class.php:267 navigation.php:280 msgid "No tables found in database." msgstr "資料庫中沒有表" @@ -276,76 +285,76 @@ msgstr "全不選" msgid "The database name is empty!" msgstr "資料庫名不能爲空!" -#: db_operations.php:328 +#: db_operations.php:327 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "資料庫 %s 已變更名稱為 %s" -#: db_operations.php:332 +#: db_operations.php:331 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "已將資料庫 %s 複製爲 %s" -#: db_operations.php:466 +#: db_operations.php:465 msgid "Rename database to" msgstr "將資料庫改名為" -#: db_operations.php:493 +#: db_operations.php:492 msgid "Remove database" msgstr "刪除資料庫" -#: db_operations.php:505 +#: db_operations.php:504 #, php-format msgid "Database %s has been dropped." msgstr "已被刪除資料庫 %s" -#: db_operations.php:510 +#: db_operations.php:509 msgid "Drop the database (DROP)" msgstr "刪除資料庫 (DROP)" -#: db_operations.php:539 +#: db_operations.php:538 msgid "Copy database to" msgstr "複製資料庫到" -#: db_operations.php:546 tbl_operations.php:573 tbl_tracking.php:490 +#: db_operations.php:545 tbl_operations.php:573 tbl_tracking.php:490 msgid "Structure only" msgstr "僅結構" -#: db_operations.php:547 tbl_operations.php:574 tbl_tracking.php:492 +#: db_operations.php:546 tbl_operations.php:574 tbl_tracking.php:492 msgid "Structure and data" msgstr "結構和資料" -#: db_operations.php:548 tbl_operations.php:575 tbl_tracking.php:491 +#: db_operations.php:547 tbl_operations.php:575 tbl_tracking.php:491 msgid "Data only" msgstr "僅資料" -#: db_operations.php:558 +#: db_operations.php:557 msgid "CREATE DATABASE before copying" msgstr "複製前建立資料庫 (CREATE DATABASE)" -#: db_operations.php:561 libraries/config/messages.inc.php:130 +#: db_operations.php:560 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 #: libraries/config/messages.inc.php:139 tbl_operations.php:581 #, php-format msgid "Add %s" msgstr "新增 %s" -#: db_operations.php:565 libraries/config/messages.inc.php:123 +#: db_operations.php:564 libraries/config/messages.inc.php:123 #: tbl_operations.php:330 tbl_operations.php:583 msgid "Add AUTO_INCREMENT value" msgstr "新增自動遞增(AUTO_INCREMENT)數值" -#: db_operations.php:569 tbl_operations.php:590 +#: db_operations.php:568 tbl_operations.php:590 msgid "Add constraints" msgstr "新增 constraints" -#: db_operations.php:584 +#: db_operations.php:583 msgid "Switch to copied database" msgstr "切換到複製的資料庫" -#: db_operations.php:607 libraries/Index.class.php:469 +#: db_operations.php:606 libraries/Index.class.php:469 #: libraries/TableSearch.class.php:200 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:50 libraries/mysql_charsets.lib.php:115 #: libraries/tbl_properties.inc.php:92 libraries/tbl_properties.inc.php:834 @@ -355,14 +364,14 @@ msgstr "切換到複製的資料庫" msgid "Collation" msgstr "排序規則" -#: db_operations.php:624 +#: db_operations.php:623 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "phpMyAdmin 設定儲存功能未能啟動, %s請按此%s 查出問題原因." -#: db_operations.php:659 +#: db_operations.php:658 msgid "Edit or export relational schema" msgstr "編輯或匯出關聯大綱" @@ -372,16 +381,18 @@ msgstr "編輯或匯出關聯大綱" #: libraries/plugins/export/ExportXml.class.php:458 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:293 server_privileges.php:2031 -#: server_privileges.php:2089 server_privileges.php:2358 -#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:719 +#: libraries/schema/User_Schema.class.php:293 +#: libraries/server_privileges.lib.php:1902 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2778 server_synchronize.php:522 +#: server_synchronize.php:1042 tbl_tracking.php:719 msgid "Table" msgstr "表" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:633 navigation.php:672 sql.php:984 tbl_printview.php:370 +#: libraries/db_structure.lib.php:42 libraries/import.lib.php:179 +#: navigation.php:633 navigation.php:672 sql.php:975 tbl_printview.php:370 #: tbl_structure.php:465 tbl_structure.php:539 tbl_structure.php:939 msgid "Rows" msgstr "行數" @@ -391,13 +402,13 @@ msgid "Size" msgstr "大小" #: db_printview.php:160 db_structure.php:597 -#: libraries/plugins/export/ExportSql.class.php:1097 +#: libraries/plugins/export/ExportSql.class.php:1060 msgid "in use" msgstr "使用中" #: db_printview.php:186 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:62 -#: libraries/plugins/export/ExportSql.class.php:1025 +#: libraries/plugins/export/ExportSql.class.php:988 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:418 #: tbl_structure.php:971 msgid "Creation" @@ -405,7 +416,7 @@ msgstr "建立時間" #: db_printview.php:195 libraries/db_info.inc.php:87 #: libraries/db_structure.lib.php:67 -#: libraries/plugins/export/ExportSql.class.php:1038 +#: libraries/plugins/export/ExportSql.class.php:1001 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 tbl_printview.php:432 #: tbl_structure.php:979 msgid "Last update" @@ -413,7 +424,7 @@ msgstr "最後更新" #: db_printview.php:204 libraries/db_info.inc.php:93 #: libraries/db_structure.lib.php:72 -#: libraries/plugins/export/ExportSql.class.php:1051 +#: libraries/plugins/export/ExportSql.class.php:1014 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 tbl_printview.php:446 #: tbl_structure.php:987 msgid "Last check" @@ -425,92 +436,15 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s 張資料表" -#: db_qbe.php:81 +#: db_qbe.php:40 msgid "You have to choose at least one column to display" msgstr "您至少需要選擇一個欄位" -#: db_qbe.php:223 libraries/DisplayResults.class.php:1251 -#: libraries/DisplayResults.class.php:1989 -#: libraries/DisplayResults.class.php:1997 libraries/TableSearch.class.php:829 -#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 -msgid "Ascending" -msgstr "遞增" - -#: db_qbe.php:225 libraries/DisplayResults.class.php:1263 -#: libraries/DisplayResults.class.php:1984 -#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:830 -#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 -#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 -msgid "Descending" -msgstr "遞減" - -#: db_qbe.php:283 libraries/DisplayResults.class.php:2057 -#: libraries/db_structure.lib.php:110 -msgid "Sort" -msgstr "排序" - -#: db_qbe.php:338 db_tracking.php:88 libraries/DisplayResults.class.php:884 -#: tbl_change.php:218 tbl_tracking.php:724 -msgid "Show" -msgstr "顯示" - -#: db_qbe.php:384 -msgid "Criteria" -msgstr "條件" - -#: db_qbe.php:433 -msgid "Add/Delete criteria rows" -msgstr "新增/刪除標準行" - -#: db_qbe.php:433 -msgid "Add/Delete columns" -msgstr "新增/刪除欄位" - -#: db_qbe.php:460 db_qbe.php:493 -msgid "Update Query" -msgstr "更新查詢" - -#: db_qbe.php:477 -msgid "Use Tables" -msgstr "使用表" - -#: db_qbe.php:511 db_qbe.php:637 db_qbe.php:718 -#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 -#: server_privileges.php:493 tbl_indexes.php:313 -msgid "Or" -msgstr "或" - -#: db_qbe.php:514 db_qbe.php:624 db_qbe.php:706 -msgid "And" -msgstr "與" - -#: db_qbe.php:517 db_qbe.php:620 db_qbe.php:702 -msgid "Ins" -msgstr "插入" - -#: db_qbe.php:519 db_qbe.php:633 db_qbe.php:714 -msgid "Del" -msgstr "刪除" - -#: db_qbe.php:542 -msgid "Modify" -msgstr "修改" - -#: db_qbe.php:580 +#: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" msgstr "切換至 %svisual builder%s" -#: db_qbe.php:795 -#, php-format -msgid "SQL query on database %s:" -msgstr "在資料庫 %s 執行 SQL 指令:" - -#: db_qbe.php:1096 libraries/CommonFunctions.class.php:1318 -msgid "Submit Query" -msgstr "送出查詢" - #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 #: libraries/plugins/auth/AuthenticationCookie.class.php:575 @@ -551,7 +485,7 @@ msgstr "追蹤已啓用" msgid "Tracking is not active." msgstr "追蹤已停用" -#: db_structure.php:530 libraries/DisplayResults.class.php:4709 +#: db_structure.php:530 libraries/DisplayResults.class.php:4720 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -579,20 +513,21 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 伺服器的預設儲存引擎" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 -#: libraries/DisplayResults.class.php:4840 -#: libraries/DisplayResults.class.php:4846 libraries/mult_submits.inc.php:40 -#: server_databases.php:298 server_databases.php:301 -#: server_privileges.php:1943 server_privileges.php:1946 tbl_structure.php:562 -#: tbl_structure.php:566 +#: libraries/DisplayResults.class.php:4851 +#: libraries/DisplayResults.class.php:4857 libraries/mult_submits.inc.php:40 +#: libraries/server_privileges.lib.php:2316 +#: libraries/server_privileges.lib.php:2319 server_databases.php:298 +#: server_databases.php:301 tbl_structure.php:562 tbl_structure.php:566 msgid "With selected:" msgstr "選中項:" #: db_structure.php:687 db_structure.php:688 -#: libraries/DisplayResults.class.php:4844 -#: libraries/DisplayResults.class.php:4845 server_databases.php:299 -#: server_databases.php:300 server_privileges.php:794 -#: server_privileges.php:1944 server_privileges.php:1945 tbl_structure.php:563 -#: tbl_structure.php:564 +#: libraries/DisplayResults.class.php:4855 +#: libraries/DisplayResults.class.php:4856 +#: libraries/server_privileges.lib.php:754 +#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2318 server_databases.php:299 +#: server_databases.php:300 tbl_structure.php:563 tbl_structure.php:564 msgid "Check All" msgstr "全選" @@ -600,31 +535,32 @@ msgstr "全選" msgid "Check tables having overhead" msgstr "僅選擇多餘" -#: db_structure.php:701 libraries/CommonFunctions.class.php:3605 -#: libraries/CommonFunctions.class.php:3606 -#: libraries/DisplayResults.class.php:4863 -#: libraries/DisplayResults.class.php:5060 libraries/Menu.class.php:286 +#: db_structure.php:701 libraries/CommonFunctions.class.php:3604 +#: libraries/CommonFunctions.class.php:3605 +#: libraries/DisplayResults.class.php:4874 +#: libraries/DisplayResults.class.php:5071 libraries/Menu.class.php:286 #: libraries/Menu.class.php:376 libraries/Menu.class.php:475 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 -#: prefs_manage.php:292 server_privileges.php:1581 server_privileges.php:1950 +#: libraries/server_privileges.lib.php:1719 +#: libraries/server_privileges.lib.php:2323 prefs_manage.php:292 #: server_status.php:1679 setup/frames/menu.inc.php:22 msgid "Export" msgstr "匯出" #: db_structure.php:703 db_structure.php:751 -#: libraries/DisplayResults.class.php:4984 libraries/Header.class.php:261 +#: libraries/DisplayResults.class.php:4995 libraries/Header.class.php:261 #: tbl_structure.php:652 msgid "Print view" msgstr "列印預覽" -#: db_structure.php:707 libraries/CommonFunctions.class.php:3601 -#: libraries/CommonFunctions.class.php:3602 +#: db_structure.php:707 libraries/CommonFunctions.class.php:3600 +#: libraries/CommonFunctions.class.php:3601 msgid "Empty" msgstr "清空" #: db_structure.php:709 db_tracking.php:103 -#: libraries/CommonFunctions.class.php:3599 -#: libraries/CommonFunctions.class.php:3600 libraries/Index.class.php:528 +#: libraries/CommonFunctions.class.php:3598 +#: libraries/CommonFunctions.class.php:3599 libraries/Index.class.php:528 #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" @@ -668,17 +604,18 @@ msgstr "已追蹤的表" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 -#: libraries/plugins/export/ExportHtmlword.class.php:149 -#: libraries/plugins/export/ExportLatex.class.php:256 -#: libraries/plugins/export/ExportOdt.class.php:192 -#: libraries/plugins/export/ExportSql.class.php:842 -#: libraries/plugins/export/ExportTexytext.class.php:130 +#: libraries/plugins/export/ExportHtmlword.class.php:156 +#: libraries/plugins/export/ExportLatex.class.php:250 +#: libraries/plugins/export/ExportOdt.class.php:197 +#: libraries/plugins/export/ExportSql.class.php:805 +#: libraries/plugins/export/ExportTexytext.class.php:139 #: libraries/plugins/export/ExportXml.class.php:391 #: libraries/plugins/export/PMA_ExportPdf.class.php:95 -#: server_databases.php:194 server_privileges.php:2026 -#: server_privileges.php:2089 server_privileges.php:2352 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2127 +#: libraries/server_privileges.lib.php:2769 server_databases.php:194 #: server_status.php:1290 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:978 tbl_tracking.php:718 +#: server_synchronize.php:1455 sql.php:969 tbl_tracking.php:718 msgid "Database" msgstr "資料庫" @@ -696,18 +633,26 @@ msgstr "更新" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:465 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1293 sql.php:1052 tbl_tracking.php:723 +#: server_status.php:1293 sql.php:1043 tbl_tracking.php:723 msgid "Status" msgstr "狀態" #: db_tracking.php:87 libraries/Index.class.php:461 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 -#: server_databases.php:229 server_privileges.php:1880 -#: server_privileges.php:2093 server_privileges.php:2444 tbl_structure.php:221 +#: libraries/server_privileges.lib.php:1514 +#: libraries/server_privileges.lib.php:2137 +#: libraries/server_privileges.lib.php:2300 server_databases.php:229 +#: tbl_structure.php:221 msgid "Action" msgstr "動作" +#: db_tracking.php:88 libraries/DBQbe.class.php:448 +#: libraries/DisplayResults.class.php:888 tbl_change.php:218 +#: tbl_tracking.php:724 +msgid "Show" +msgstr "顯示" + #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "刪除追蹤資料" @@ -748,31 +693,31 @@ msgstr "資料庫日誌" msgid "Bad type!" msgstr "錯誤的類型!" -#: export.php:97 +#: export.php:95 msgid "Selected export type has to be saved in file!" msgstr "選擇的匯出的檔案格式" -#: export.php:125 +#: export.php:124 msgid "Bad parameters!" msgstr "錯誤的參數!" -#: export.php:196 export.php:227 export.php:781 +#: export.php:195 export.php:226 export.php:782 #, php-format msgid "Insufficient space to save the file %s." msgstr "沒有足夠的空間儲存檔案 %s." -#: export.php:362 +#: export.php:363 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "檔案 %s 已存在, 請更改檔案名稱或選擇「覆寫己存在檔案」選項." -#: export.php:369 export.php:375 +#: export.php:370 export.php:376 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "網站伺服器沒有儲存 %s 檔案的權限" -#: export.php:787 +#: export.php:788 #, php-format msgid "Dump has been saved to file %s." msgstr "備份資料已儲存至檔案 %s." @@ -796,7 +741,7 @@ msgid "SRID" msgstr "" #: gis_data_editor.php:141 js/messages.php:326 -#: libraries/DisplayResults.class.php:1619 +#: libraries/DisplayResults.class.php:1624 msgid "Geometry" msgstr "" @@ -879,27 +824,27 @@ msgid "" "string into the \"Value\" field" msgstr "" -#: import.php:88 +#: import.php:94 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制." -#: import.php:226 import.php:475 +#: import.php:232 import.php:485 msgid "Showing bookmark" msgstr "顯示書籤" -#: import.php:241 import.php:471 +#: import.php:247 import.php:481 msgid "The bookmark has been deleted." msgstr "書籤已被刪除." -#: import.php:336 import.php:389 libraries/File.class.php:426 +#: import.php:342 import.php:395 libraries/File.class.php:426 #: libraries/File.class.php:517 msgid "File could not be read" msgstr "檔案無法讀取" -#: import.php:344 import.php:353 import.php:372 import.php:381 +#: import.php:350 import.php:359 import.php:378 import.php:387 #: libraries/File.class.php:578 #, php-format msgid "" @@ -909,7 +854,7 @@ msgstr "" "您試圖載入無法支援的壓縮檔 (%s). 可能是檔案格式尚未被支援或該檔案的支援功能在" "您的設定檔中被停用." -#: import.php:394 +#: import.php:400 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,33 +863,33 @@ msgstr "" "沒有接收到要匯入的資料。可能是檔案名稱沒有送出,也可能是檔案大小超出 PHP 限制" "參見 [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]" -#: import.php:412 +#: import.php:418 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:444 libraries/display_import.lib.php:29 +#: import.php:454 libraries/display_import.lib.php:29 msgid "Could not load import plugins, please check your installation!" msgstr "無法載入匯入插件,請檢查您的安裝!" -#: import.php:478 sql.php:1090 +#: import.php:488 sql.php:1081 #, php-format msgid "Bookmark %s created" msgstr "已建立書籤 %s" -#: import.php:486 import.php:492 +#: import.php:496 import.php:502 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "匯入成功, 共 %d 個語法被執行." -#: import.php:501 +#: import.php:511 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" "指令已逾時, 如果想完成匯入, 請重新送出相同檔案, 送出後匯入動作會繼續執行." -#: import.php:503 +#: import.php:513 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -952,8 +897,8 @@ msgstr "" "在最後一次執行時沒有資料被解析,建議您增加 PHP 運行時間限制,否則 phpMyAdmin " "將無法完成匯入操作" -#: import.php:531 libraries/DisplayResults.class.php:4330 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1281 +#: import.php:541 libraries/DisplayResults.class.php:4341 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:232 #: tbl_relation.php:294 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" @@ -968,7 +913,7 @@ msgstr "返回" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 較適合使用在支援頁框的瀏覽器." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:309 +#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令" @@ -978,7 +923,7 @@ msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令" msgid "Do you really want to execute \"%s\"?" msgstr "您真的要" -#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:414 +#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:418 msgid "You are about to DESTROY a complete database!" msgstr "您將要刪除一個完整的資料庫!" @@ -1041,16 +986,20 @@ msgstr "主機名不能爲空!" msgid "The user name is empty!" msgstr "帳號不能爲空!" -#: js/messages.php:53 server_privileges.php:1448 user_password.php:109 +#: js/messages.php:53 libraries/server_privileges.lib.php:1259 +#: user_password.php:109 msgid "The password is empty!" msgstr "密碼不能爲空!" -#: js/messages.php:54 server_privileges.php:1446 user_password.php:112 +#: js/messages.php:54 libraries/server_privileges.lib.php:1257 +#: user_password.php:112 msgid "The passwords aren't the same!" msgstr "兩次密碼不一致!" -#: js/messages.php:55 server_privileges.php:1965 server_privileges.php:1989 -#: server_privileges.php:2405 server_privileges.php:2601 +#: js/messages.php:55 libraries/server_privileges.lib.php:1380 +#: libraries/server_privileges.lib.php:1565 +#: libraries/server_privileges.lib.php:2441 +#: libraries/server_privileges.lib.php:2741 msgid "Add user" msgstr "新增使用者" @@ -1070,9 +1019,9 @@ msgstr "關閉" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:712 #: libraries/CommonFunctions.class.php:1290 +#: libraries/CommonFunctions.class.php:3602 #: libraries/CommonFunctions.class.php:3603 -#: libraries/CommonFunctions.class.php:3604 -#: libraries/DisplayResults.class.php:3106 libraries/Index.class.php:491 +#: libraries/DisplayResults.class.php:3113 libraries/Index.class.php:491 #: libraries/config/messages.inc.php:490 #: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 msgid "Edit" @@ -1336,12 +1285,13 @@ msgstr "對齊網格" msgid "Please add at least one variable to the series" msgstr "請至少增加一個變數" -#: js/messages.php:139 libraries/DisplayResults.class.php:1267 +#: js/messages.php:139 libraries/DisplayResults.class.php:1272 #: libraries/TableSearch.class.php:858 libraries/TableSearch.class.php:1002 #: libraries/display_export.lib.php:333 -#: libraries/plugins/export/ExportSql.class.php:1516 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:2036 #: libraries/tbl_properties.inc.php:652 pmd_general.php:539 -#: server_privileges.php:2242 server_status.php:1321 server_status.php:1778 +#: server_status.php:1321 server_status.php:1778 msgid "None" msgstr "無" @@ -1531,10 +1481,10 @@ msgid "Explain output" msgstr "SQL說明 " #: js/messages.php:186 js/messages.php:516 -#: libraries/plugins/export/ExportHtmlword.class.php:477 -#: libraries/plugins/export/ExportOdt.class.php:553 -#: libraries/plugins/export/ExportTexytext.class.php:425 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1053 +#: libraries/plugins/export/ExportHtmlword.class.php:484 +#: libraries/plugins/export/ExportOdt.class.php:558 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1292 sql.php:1044 msgid "Time" msgstr "時間" @@ -1869,7 +1819,7 @@ msgstr "顯示查詢框" msgid "No rows selected" msgstr "沒有選中任何行" -#: js/messages.php:286 libraries/DisplayResults.class.php:4850 +#: js/messages.php:286 libraries/DisplayResults.class.php:4861 #: querywindow.php:84 tbl_structure.php:148 tbl_structure.php:577 msgid "Change" msgstr "修改" @@ -1880,8 +1830,8 @@ msgstr "修改" msgid "Query execution time" msgstr "最長執行時間" -#: js/messages.php:288 libraries/DisplayResults.class.php:702 -#: libraries/DisplayResults.class.php:710 +#: js/messages.php:288 libraries/DisplayResults.class.php:706 +#: libraries/DisplayResults.class.php:714 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效行數" @@ -1960,7 +1910,7 @@ msgstr "資料指標大小" msgid "Ignore" msgstr "忽略" -#: js/messages.php:319 libraries/DisplayResults.class.php:3109 +#: js/messages.php:319 libraries/DisplayResults.class.php:3116 msgid "Copy" msgstr "複製" @@ -2452,14 +2402,14 @@ msgid "en" msgstr "zh" #: libraries/CommonFunctions.class.php:674 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:154 +#: libraries/core.lib.php:217 libraries/import.lib.php:169 #: libraries/insert_edit.lib.php:1202 tbl_operations.php:232 #: tbl_relation.php:292 view_operations.php:55 msgid "Error" msgstr "錯誤" #: libraries/CommonFunctions.class.php:687 server_status.php:613 -#: server_status.php:1295 sql.php:981 +#: server_status.php:1295 sql.php:972 msgid "SQL query" msgstr "SQL 查詢" @@ -2470,7 +2420,7 @@ msgstr "SQL 查詢" #: libraries/rte/rte_routines.lib.php:295 #: libraries/rte/rte_routines.lib.php:305 #: libraries/rte/rte_routines.lib.php:322 -#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1365 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2499,6 +2449,10 @@ msgstr "無 PHP 程式碼" msgid "Create PHP Code" msgstr "建立 PHP 程式碼" +#: libraries/CommonFunctions.class.php:1318 libraries/DBQbe.class.php:1271 +msgid "Submit Query" +msgstr "送出查詢" + #: libraries/CommonFunctions.class.php:1332 #: libraries/config/messages.inc.php:492 server_status.php:813 #: server_status.php:835 server_status.php:855 @@ -2523,7 +2477,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "行間" -#: libraries/CommonFunctions.class.php:1480 sql.php:1048 +#: libraries/CommonFunctions.class.php:1480 sql.php:1039 msgid "Profiling" msgstr "概要" @@ -2552,7 +2506,7 @@ msgstr "一般" #: libraries/CommonFunctions.class.php:2628 #: libraries/CommonFunctions.class.php:2632 -#: libraries/DisplayResults.class.php:756 +#: libraries/DisplayResults.class.php:760 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -2561,7 +2515,7 @@ msgstr "開始" #: libraries/CommonFunctions.class.php:2630 #: libraries/CommonFunctions.class.php:2633 -#: libraries/DisplayResults.class.php:759 server_binlog.php:140 +#: libraries/DisplayResults.class.php:763 server_binlog.php:140 #: server_binlog.php:142 #, fuzzy #| msgid "Previous" @@ -2572,7 +2526,7 @@ msgstr "上一個" # 這應該使用於選擇日期的小月曆 #: libraries/CommonFunctions.class.php:2665 #: libraries/CommonFunctions.class.php:2668 -#: libraries/DisplayResults.class.php:816 server_binlog.php:175 +#: libraries/DisplayResults.class.php:820 server_binlog.php:175 #: server_binlog.php:177 #, fuzzy #| msgid "Next" @@ -2582,7 +2536,7 @@ msgstr "下個月" #: libraries/CommonFunctions.class.php:2666 #: libraries/CommonFunctions.class.php:2669 -#: libraries/DisplayResults.class.php:844 +#: libraries/DisplayResults.class.php:848 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -2607,16 +2561,17 @@ msgstr "點擊選取" #: libraries/CommonFunctions.class.php:3385 #: libraries/CommonFunctions.class.php:3392 -#: libraries/CommonFunctions.class.php:3598 libraries/Menu.class.php:267 +#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:267 #: libraries/Menu.class.php:360 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportLatex.class.php:483 +#: libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportLatex.class.php:477 +#: libraries/server_privileges.lib.php:723 #: libraries/tbl_properties.inc.php:756 pmd_general.php:167 -#: server_privileges.php:724 server_replication.php:345 tbl_tracking.php:306 +#: server_replication.php:345 tbl_tracking.php:306 msgid "Structure" msgstr "結構" @@ -2624,21 +2579,20 @@ msgstr "結構" #: libraries/CommonFunctions.class.php:3393 libraries/Menu.class.php:271 #: libraries/Menu.class.php:365 libraries/Menu.class.php:461 #: libraries/config/messages.inc.php:218 -#: libraries/plugins/export/ExportSql.class.php:133 #: libraries/plugins/import/ImportSql.class.php:40 querywindow.php:61 msgid "SQL" msgstr "SQL" #: libraries/CommonFunctions.class.php:3388 -#: libraries/CommonFunctions.class.php:3596 -#: libraries/CommonFunctions.class.php:3597 libraries/Menu.class.php:280 +#: libraries/CommonFunctions.class.php:3595 +#: libraries/CommonFunctions.class.php:3596 libraries/Menu.class.php:280 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "插入" #: libraries/CommonFunctions.class.php:3389 -#: libraries/CommonFunctions.class.php:3592 -#: libraries/CommonFunctions.class.php:3593 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3591 +#: libraries/CommonFunctions.class.php:3592 libraries/DbSearch.class.php:366 #: libraries/Menu.class.php:261 tbl_structure.php:571 msgid "Browse" msgstr "瀏覽" @@ -2659,21 +2613,21 @@ msgstr "從計算機中上傳:" msgid "Select from the web server upload directory %s:" msgstr "選擇 Web 伺服器上傳目錄 %s:" -#: libraries/CommonFunctions.class.php:3564 libraries/insert_edit.lib.php:1203 +#: libraries/CommonFunctions.class.php:3563 libraries/insert_edit.lib.php:1203 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上傳目錄錯誤,無法使用" -#: libraries/CommonFunctions.class.php:3575 +#: libraries/CommonFunctions.class.php:3574 msgid "There are no files to upload" msgstr "沒有可上傳的檔案" +#: libraries/CommonFunctions.class.php:3606 #: libraries/CommonFunctions.class.php:3607 -#: libraries/CommonFunctions.class.php:3608 msgid "Execute" msgstr "執行" -#: libraries/CommonFunctions.class.php:4151 +#: libraries/CommonFunctions.class.php:4150 msgid "Print" msgstr "列印" @@ -2690,6 +2644,74 @@ msgstr "" msgid "Font size" msgstr "字體大小" +#: libraries/DBQbe.class.php:337 libraries/DisplayResults.class.php:1256 +#: libraries/DisplayResults.class.php:1994 +#: libraries/DisplayResults.class.php:2002 libraries/TableSearch.class.php:829 +#: libraries/db_structure.lib.php:117 libraries/db_structure.lib.php:126 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:291 +msgid "Ascending" +msgstr "遞增" + +#: libraries/DBQbe.class.php:339 libraries/DisplayResults.class.php:1268 +#: libraries/DisplayResults.class.php:1989 +#: libraries/DisplayResults.class.php:2007 libraries/TableSearch.class.php:830 +#: libraries/db_structure.lib.php:118 libraries/db_structure.lib.php:127 +#: server_databases.php:195 server_databases.php:212 tbl_operations.php:292 +msgid "Descending" +msgstr "遞減" + +#: libraries/DBQbe.class.php:391 libraries/DisplayResults.class.php:2062 +#: libraries/db_structure.lib.php:110 +msgid "Sort" +msgstr "排序" + +#: libraries/DBQbe.class.php:491 +msgid "Criteria" +msgstr "條件" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete criteria rows" +msgstr "新增/刪除標準行" + +#: libraries/DBQbe.class.php:547 +msgid "Add/Delete columns" +msgstr "新增/刪除欄位" + +#: libraries/DBQbe.class.php:574 libraries/DBQbe.class.php:605 +msgid "Update Query" +msgstr "更新查詢" + +#: libraries/DBQbe.class.php:589 +msgid "Use Tables" +msgstr "使用表" + +#: libraries/DBQbe.class.php:623 libraries/DBQbe.class.php:718 +#: libraries/TableSearch.class.php:797 libraries/insert_edit.lib.php:1206 +#: libraries/server_privileges.lib.php:320 tbl_indexes.php:313 +msgid "Or" +msgstr "或" + +#: libraries/DBQbe.class.php:626 libraries/DBQbe.class.php:703 +msgid "And" +msgstr "與" + +#: libraries/DBQbe.class.php:629 libraries/DBQbe.class.php:698 +msgid "Ins" +msgstr "插入" + +#: libraries/DBQbe.class.php:631 libraries/DBQbe.class.php:713 +msgid "Del" +msgstr "刪除" + +#: libraries/DBQbe.class.php:646 +msgid "Modify" +msgstr "修改" + +#: libraries/DBQbe.class.php:1258 +#, php-format +msgid "SQL query on database %s:" +msgstr "在資料庫 %s 執行 SQL 指令:" + #: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 msgid "at least one of the words" msgstr "至少一個字" @@ -2730,8 +2752,8 @@ msgstr[0] "%s 筆資料符合 - 於資料表 %s" msgid "Delete the matches for the %s table?" msgstr "刪除 %s 資料表中符合的資料?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3177 -#: libraries/DisplayResults.class.php:4826 +#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3184 +#: libraries/DisplayResults.class.php:4837 #: libraries/schema/User_Schema.class.php:216 #: libraries/schema/User_Schema.class.php:294 #: libraries/schema/User_Schema.class.php:329 @@ -2768,74 +2790,74 @@ msgstr "於以下表:" msgid "Inside column:" msgstr "於以下欄位:" -#: libraries/DisplayResults.class.php:679 +#: libraries/DisplayResults.class.php:683 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "保存文件夾" -#: libraries/DisplayResults.class.php:685 +#: libraries/DisplayResults.class.php:689 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "文字框列" -#: libraries/DisplayResults.class.php:885 +#: libraries/DisplayResults.class.php:889 #, fuzzy #| msgid "Textarea rows" msgid "Start row" msgstr "文字框行" -#: libraries/DisplayResults.class.php:889 +#: libraries/DisplayResults.class.php:893 #, fuzzy #| msgid "Number of rows:" msgid "Number of rows" msgstr "記錄數:" -#: libraries/DisplayResults.class.php:898 +#: libraries/DisplayResults.class.php:902 #, fuzzy #| msgid "More" msgid "Mode" msgstr "更多" -#: libraries/DisplayResults.class.php:900 +#: libraries/DisplayResults.class.php:904 msgid "horizontal" msgstr "水平" -#: libraries/DisplayResults.class.php:901 +#: libraries/DisplayResults.class.php:905 msgid "horizontal (rotated headers)" msgstr "水平 (旋轉標題)" -#: libraries/DisplayResults.class.php:902 +#: libraries/DisplayResults.class.php:906 msgid "vertical" msgstr "垂直" -#: libraries/DisplayResults.class.php:914 +#: libraries/DisplayResults.class.php:918 #, php-format msgid "Headers every %s rows" msgstr "" -#: libraries/DisplayResults.class.php:1209 +#: libraries/DisplayResults.class.php:1214 msgid "Sort by key" msgstr "主鍵排序" -#: libraries/DisplayResults.class.php:1556 libraries/TableSearch.class.php:771 -#: libraries/import.lib.php:1176 libraries/import.lib.php:1202 -#: libraries/plugins/export/ExportCodegen.class.php:83 -#: libraries/plugins/export/ExportCsv.class.php:91 -#: libraries/plugins/export/ExportExcel.class.php:35 -#: libraries/plugins/export/ExportHtmlword.class.php:44 -#: libraries/plugins/export/ExportJson.class.php:43 -#: libraries/plugins/export/ExportLatex.class.php:67 -#: libraries/plugins/export/ExportMediawiki.class.php:43 -#: libraries/plugins/export/ExportOds.class.php:47 -#: libraries/plugins/export/ExportOdt.class.php:55 -#: libraries/plugins/export/ExportPdf.class.php:74 -#: libraries/plugins/export/ExportPhparray.class.php:43 -#: libraries/plugins/export/ExportSql.class.php:137 -#: libraries/plugins/export/ExportTexytext.class.php:43 -#: libraries/plugins/export/ExportXml.class.php:72 -#: libraries/plugins/export/ExportYaml.class.php:44 +#: libraries/DisplayResults.class.php:1561 libraries/TableSearch.class.php:771 +#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/plugins/export/ExportCodegen.class.php:89 +#: libraries/plugins/export/ExportCsv.class.php:98 +#: libraries/plugins/export/ExportExcel.class.php:43 +#: libraries/plugins/export/ExportHtmlword.class.php:51 +#: libraries/plugins/export/ExportJson.class.php:48 +#: libraries/plugins/export/ExportLatex.class.php:74 +#: libraries/plugins/export/ExportMediawiki.class.php:51 +#: libraries/plugins/export/ExportOds.class.php:54 +#: libraries/plugins/export/ExportOdt.class.php:62 +#: libraries/plugins/export/ExportPdf.class.php:81 +#: libraries/plugins/export/ExportPhparray.class.php:48 +#: libraries/plugins/export/ExportSql.class.php:148 +#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportXml.class.php:79 +#: libraries/plugins/export/ExportYaml.class.php:49 #: libraries/plugins/import/ImportCsv.class.php:57 #: libraries/plugins/import/ImportDocsql.class.php:65 #: libraries/plugins/import/ImportLdi.class.php:65 @@ -2848,106 +2870,106 @@ msgstr "主鍵排序" msgid "Options" msgstr "選項" -#: libraries/DisplayResults.class.php:1562 -#: libraries/DisplayResults.class.php:1668 +#: libraries/DisplayResults.class.php:1567 +#: libraries/DisplayResults.class.php:1673 msgid "Partial texts" msgstr "部分內容" -#: libraries/DisplayResults.class.php:1563 -#: libraries/DisplayResults.class.php:1672 +#: libraries/DisplayResults.class.php:1568 +#: libraries/DisplayResults.class.php:1677 msgid "Full texts" msgstr "完整內容" -#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1582 msgid "Relational key" msgstr "關聯鍵" -#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1583 msgid "Relational display column" msgstr "關聯顯示字段" -#: libraries/DisplayResults.class.php:1590 +#: libraries/DisplayResults.class.php:1595 msgid "Show binary contents" msgstr "顯示二進制內容" -#: libraries/DisplayResults.class.php:1595 +#: libraries/DisplayResults.class.php:1600 msgid "Show BLOB contents" msgstr "顯示 BLOB 內容" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1605 #: libraries/config/messages.inc.php:61 msgid "Show binary contents as HEX" msgstr "以十六進制顯示二進制內容" -#: libraries/DisplayResults.class.php:1611 +#: libraries/DisplayResults.class.php:1616 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "瀏覽器轉換" -#: libraries/DisplayResults.class.php:1620 +#: libraries/DisplayResults.class.php:1625 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1626 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3150 -#: libraries/DisplayResults.class.php:3166 +#: libraries/DisplayResults.class.php:3157 +#: libraries/DisplayResults.class.php:3173 msgid "The row has been deleted" msgstr "已刪除該行" -#: libraries/DisplayResults.class.php:3204 -#: libraries/DisplayResults.class.php:4826 server_status.php:1317 +#: libraries/DisplayResults.class.php:3211 +#: libraries/DisplayResults.class.php:4837 server_status.php:1317 msgid "Kill" msgstr "中止" -#: libraries/DisplayResults.class.php:4279 libraries/db_structure.lib.php:44 +#: libraries/DisplayResults.class.php:4287 libraries/db_structure.lib.php:44 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" "可能接近。參見 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/DisplayResults.class.php:4672 +#: libraries/DisplayResults.class.php:4683 msgid "in query" msgstr "查詢中" -#: libraries/DisplayResults.class.php:4722 +#: libraries/DisplayResults.class.php:4733 msgid "Showing rows" msgstr "顯示行" -#: libraries/DisplayResults.class.php:4738 +#: libraries/DisplayResults.class.php:4749 msgid "total" msgstr "總計" -#: libraries/DisplayResults.class.php:4749 sql.php:837 +#: libraries/DisplayResults.class.php:4760 sql.php:813 #, php-format msgid "Query took %01.4f sec" msgstr "查詢花費 %01.4f 秒" -#: libraries/DisplayResults.class.php:4960 +#: libraries/DisplayResults.class.php:4971 msgid "Query results operations" msgstr "查詢結果選項" -#: libraries/DisplayResults.class.php:5002 +#: libraries/DisplayResults.class.php:5013 msgid "Print view (with full texts)" msgstr "列印預覽 (全文顯示)" -#: libraries/DisplayResults.class.php:5073 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:5084 tbl_chart.php:80 msgid "Display chart" msgstr "顯示圖表" -#: libraries/DisplayResults.class.php:5098 +#: libraries/DisplayResults.class.php:5109 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5131 view_create.php:122 +#: libraries/DisplayResults.class.php:5142 view_create.php:122 msgid "Create view" msgstr "新建視圖" -#: libraries/DisplayResults.class.php:5324 +#: libraries/DisplayResults.class.php:5335 msgid "Link not found" msgstr "找不到連結" @@ -3069,8 +3091,8 @@ msgid "" msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:457 -#: libraries/config/messages.inc.php:181 server_databases.php:133 -#: server_privileges.php:2026 +#: libraries/config/messages.inc.php:181 +#: libraries/server_privileges.lib.php:2769 server_databases.php:133 msgid "Databases" msgstr "資料庫" @@ -3086,11 +3108,11 @@ msgid "Tracking" msgstr "追蹤" #: libraries/Menu.class.php:312 libraries/Menu.class.php:414 -#: libraries/plugins/export/ExportHtmlword.class.php:556 -#: libraries/plugins/export/ExportOdt.class.php:646 -#: libraries/plugins/export/ExportSql.class.php:1442 -#: libraries/plugins/export/ExportTexytext.class.php:496 -#: libraries/plugins/export/ExportXml.class.php:116 +#: libraries/plugins/export/ExportHtmlword.class.php:563 +#: libraries/plugins/export/ExportOdt.class.php:651 +#: libraries/plugins/export/ExportSql.class.php:1405 +#: libraries/plugins/export/ExportTexytext.class.php:505 +#: libraries/plugins/export/ExportXml.class.php:119 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "觸發器" @@ -3108,9 +3130,9 @@ msgstr "資料庫是空的!" msgid "Query" msgstr "查詢" -#: libraries/Menu.class.php:394 server_privileges.php:183 -#: server_privileges.php:1702 server_privileges.php:2090 -#: server_privileges.php:2442 +#: libraries/Menu.class.php:394 libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:2129 +#: libraries/server_privileges.lib.php:2702 server_privileges.php:147 msgid "Privileges" msgstr "權限" @@ -3119,7 +3141,7 @@ msgid "Routines" msgstr "一般" #: libraries/Menu.class.php:407 -#: libraries/plugins/export/ExportSql.class.php:893 +#: libraries/plugins/export/ExportSql.class.php:856 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "事件" @@ -3216,55 +3238,55 @@ msgstr "%s 在此 MySQL 伺服器上被禁止了" msgid "This MySQL server does not support the %s storage engine." msgstr "此 MySQL 伺服器不支援 %s 儲存引擎" -#: libraries/Table.class.php:341 +#: libraries/Table.class.php:346 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "顯示從伺服器狀態" -#: libraries/Table.class.php:752 +#: libraries/Table.class.php:757 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "來源資料庫" -#: libraries/Table.class.php:760 +#: libraries/Table.class.php:765 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "未找到主題 %s !" -#: libraries/Table.class.php:1187 +#: libraries/Table.class.php:1192 msgid "Invalid database" msgstr "無效的資料庫" -#: libraries/Table.class.php:1201 tbl_get_field.php:31 +#: libraries/Table.class.php:1206 tbl_get_field.php:31 msgid "Invalid table name" msgstr "無效的資料資料表名稱" -#: libraries/Table.class.php:1233 +#: libraries/Table.class.php:1238 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤" -#: libraries/Table.class.php:1252 +#: libraries/Table.class.php:1257 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "已將資料表 %s 改名爲 %s" -#: libraries/Table.class.php:1396 +#: libraries/Table.class.php:1401 msgid "Could not save table UI preferences" msgstr "無法儲存表格介面使用者喜好設定" -#: libraries/Table.class.php:1420 +#: libraries/Table.class.php:1425 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1558 +#: libraries/Table.class.php:1563 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3273,7 +3295,7 @@ msgid "" msgstr "" #: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:231 -#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1458 +#: libraries/insert_edit.lib.php:237 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "函數" @@ -3285,7 +3307,7 @@ msgstr "運算符" #: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1221 #: libraries/insert_edit.lib.php:1596 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1460 pmd_general.php:505 +#: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:505 #: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 #: server_status.php:1540 msgid "Value" @@ -3330,7 +3352,7 @@ msgid "Maximum rows to plot" msgstr "顯示的最多行數" #: libraries/TableSearch.class.php:905 libraries/TableSearch.class.php:1189 -#: sql.php:146 tbl_change.php:213 +#: sql.php:150 tbl_change.php:213 msgid "Browse foreign values" msgstr "瀏覽不相關的值" @@ -3695,7 +3717,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:110 server_status.php:626 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:626 msgid "Tables" msgstr "資料表" @@ -3706,9 +3728,10 @@ msgstr "資料表" #: libraries/config/user_preferences.forms.php:241 #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 -#: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:1516 server_privileges.php:724 -#: server_replication.php:346 tbl_printview.php:297 tbl_structure.php:836 +#: libraries/plugins/export/ExportLatex.class.php:301 +#: libraries/plugins/export/ExportSql.class.php:1479 +#: libraries/server_privileges.lib.php:722 server_replication.php:346 +#: tbl_printview.php:297 tbl_structure.php:836 msgid "Data" msgstr "資料" @@ -3828,32 +3851,32 @@ msgid "Disabled" msgstr "已關閉" #: libraries/config.values.php:129 -#: libraries/plugins/export/ExportHtmlword.class.php:58 -#: libraries/plugins/export/ExportLatex.class.php:95 -#: libraries/plugins/export/ExportMediawiki.class.php:64 -#: libraries/plugins/export/ExportOdt.class.php:68 -#: libraries/plugins/export/ExportSql.class.php:259 -#: libraries/plugins/export/ExportTexytext.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:67 +#: libraries/plugins/export/ExportLatex.class.php:101 +#: libraries/plugins/export/ExportMediawiki.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:78 +#: libraries/plugins/export/ExportSql.class.php:261 +#: libraries/plugins/export/ExportTexytext.class.php:66 msgid "structure" msgstr "結構" #: libraries/config.values.php:130 -#: libraries/plugins/export/ExportHtmlword.class.php:59 -#: libraries/plugins/export/ExportLatex.class.php:96 -#: libraries/plugins/export/ExportMediawiki.class.php:65 -#: libraries/plugins/export/ExportOdt.class.php:69 -#: libraries/plugins/export/ExportSql.class.php:260 -#: libraries/plugins/export/ExportTexytext.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:68 +#: libraries/plugins/export/ExportLatex.class.php:102 +#: libraries/plugins/export/ExportMediawiki.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:79 +#: libraries/plugins/export/ExportSql.class.php:262 +#: libraries/plugins/export/ExportTexytext.class.php:67 msgid "data" msgstr "資料" #: libraries/config.values.php:131 -#: libraries/plugins/export/ExportHtmlword.class.php:60 -#: libraries/plugins/export/ExportLatex.class.php:97 -#: libraries/plugins/export/ExportMediawiki.class.php:66 -#: libraries/plugins/export/ExportOdt.class.php:70 -#: libraries/plugins/export/ExportSql.class.php:261 -#: libraries/plugins/export/ExportTexytext.class.php:59 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:80 +#: libraries/plugins/export/ExportSql.class.php:263 +#: libraries/plugins/export/ExportTexytext.class.php:68 msgid "structure and data" msgstr "結構和資料" @@ -4267,13 +4290,13 @@ msgstr "壓縮" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 #: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:148 #: libraries/config/messages.inc.php:150 -#: libraries/plugins/export/ExportCsv.class.php:134 -#: libraries/plugins/export/ExportExcel.class.php:58 -#: libraries/plugins/export/ExportHtmlword.class.php:82 -#: libraries/plugins/export/ExportLatex.class.php:164 -#: libraries/plugins/export/ExportOds.class.php:63 -#: libraries/plugins/export/ExportOdt.class.php:119 -#: libraries/plugins/export/ExportTexytext.class.php:79 +#: libraries/plugins/export/ExportCsv.class.php:137 +#: libraries/plugins/export/ExportExcel.class.php:66 +#: libraries/plugins/export/ExportHtmlword.class.php:87 +#: libraries/plugins/export/ExportLatex.class.php:159 +#: libraries/plugins/export/ExportOds.class.php:72 +#: libraries/plugins/export/ExportOdt.class.php:122 +#: libraries/plugins/export/ExportTexytext.class.php:86 msgid "Put columns names in the first row" msgstr "首行儲存欄位名稱" @@ -4296,7 +4319,6 @@ msgstr "跳脫字元使用:" #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:115 #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:149 #: libraries/config/messages.inc.php:151 -#: libraries/plugins/export/ExportTexytext.class.php:74 msgid "Replace NULL by" msgstr "將 NULL 替換爲" @@ -4336,23 +4358,22 @@ msgstr "資料表名稱樣式" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:141 #: libraries/config/messages.inc.php:147 -#: libraries/plugins/export/ExportHtmlword.class.php:52 -#: libraries/plugins/export/ExportLatex.class.php:89 -#: libraries/plugins/export/ExportMediawiki.class.php:57 -#: libraries/plugins/export/ExportOdt.class.php:61 -#: libraries/plugins/export/ExportSql.class.php:252 -#: libraries/plugins/export/ExportTexytext.class.php:50 +#: libraries/plugins/export/ExportHtmlword.class.php:62 +#: libraries/plugins/export/ExportLatex.class.php:96 +#: libraries/plugins/export/ExportMediawiki.class.php:62 +#: libraries/plugins/export/ExportOdt.class.php:73 +#: libraries/plugins/export/ExportTexytext.class.php:61 msgid "Dump table" msgstr "轉存資料表" #: libraries/config/messages.inc.php:96 -#: libraries/plugins/export/ExportLatex.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:88 msgid "Include table caption" msgstr "包含表的標題" #: libraries/config/messages.inc.php:99 libraries/config/messages.inc.php:105 -#: libraries/plugins/export/ExportLatex.class.php:115 -#: libraries/plugins/export/ExportLatex.class.php:169 +#: libraries/plugins/export/ExportLatex.class.php:118 +#: libraries/plugins/export/ExportLatex.class.php:163 msgid "Table caption" msgstr "表的標題" @@ -4361,14 +4382,14 @@ msgid "Continued table caption" msgstr "換頁時延續資料表標題" #: libraries/config/messages.inc.php:101 libraries/config/messages.inc.php:107 -#: libraries/plugins/export/ExportLatex.class.php:127 -#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:128 +#: libraries/plugins/export/ExportLatex.class.php:173 msgid "Label key" msgstr "關鍵標籤" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 -#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportOdt.class.php:476 #: libraries/tbl_properties.inc.php:142 msgid "MIME type" msgstr "MIME 類型" @@ -4405,7 +4426,7 @@ msgid "SQL compatibility mode" msgstr "SQL 相容模式" #: libraries/config/messages.inc.php:126 -#: libraries/plugins/export/ExportSql.class.php:332 +#: libraries/plugins/export/ExportSql.class.php:323 msgid "CREATE TABLE options:" msgstr "CREATE TABLE 選項:" @@ -4418,7 +4439,7 @@ msgid "Use delayed inserts" msgstr "使用延遲插入" #: libraries/config/messages.inc.php:129 -#: libraries/plugins/export/ExportSql.class.php:205 +#: libraries/plugins/export/ExportSql.class.php:212 msgid "Disable foreign key checks" msgstr "關閉外鍵 (Foreign Key) 檢查" @@ -4435,7 +4456,7 @@ msgid "Syntax to use when inserting data" msgstr "在插入資料時使用的語法" #: libraries/config/messages.inc.php:137 -#: libraries/plugins/export/ExportSql.class.php:470 +#: libraries/plugins/export/ExportSql.class.php:433 msgid "Maximal length of created query" msgstr "建立查詢指令最大長度" @@ -4444,7 +4465,7 @@ msgid "Export type" msgstr "輸出類型" #: libraries/config/messages.inc.php:143 -#: libraries/plugins/export/ExportSql.class.php:193 +#: libraries/plugins/export/ExportSql.class.php:201 msgid "Enclose export in a transaction" msgstr "使用封裝輸出方式" @@ -4499,7 +4520,6 @@ msgstr "自定預設選項" #: libraries/config/setup.forms.php:315 #: libraries/config/user_preferences.forms.php:145 #: libraries/config/user_preferences.forms.php:216 -#: libraries/plugins/export/ExportCsv.class.php:87 #: libraries/plugins/import/ImportCsv.class.php:54 msgid "CSV" msgstr "CSV" @@ -4558,7 +4578,6 @@ msgid "Set import and export directories and compression options" msgstr "設定匯入和匯出資料夾以及壓縮選項" #: libraries/config/messages.inc.php:179 -#: libraries/plugins/export/ExportLatex.class.php:63 msgid "LaTeX" msgstr "LaTeX" @@ -4782,7 +4801,6 @@ msgid "Customize text input fields" msgstr "自定文字輸入框" #: libraries/config/messages.inc.php:236 -#: libraries/plugins/export/ExportTexytext.class.php:39 msgid "Texy! text" msgstr "Texy! 文字" @@ -5918,9 +5936,11 @@ msgstr "需要啓用 SQL 檢驗器" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 server_privileges.php:994 -#: server_privileges.php:998 server_privileges.php:1009 -#: server_privileges.php:1876 server_synchronize.php:1447 +#: libraries/replication_gui.lib.php:367 +#: libraries/server_privileges.lib.php:1145 +#: libraries/server_privileges.lib.php:1149 +#: libraries/server_privileges.lib.php:1173 +#: libraries/server_privileges.lib.php:2293 server_synchronize.php:1447 msgid "Password" msgstr "密碼" @@ -6091,7 +6111,6 @@ msgstr "CSV 使用 LOAD DATA" #: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:161 #: libraries/config/user_preferences.forms.php:253 -#: libraries/plugins/export/ExportOds.class.php:42 #: libraries/plugins/import/ImportOds.class.php:49 msgid "Open Document Spreadsheet" msgstr "OpenOffice 表格" @@ -6113,19 +6132,16 @@ msgstr "資料庫匯出選項" #: libraries/config/setup.forms.php:324 #: libraries/config/user_preferences.forms.php:225 -#: libraries/plugins/export/ExportExcel.class.php:31 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" #: libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:248 -#: libraries/plugins/export/ExportHtmlword.class.php:39 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:257 -#: libraries/plugins/export/ExportOdt.class.php:50 msgid "Open Document Text" msgstr "OpenOffice 檔案" @@ -6183,7 +6199,7 @@ msgstr "缺少 %s 外掛。請檢查 PHP 設定" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1966 +#: libraries/database_interface.lib.php:1989 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6191,21 +6207,21 @@ msgid "" "configured)." msgstr "(或者本地 MySQL 伺服器的連線埠沒有正確設定)" -#: libraries/database_interface.lib.php:1969 +#: libraries/database_interface.lib.php:1992 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "伺服器沒有響應" -#: libraries/database_interface.lib.php:1974 +#: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1983 +#: libraries/database_interface.lib.php:2006 msgid "Details..." msgstr "詳細..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 +#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用設定檔案中定義的控制使用者連線失敗" @@ -6216,13 +6232,15 @@ msgid "Change password" msgstr "修改密碼" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 server_privileges.php:1005 +#: libraries/replication_gui.lib.php:363 +#: libraries/server_privileges.lib.php:1165 msgid "No Password" msgstr "無密碼" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 -#: server_privileges.php:1013 server_privileges.php:1016 +#: libraries/server_privileges.lib.php:1179 +#: libraries/server_privileges.lib.php:1183 msgid "Re-type" msgstr "重新輸入" @@ -6245,8 +6263,9 @@ msgstr "建立新資料庫" msgid "Create" msgstr "建立" -#: libraries/display_create_database.lib.php:43 server_privileges.php:185 -#: server_privileges.php:1761 server_replication.php:36 +#: libraries/display_create_database.lib.php:43 +#: libraries/server_privileges.lib.php:2834 server_privileges.php:149 +#: server_replication.php:36 msgid "No Privileges" msgstr "無權限" @@ -6256,12 +6275,12 @@ msgid "Create table" msgstr "建立資料表" #: libraries/display_create_table.lib.php:51 -#: libraries/plugins/export/ExportHtmlword.class.php:476 -#: libraries/plugins/export/ExportOdt.class.php:550 -#: libraries/plugins/export/ExportTexytext.class.php:424 +#: libraries/plugins/export/ExportHtmlword.class.php:483 +#: libraries/plugins/export/ExportOdt.class.php:555 +#: libraries/plugins/export/ExportTexytext.class.php:433 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:919 -#: libraries/rte/rte_routines.lib.php:1455 libraries/tbl_properties.inc.php:86 +#: libraries/rte/rte_routines.lib.php:1485 libraries/tbl_properties.inc.php:86 #: setup/frames/index.inc.php:135 tbl_structure.php:203 msgid "Name" msgstr "名字" @@ -6397,7 +6416,7 @@ msgid "View output as text" msgstr "直接顯示為文本" #: libraries/display_export.lib.php:353 libraries/display_import.lib.php:311 -#: libraries/plugins/export/ExportCodegen.class.php:98 +#: libraries/plugins/export/ExportCodegen.class.php:106 msgid "Format:" msgstr "格式:" @@ -6876,58 +6895,58 @@ msgstr "PrimeBase XT 博客 —— Paul McCullagh 著" msgid "No data found for GIS visualization." msgstr "未找到圖表所需資料" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1325 sql.php:833 tbl_get_field.php:40 +#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:809 tbl_get_field.php:40 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查詢結果爲空 (即零行)" -#: libraries/import.lib.php:1171 +#: libraries/import.lib.php:1192 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列結構被建立或修改。您可以:" -#: libraries/import.lib.php:1172 +#: libraries/import.lib.php:1193 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "點選它的名字查看內容" -#: libraries/import.lib.php:1173 +#: libraries/import.lib.php:1194 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "點選相應的“選項”連結修改它的設定" -#: libraries/import.lib.php:1174 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "點選“結構”連結編輯它的結構" -#: libraries/import.lib.php:1178 +#: libraries/import.lib.php:1199 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "轉到資料庫" -#: libraries/import.lib.php:1181 libraries/import.lib.php:1209 +#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "在 %s 中丟失資料" -#: libraries/import.lib.php:1204 +#: libraries/import.lib.php:1225 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "轉到資料表" -#: libraries/import.lib.php:1207 +#: libraries/import.lib.php:1228 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "僅結構" -#: libraries/import.lib.php:1215 +#: libraries/import.lib.php:1236 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" @@ -6997,11 +7016,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" -#: libraries/insert_edit.lib.php:1935 sql.php:829 +#: libraries/insert_edit.lib.php:1935 sql.php:805 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: libraries/insert_edit.lib.php:1960 sql.php:809 +#: libraries/insert_edit.lib.php:1960 sql.php:785 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -7251,7 +7270,7 @@ msgstr "phpMyAdmin 檔案" msgid "Reload navigation frame" msgstr "重新整理導覽框架" -#: libraries/plugin_interface.lib.php:350 +#: libraries/plugin_interface.lib.php:466 msgid "This format has no options" msgstr "該格式沒有選項" @@ -7361,70 +7380,70 @@ msgstr "沒有可用的密鑰插入" msgid "Authenticating..." msgstr "正在認證..." -#: libraries/plugins/export/ExportCsv.class.php:102 +#: libraries/plugins/export/ExportCsv.class.php:112 #: libraries/plugins/import/ImportCsv.class.php:78 msgid "Columns separated with:" msgstr "欄位分隔符號:" -#: libraries/plugins/export/ExportCsv.class.php:107 +#: libraries/plugins/export/ExportCsv.class.php:116 #: libraries/plugins/import/ImportCsv.class.php:85 msgid "Columns enclosed with:" msgstr "內容分隔符號:" -#: libraries/plugins/export/ExportCsv.class.php:112 +#: libraries/plugins/export/ExportCsv.class.php:120 #: libraries/plugins/import/ImportCsv.class.php:92 msgid "Columns escaped with:" msgstr "內容跳脫符號:" -#: libraries/plugins/export/ExportCsv.class.php:117 +#: libraries/plugins/export/ExportCsv.class.php:124 #: libraries/plugins/import/ImportCsv.class.php:99 msgid "Lines terminated with:" msgstr "換行符號:" -#: libraries/plugins/export/ExportCsv.class.php:122 -#: libraries/plugins/export/ExportExcel.class.php:46 -#: libraries/plugins/export/ExportHtmlword.class.php:77 -#: libraries/plugins/export/ExportLatex.class.php:187 -#: libraries/plugins/export/ExportOds.class.php:58 -#: libraries/plugins/export/ExportOdt.class.php:124 +#: libraries/plugins/export/ExportCsv.class.php:128 +#: libraries/plugins/export/ExportExcel.class.php:57 +#: libraries/plugins/export/ExportHtmlword.class.php:83 +#: libraries/plugins/export/ExportLatex.class.php:178 +#: libraries/plugins/export/ExportOds.class.php:68 +#: libraries/plugins/export/ExportOdt.class.php:126 +#: libraries/plugins/export/ExportTexytext.class.php:90 msgid "Replace NULL with:" msgstr "將 NULL 替換爲:" -#: libraries/plugins/export/ExportCsv.class.php:128 -#: libraries/plugins/export/ExportExcel.class.php:52 +#: libraries/plugins/export/ExportCsv.class.php:133 +#: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" msgstr "刪除欄位中的回車換行符號" -#: libraries/plugins/export/ExportExcel.class.php:67 +#: libraries/plugins/export/ExportExcel.class.php:75 msgid "Excel edition:" msgstr "Excel 版本" -#: libraries/plugins/export/ExportHtmlword.class.php:71 -#: libraries/plugins/export/ExportLatex.class.php:158 -#: libraries/plugins/export/ExportOdt.class.php:113 -#: libraries/plugins/export/ExportSql.class.php:375 -#: libraries/plugins/export/ExportTexytext.class.php:68 -#: libraries/plugins/export/ExportXml.class.php:132 +#: libraries/plugins/export/ExportHtmlword.class.php:78 +#: libraries/plugins/export/ExportLatex.class.php:154 +#: libraries/plugins/export/ExportOdt.class.php:117 +#: libraries/plugins/export/ExportTexytext.class.php:81 +#: libraries/plugins/export/ExportXml.class.php:131 msgid "Data dump options" msgstr "資料匯出選項" -#: libraries/plugins/export/ExportHtmlword.class.php:195 -#: libraries/plugins/export/ExportOdt.class.php:248 -#: libraries/plugins/export/ExportSql.class.php:1657 -#: libraries/plugins/export/ExportTexytext.class.php:174 +#: libraries/plugins/export/ExportHtmlword.class.php:202 +#: libraries/plugins/export/ExportOdt.class.php:253 +#: libraries/plugins/export/ExportSql.class.php:1620 +#: libraries/plugins/export/ExportTexytext.class.php:183 msgid "Dumping data for table" msgstr "轉存資料表中的資料" -#: libraries/plugins/export/ExportHtmlword.class.php:478 -#: libraries/plugins/export/ExportOdt.class.php:556 -#: libraries/plugins/export/ExportTexytext.class.php:426 +#: libraries/plugins/export/ExportHtmlword.class.php:485 +#: libraries/plugins/export/ExportOdt.class.php:561 +#: libraries/plugins/export/ExportTexytext.class.php:435 #: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "事件" -#: libraries/plugins/export/ExportHtmlword.class.php:479 -#: libraries/plugins/export/ExportOdt.class.php:559 -#: libraries/plugins/export/ExportTexytext.class.php:427 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:436 #: libraries/rte/rte_events.lib.php:473 libraries/rte/rte_routines.lib.php:983 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy @@ -7432,24 +7451,24 @@ msgstr "事件" msgid "Definition" msgstr "說明" -#: libraries/plugins/export/ExportHtmlword.class.php:544 -#: libraries/plugins/export/ExportOdt.class.php:632 -#: libraries/plugins/export/ExportSql.class.php:1429 -#: libraries/plugins/export/ExportTexytext.class.php:486 +#: libraries/plugins/export/ExportHtmlword.class.php:551 +#: libraries/plugins/export/ExportOdt.class.php:637 +#: libraries/plugins/export/ExportSql.class.php:1392 +#: libraries/plugins/export/ExportTexytext.class.php:495 msgid "Table structure for table" msgstr "表的結構" -#: libraries/plugins/export/ExportHtmlword.class.php:563 -#: libraries/plugins/export/ExportOdt.class.php:656 -#: libraries/plugins/export/ExportSql.class.php:1457 -#: libraries/plugins/export/ExportTexytext.class.php:501 +#: libraries/plugins/export/ExportHtmlword.class.php:570 +#: libraries/plugins/export/ExportOdt.class.php:661 +#: libraries/plugins/export/ExportSql.class.php:1420 +#: libraries/plugins/export/ExportTexytext.class.php:510 msgid "Structure for view" msgstr "view結構" -#: libraries/plugins/export/ExportHtmlword.class.php:572 -#: libraries/plugins/export/ExportOdt.class.php:668 -#: libraries/plugins/export/ExportSql.class.php:1474 -#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportHtmlword.class.php:579 +#: libraries/plugins/export/ExportOdt.class.php:673 +#: libraries/plugins/export/ExportSql.class.php:1437 +#: libraries/plugins/export/ExportTexytext.class.php:517 msgid "Stand-in structure for view" msgstr "替換 view以便查看" @@ -7465,130 +7484,119 @@ msgstr "(持續的)" msgid "Structure of table @TABLE@" msgstr "@TABLE@ 表的結構" -#: libraries/plugins/export/ExportLatex.class.php:109 -#: libraries/plugins/export/ExportOdt.class.php:82 -#: libraries/plugins/export/ExportSql.class.php:277 +#: libraries/plugins/export/ExportLatex.class.php:113 +#: libraries/plugins/export/ExportOdt.class.php:91 +#: libraries/plugins/export/ExportSql.class.php:276 msgid "Object creation options" msgstr "物件建立選項" -#: libraries/plugins/export/ExportLatex.class.php:121 -#: libraries/plugins/export/ExportLatex.class.php:175 +#: libraries/plugins/export/ExportLatex.class.php:123 +#: libraries/plugins/export/ExportLatex.class.php:168 msgid "Table caption (continued)" msgstr "表的副標題" #: libraries/plugins/export/ExportLatex.class.php:134 -#: libraries/plugins/export/ExportOdt.class.php:89 -#: libraries/plugins/export/ExportSql.class.php:174 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:187 msgid "Display foreign key relationships" msgstr "顯示外部鍵的關聯" -#: libraries/plugins/export/ExportLatex.class.php:140 -#: libraries/plugins/export/ExportOdt.class.php:95 +#: libraries/plugins/export/ExportLatex.class.php:139 +#: libraries/plugins/export/ExportOdt.class.php:102 msgid "Display comments" msgstr "顯示註釋" -#: libraries/plugins/export/ExportLatex.class.php:146 -#: libraries/plugins/export/ExportOdt.class.php:101 -#: libraries/plugins/export/ExportSql.class.php:181 +#: libraries/plugins/export/ExportLatex.class.php:144 +#: libraries/plugins/export/ExportOdt.class.php:107 +#: libraries/plugins/export/ExportSql.class.php:193 msgid "Display MIME types" msgstr "顯示 MIME 類型" -#: libraries/plugins/export/ExportLatex.class.php:223 -#: libraries/plugins/export/ExportSql.class.php:692 +#: libraries/plugins/export/ExportLatex.class.php:217 +#: libraries/plugins/export/ExportSql.class.php:655 #: libraries/plugins/export/ExportXml.class.php:193 #: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 #: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 server_privileges.php:927 -#: server_privileges.php:930 server_privileges.php:986 -#: server_privileges.php:1875 server_privileges.php:2440 -#: server_status.php:1289 sql.php:977 +#: libraries/replication_gui.lib.php:345 +#: libraries/server_privileges.lib.php:1046 +#: libraries/server_privileges.lib.php:1051 +#: libraries/server_privileges.lib.php:1136 +#: libraries/server_privileges.lib.php:1510 +#: libraries/server_privileges.lib.php:2292 server_status.php:1289 sql.php:968 msgid "Host" msgstr "主機" -#: libraries/plugins/export/ExportLatex.class.php:228 -#: libraries/plugins/export/ExportSql.class.php:699 -#: libraries/plugins/export/ExportXml.class.php:198 sql.php:979 +#: libraries/plugins/export/ExportLatex.class.php:222 +#: libraries/plugins/export/ExportSql.class.php:662 +#: libraries/plugins/export/ExportXml.class.php:198 sql.php:970 msgid "Generation Time" msgstr "產生日期" -#: libraries/plugins/export/ExportLatex.class.php:230 -#: libraries/plugins/export/ExportSql.class.php:703 +#: libraries/plugins/export/ExportLatex.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:666 #: libraries/plugins/export/ExportXml.class.php:200 msgid "Server version" msgstr "伺服器版本" -#: libraries/plugins/export/ExportLatex.class.php:231 -#: libraries/plugins/export/ExportSql.class.php:705 +#: libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:668 #: libraries/plugins/export/ExportXml.class.php:201 msgid "PHP Version" msgstr "PHP 版本" -#: libraries/plugins/export/ExportMediawiki.class.php:39 -#: libraries/plugins/import/ImportMediawiki.class.php:52 -msgid "MediaWiki Table" -msgstr "MediaWiki 表" - -#: libraries/plugins/export/ExportMediawiki.class.php:77 +#: libraries/plugins/export/ExportMediawiki.class.php:81 #, fuzzy #| msgid "Export contents" msgid "Export table names" msgstr "匯出內容" -#: libraries/plugins/export/ExportMediawiki.class.php:84 +#: libraries/plugins/export/ExportMediawiki.class.php:87 #, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "水平 (旋轉標題)" -#: libraries/plugins/export/ExportPdf.class.php:69 -msgid "PDF" -msgstr "PDF" - -#: libraries/plugins/export/ExportPdf.class.php:86 +#: libraries/plugins/export/ExportPdf.class.php:96 msgid "(Generates a report containing the data of a single table)" msgstr "(根據一個資料表的資料產生報告)" -#: libraries/plugins/export/ExportPdf.class.php:92 +#: libraries/plugins/export/ExportPdf.class.php:101 msgid "Report title:" msgstr "報告標題:" -#: libraries/plugins/export/ExportPhparray.class.php:39 -msgid "PHP array" -msgstr "PHP 陣列" - -#: libraries/plugins/export/ExportSql.class.php:152 +#: libraries/plugins/export/ExportSql.class.php:166 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "顯示註釋 (包括匯出時間、PHP 版本和伺服器版本等資訊)" -#: libraries/plugins/export/ExportSql.class.php:160 +#: libraries/plugins/export/ExportSql.class.php:174 msgid "Additional custom header comment (\\n splits lines):" msgstr "在檔案頭新增自訂註釋 (\\n 爲換行):" -#: libraries/plugins/export/ExportSql.class.php:166 +#: libraries/plugins/export/ExportSql.class.php:180 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "包含資料庫建立、最後更新和最後檢查的時間" -#: libraries/plugins/export/ExportSql.class.php:224 +#: libraries/plugins/export/ExportSql.class.php:231 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "最大程度相容資料庫系統或舊版本的 MySQL 伺服器:" -#: libraries/plugins/export/ExportSql.class.php:242 -#: libraries/plugins/export/ExportSql.class.php:310 -#: libraries/plugins/export/ExportSql.class.php:318 +#: libraries/plugins/export/ExportSql.class.php:249 +#: libraries/plugins/export/ExportSql.class.php:304 +#: libraries/plugins/export/ExportSql.class.php:311 #, php-format msgid "Add %s statement" msgstr "新增 %s 指令" -#: libraries/plugins/export/ExportSql.class.php:287 +#: libraries/plugins/export/ExportSql.class.php:283 msgid "Add statements:" msgstr "新增指令:" -#: libraries/plugins/export/ExportSql.class.php:359 +#: libraries/plugins/export/ExportSql.class.php:339 #, fuzzy #| msgid "" #| "lose table and field names with backquotes (Protects field and le " @@ -7600,32 +7608,39 @@ msgstr "" "給資料表名稱和欄位名稱加上反引號 (保護名稱中含有特殊字元或保留字的欄位和" "表)" -#: libraries/plugins/export/ExportSql.class.php:381 -#: libraries/plugins/export/ExportSql.class.php:1610 +#: libraries/plugins/export/ExportSql.class.php:354 +#, fuzzy +#| msgid "Object creation options" +msgid "Data creation options" +msgstr "物件建立選項" + +#: libraries/plugins/export/ExportSql.class.php:358 +#: libraries/plugins/export/ExportSql.class.php:1573 msgid "Truncate table before insert" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:388 +#: libraries/plugins/export/ExportSql.class.php:364 msgid "Instead of INSERT statements, use:" msgstr "代替 INSERT (插入) 指令,使用:" -#: libraries/plugins/export/ExportSql.class.php:396 +#: libraries/plugins/export/ExportSql.class.php:370 msgid "INSERT DELAYED statements" msgstr "INSERT DELAYED (延遲插入) 指令" -#: libraries/plugins/export/ExportSql.class.php:406 +#: libraries/plugins/export/ExportSql.class.php:379 +#: libraries/plugins/export/ExportSql.class.php:405 msgid "INSERT IGNORE statements" msgstr "INSERT IGNORE (忽略插入) 指令" -#: libraries/plugins/export/ExportSql.class.php:421 +#: libraries/plugins/export/ExportSql.class.php:390 msgid "Function to use when dumping data:" msgstr "匯出資料時所使用的函數:" -#: libraries/plugins/export/ExportSql.class.php:434 +#: libraries/plugins/export/ExportSql.class.php:401 msgid "Syntax to use when inserting data:" msgstr "插入資料時所使用的語法:" -#: libraries/plugins/export/ExportSql.class.php:442 +#: libraries/plugins/export/ExportSql.class.php:408 msgid "" "include column names in every INSERT statement
  " "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " @@ -7635,7 +7650,7 @@ msgstr "" "  如:INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:447 +#: libraries/plugins/export/ExportSql.class.php:413 msgid "" "insert multiple rows in every INSERT statement
  " "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " @@ -7644,7 +7659,7 @@ msgstr "" "在每個 INSERT(插入) 指令中插入多行
      " "如:INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:452 +#: libraries/plugins/export/ExportSql.class.php:418 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -7652,7 +7667,7 @@ msgstr "" "以上兼有
      如:INSERT INTO tbl_name (col_A," "col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" -#: libraries/plugins/export/ExportSql.class.php:457 +#: libraries/plugins/export/ExportSql.class.php:423 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" @@ -7660,13 +7675,13 @@ msgstr "" "以上均不
      如:INSERT INTO tbl_name VALUES " "(1,2,3)" -#: libraries/plugins/export/ExportSql.class.php:478 +#: libraries/plugins/export/ExportSql.class.php:440 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "匯出二進制欄位時用十六進制標記 (例如,“abc”將用 0x616263 表示)" -#: libraries/plugins/export/ExportSql.class.php:490 +#: libraries/plugins/export/ExportSql.class.php:451 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" @@ -7674,52 +7689,47 @@ msgstr "" "匯出 TIMESTAMP 欄位時用 UTC 時區 (允許在不同時區的伺服器間匯出和重新載入 " "TIMESTAMP 欄位)" -#: libraries/plugins/export/ExportSql.class.php:544 -#: libraries/plugins/export/ExportXml.class.php:104 +#: libraries/plugins/export/ExportSql.class.php:507 +#: libraries/plugins/export/ExportXml.class.php:109 msgid "Procedures" msgstr "Procedure" -#: libraries/plugins/export/ExportSql.class.php:561 -#: libraries/plugins/export/ExportXml.class.php:99 +#: libraries/plugins/export/ExportSql.class.php:524 +#: libraries/plugins/export/ExportXml.class.php:105 msgid "Functions" msgstr "函數" -#: libraries/plugins/export/ExportSql.class.php:1184 +#: libraries/plugins/export/ExportSql.class.php:1147 msgid "Constraints for dumped tables" msgstr "匯出資料表的 Constraints" -#: libraries/plugins/export/ExportSql.class.php:1195 +#: libraries/plugins/export/ExportSql.class.php:1158 msgid "Constraints for table" msgstr "資料表的 Constraints" -#: libraries/plugins/export/ExportSql.class.php:1337 +#: libraries/plugins/export/ExportSql.class.php:1300 msgid "MIME TYPES FOR TABLE" msgstr "MIME 類型表" -#: libraries/plugins/export/ExportSql.class.php:1359 +#: libraries/plugins/export/ExportSql.class.php:1322 msgid "RELATIONS FOR TABLE" msgstr "表的關聯" -#: libraries/plugins/export/ExportSql.class.php:1537 +#: libraries/plugins/export/ExportSql.class.php:1500 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" msgstr "允許讀取資料" -#: libraries/plugins/export/ExportXml.class.php:68 -#: libraries/plugins/import/ImportXml.class.php:49 -msgid "XML" -msgstr "XML" - -#: libraries/plugins/export/ExportXml.class.php:93 +#: libraries/plugins/export/ExportXml.class.php:100 msgid "Object creation options (all are recommended)" msgstr "物件建立選項 (推薦全選)" -#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/plugins/export/ExportXml.class.php:123 msgid "Views" msgstr "view" -#: libraries/plugins/export/ExportXml.class.php:137 +#: libraries/plugins/export/ExportXml.class.php:135 msgid "Export contents" msgstr "匯出內容" @@ -7790,6 +7800,10 @@ msgstr "欄位名稱" msgid "This plugin does not support compressed imports!" msgstr "該插件不支援匯入檔案!" +#: libraries/plugins/import/ImportMediawiki.class.php:52 +msgid "MediaWiki Table" +msgstr "MediaWiki 表" + #: libraries/plugins/import/ImportMediawiki.class.php:298 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." @@ -7846,6 +7860,10 @@ msgstr "SQL 相容模式:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要給零值使用自動新增 (AUTO_INCREMENT)" +#: libraries/plugins/import/ImportXml.class.php:49 +msgid "XML" +msgstr "XML" + #: libraries/plugins/import/PMA_ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." @@ -8069,11 +8087,12 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "請重新登錄 phpMyAdmin 以載入新設定並使其生效" -#: libraries/relation.lib.php:1393 +#: libraries/relation.lib.php:1408 msgid "no description" msgstr "無說明" -#: libraries/replication_gui.lib.php:35 server_privileges.php:797 +#: libraries/replication_gui.lib.php:35 +#: libraries/server_privileges.lib.php:758 msgid "Uncheck All" msgstr "全不選" @@ -8095,9 +8114,10 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 server_privileges.php:904 -#: server_privileges.php:907 server_privileges.php:914 -#: server_synchronize.php:1443 +#: libraries/replication_gui.lib.php:275 +#: libraries/server_privileges.lib.php:999 +#: libraries/server_privileges.lib.php:1004 +#: libraries/server_privileges.lib.php:1032 server_synchronize.php:1443 msgid "User name" msgstr "帳號" @@ -8132,34 +8152,43 @@ msgstr "僅透過 --report-host=主機名 參數啓動的從伺服器可見" msgid "Add slave replication user" msgstr "新增 slave replication 使用者" -#: libraries/replication_gui.lib.php:270 server_privileges.php:909 +#: libraries/replication_gui.lib.php:270 +#: libraries/server_privileges.lib.php:1018 msgid "Any user" msgstr "任意使用者" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 server_privileges.php:910 -#: server_privileges.php:980 server_privileges.php:1006 -#: server_privileges.php:2301 server_privileges.php:2331 +#: libraries/replication_gui.lib.php:364 +#: libraries/server_privileges.lib.php:1025 +#: libraries/server_privileges.lib.php:1129 +#: libraries/server_privileges.lib.php:1168 +#: libraries/server_privileges.lib.php:2188 +#: libraries/server_privileges.lib.php:2244 msgid "Use text field" msgstr "使用文字域" -#: libraries/replication_gui.lib.php:318 server_privileges.php:960 +#: libraries/replication_gui.lib.php:318 +#: libraries/server_privileges.lib.php:1101 msgid "Any host" msgstr "任意主機" -#: libraries/replication_gui.lib.php:322 server_privileges.php:964 +#: libraries/replication_gui.lib.php:322 +#: libraries/server_privileges.lib.php:1107 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:328 server_privileges.php:969 +#: libraries/replication_gui.lib.php:328 +#: libraries/server_privileges.lib.php:1114 msgid "This Host" msgstr "此主機" -#: libraries/replication_gui.lib.php:334 server_privileges.php:975 +#: libraries/replication_gui.lib.php:334 +#: libraries/server_privileges.lib.php:1122 msgid "Use Host Table" msgstr "使用主機表" -#: libraries/replication_gui.lib.php:348 server_privileges.php:989 +#: libraries/replication_gui.lib.php:348 +#: libraries/server_privileges.lib.php:1139 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8173,7 +8202,7 @@ msgstr "產生密碼" #: libraries/rte/rte_events.lib.php:132 libraries/rte/rte_routines.lib.php:289 #: libraries/rte/rte_routines.lib.php:294 #: libraries/rte/rte_routines.lib.php:319 -#: libraries/rte/rte_routines.lib.php:1332 +#: libraries/rte/rte_routines.lib.php:1361 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8214,8 +8243,8 @@ msgid "Edit event" msgstr "編輯伺服器" #: libraries/rte/rte_events.lib.php:215 libraries/rte/rte_routines.lib.php:417 -#: libraries/rte/rte_routines.lib.php:1357 -#: libraries/rte/rte_routines.lib.php:1395 +#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/rte/rte_routines.lib.php:1425 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" @@ -8304,7 +8333,8 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:31 server_privileges.php:2598 +#: libraries/rte/rte_footer.lib.php:31 +#: libraries/server_privileges.lib.php:1555 msgid "New" msgstr "" @@ -8451,25 +8481,25 @@ msgstr "" msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1286 -#, php-format -msgid "%d row affected by the last statement inside the procedure" -msgid_plural "%d rows affected by the last statement inside the procedure" -msgstr[0] "" - -#: libraries/rte/rte_routines.lib.php:1302 +#: libraries/rte/rte_routines.lib.php:1279 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "允許運行 Procedure" -#: libraries/rte/rte_routines.lib.php:1382 -#: libraries/rte/rte_routines.lib.php:1390 +#: libraries/rte/rte_routines.lib.php:1343 +#, php-format +msgid "%d row affected by the last statement inside the procedure" +msgid_plural "%d rows affected by the last statement inside the procedure" +msgstr[0] "" + +#: libraries/rte/rte_routines.lib.php:1412 +#: libraries/rte/rte_routines.lib.php:1420 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1448 -#: libraries/rte/rte_routines.lib.php:1451 +#: libraries/rte/rte_routines.lib.php:1478 +#: libraries/rte/rte_routines.lib.php:1481 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8640,28 +8670,28 @@ msgstr "沒有在資料庫中找到表" msgid "There are no events to display." msgstr "沒有可上傳的檔案" -#: libraries/schema/Dia_Relation_Schema.class.php:234 -#: libraries/schema/Eps_Relation_Schema.class.php:425 +#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 -#: libraries/schema/Svg_Relation_Schema.class.php:392 -#: libraries/schema/Visio_Relation_Schema.class.php:223 +#: libraries/schema/Svg_Relation_Schema.class.php:393 +#: libraries/schema/Visio_Relation_Schema.class.php:224 #, php-format msgid "The %s table doesn't exist!" msgstr "資料表 %s 不存在!" -#: libraries/schema/Dia_Relation_Schema.class.php:269 -#: libraries/schema/Eps_Relation_Schema.class.php:474 +#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 -#: libraries/schema/Svg_Relation_Schema.class.php:443 -#: libraries/schema/Visio_Relation_Schema.class.php:274 +#: libraries/schema/Svg_Relation_Schema.class.php:444 +#: libraries/schema/Visio_Relation_Schema.class.php:275 #, php-format msgid "Please configure the coordinates for table %s" msgstr "請設定表 %s 的座標" -#: libraries/schema/Eps_Relation_Schema.class.php:828 +#: libraries/schema/Eps_Relation_Schema.class.php:829 #: libraries/schema/Pdf_Relation_Schema.class.php:906 -#: libraries/schema/Svg_Relation_Schema.class.php:808 -#: libraries/schema/Visio_Relation_Schema.class.php:538 +#: libraries/schema/Svg_Relation_Schema.class.php:809 +#: libraries/schema/Visio_Relation_Schema.class.php:539 #, php-format msgid "Schema of the %s database - Page %s" msgstr "資料庫 %s 的大綱 - 第 %s 頁" @@ -8796,6 +8826,446 @@ msgstr "未知的語言:%1$s." msgid "Current Server" msgstr "目前伺服器" +#: libraries/server_privileges.lib.php:136 server_privileges.php:98 +msgid "No privileges." +msgstr "無權限" + +#: libraries/server_privileges.lib.php:146 server_privileges.php:63 +msgid "Includes all privileges except GRANT." +msgstr "除了授權 (GRANT) 以外的所有權限" + +#: libraries/server_privileges.lib.php:168 +#: libraries/server_privileges.lib.php:621 +#: libraries/server_privileges.lib.php:789 server_privileges.php:91 +msgid "Allows reading data." +msgstr "允許讀取資料" + +#: libraries/server_privileges.lib.php:172 +#: libraries/server_privileges.lib.php:626 +#: libraries/server_privileges.lib.php:790 server_privileges.php:80 +msgid "Allows inserting and replacing data." +msgstr "允許插入和替換資料" + +#: libraries/server_privileges.lib.php:176 +#: libraries/server_privileges.lib.php:631 +#: libraries/server_privileges.lib.php:791 server_privileges.php:97 +msgid "Allows changing data." +msgstr "允許修改資料" + +#: libraries/server_privileges.lib.php:180 +#: libraries/server_privileges.lib.php:792 server_privileges.php:72 +msgid "Allows deleting data." +msgstr "允許刪除資料" + +#: libraries/server_privileges.lib.php:184 +#: libraries/server_privileges.lib.php:818 server_privileges.php:66 +msgid "Allows creating new databases and tables." +msgstr "允許建立新資料庫和資料表" + +#: libraries/server_privileges.lib.php:188 +#: libraries/server_privileges.lib.php:830 server_privileges.php:73 +msgid "Allows dropping databases and tables." +msgstr "允許刪除資料庫和資料表" + +#: libraries/server_privileges.lib.php:192 +#: libraries/server_privileges.lib.php:906 server_privileges.php:88 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "允許重新載入伺服器設定並重新整理伺服器的快取" + +#: libraries/server_privileges.lib.php:196 +#: libraries/server_privileges.lib.php:910 server_privileges.php:94 +msgid "Allows shutting down the server." +msgstr "允許關閉伺服器" + +#: libraries/server_privileges.lib.php:200 +#: libraries/server_privileges.lib.php:902 server_privileges.php:86 +msgid "Allows viewing processes of all users" +msgstr "允許查看所有使用者的程序" + +#: libraries/server_privileges.lib.php:204 +#: libraries/server_privileges.lib.php:798 server_privileges.php:77 +msgid "Allows importing data from and exporting data into files." +msgstr "允許從檔案中匯入資料以及將資料匯出至檔案" + +#: libraries/server_privileges.lib.php:208 +#: libraries/server_privileges.lib.php:636 +#: libraries/server_privileges.lib.php:923 server_privileges.php:87 +msgid "Has no effect in this MySQL version." +msgstr "在此版本的 MySQL 中無效" + +#: libraries/server_privileges.lib.php:212 +#: libraries/server_privileges.lib.php:826 server_privileges.php:79 +msgid "Allows creating and dropping indexes." +msgstr "允許建立和刪除索引" + +#: libraries/server_privileges.lib.php:216 +#: libraries/server_privileges.lib.php:824 server_privileges.php:64 +msgid "Allows altering the structure of existing tables." +msgstr "允許修改現有資料表的結構" + +#: libraries/server_privileges.lib.php:220 +#: libraries/server_privileges.lib.php:914 server_privileges.php:92 +msgid "Gives access to the complete list of databases." +msgstr "允許訪問完整的資料庫列表" + +#: libraries/server_privileges.lib.php:224 +#: libraries/server_privileges.lib.php:898 server_privileges.php:95 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" +"允許在達到最大連線數時連線,對於大多數像設定全域變數或中止其它使用者程序這樣" +"的管理操作是必需的" + +#: libraries/server_privileges.lib.php:228 +#: libraries/server_privileges.lib.php:836 server_privileges.php:69 +msgid "Allows creating temporary tables." +msgstr "允許建立臨時表" + +#: libraries/server_privileges.lib.php:232 +#: libraries/server_privileges.lib.php:919 server_privileges.php:81 +msgid "Allows locking tables for the current thread." +msgstr "允許鎖定目前程序的表" + +#: libraries/server_privileges.lib.php:236 +#: libraries/server_privileges.lib.php:932 server_privileges.php:90 +msgid "Needed for the replication slaves." +msgstr "replication slaves所需" + +#: libraries/server_privileges.lib.php:240 +#: libraries/server_privileges.lib.php:928 server_privileges.php:89 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "使用者有權詢問附屬者/控制者在哪裏" + +#: libraries/server_privileges.lib.php:244 +#: libraries/server_privileges.lib.php:257 +#: libraries/server_privileges.lib.php:856 +#: libraries/server_privileges.lib.php:863 server_privileges.php:71 +msgid "Allows creating new views." +msgstr "允許建立 views." + +#: libraries/server_privileges.lib.php:248 +#: libraries/server_privileges.lib.php:870 server_privileges.php:75 +msgid "Allows to set up events for the event scheduler" +msgstr "允許爲事件觸發器設定事件" + +#: libraries/server_privileges.lib.php:252 +#: libraries/server_privileges.lib.php:874 server_privileges.php:96 +msgid "Allows creating and dropping triggers" +msgstr "允許建立和刪除 triggers" + +#: libraries/server_privileges.lib.php:261 +#: libraries/server_privileges.lib.php:266 +#: libraries/server_privileges.lib.php:840 server_privileges.php:93 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "允許執行 SHOW CREATE VIEW 查詢" + +#: libraries/server_privileges.lib.php:270 +#: libraries/server_privileges.lib.php:844 server_privileges.php:67 +msgid "Allows creating stored routines." +msgstr "允許建立 stored routines." + +#: libraries/server_privileges.lib.php:274 +#: libraries/server_privileges.lib.php:848 server_privileges.php:65 +msgid "Allows altering and dropping stored routines." +msgstr "允許修改或刪除 Procedure" + +#: libraries/server_privileges.lib.php:278 +#: libraries/server_privileges.lib.php:936 server_privileges.php:70 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "允許建立、刪除和重命名使用者帳號" + +#: libraries/server_privileges.lib.php:282 +#: libraries/server_privileges.lib.php:850 server_privileges.php:76 +msgid "Allows executing stored routines." +msgstr "允許運行 Procedure" + +#: libraries/server_privileges.lib.php:326 +#: libraries/server_privileges.lib.php:327 +msgctxt "None privileges" +msgid "None" +msgstr "無" + +#: libraries/server_privileges.lib.php:489 +msgid "Resource limits" +msgstr "資源限制" + +#: libraries/server_privileges.lib.php:491 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "注意:若將這些選項設爲 0(零) 即不限制" + +#: libraries/server_privileges.lib.php:497 +#: libraries/server_privileges.lib.php:504 server_privileges.php:83 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "限制使用者每小時可發送到伺服器的查詢數" + +#: libraries/server_privileges.lib.php:510 +#: libraries/server_privileges.lib.php:516 server_privileges.php:84 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "限制使用者每小時可執行的修改任何資料表或資料庫的命令數" + +#: libraries/server_privileges.lib.php:523 +#: libraries/server_privileges.lib.php:528 server_privileges.php:82 +msgid "Limits the number of new connections the user may open per hour." +msgstr "限制使用者每小時開啟的新連線數" + +#: libraries/server_privileges.lib.php:534 +#: libraries/server_privileges.lib.php:539 server_privileges.php:85 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "限制該使用者的同時連線數" + +#: libraries/server_privileges.lib.php:589 +#: libraries/server_privileges.lib.php:750 +#: libraries/server_privileges.lib.php:2121 +#: libraries/server_privileges.lib.php:2133 +msgid "Table-specific privileges" +msgstr "按表指定權限" + +#: libraries/server_privileges.lib.php:591 +#: libraries/server_privileges.lib.php:761 +#: libraries/server_privileges.lib.php:2296 +msgid "Note: MySQL privilege names are expressed in English" +msgstr "注意:MySQL 權限名稱會以英文顯示" + +#: libraries/server_privileges.lib.php:724 +msgid "Administration" +msgstr "管理" + +#: libraries/server_privileges.lib.php:747 +#: libraries/server_privileges.lib.php:2294 +msgid "Global privileges" +msgstr "全域權限" + +#: libraries/server_privileges.lib.php:749 +#: libraries/server_privileges.lib.php:2120 +msgid "Database-specific privileges" +msgstr "按資料庫指定權限" + +#: libraries/server_privileges.lib.php:819 server_privileges.php:68 +msgid "Allows creating new tables." +msgstr "允許建立新資料表" + +#: libraries/server_privileges.lib.php:831 server_privileges.php:74 +msgid "Allows dropping tables." +msgstr "允許刪除資料表" + +#: libraries/server_privileges.lib.php:892 server_privileges.php:78 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "允許新增使用者和權限,而不允許重新載入權限表" + +#: libraries/server_privileges.lib.php:996 +msgid "Login Information" +msgstr "登錄資訊" + +#: libraries/server_privileges.lib.php:1158 +msgid "Do not change the password" +msgstr "保持原密碼" + +#: libraries/server_privileges.lib.php:1290 +#, php-format +msgid "The password for %s was changed successfully." +msgstr "%s 的密碼已修改" + +#: libraries/server_privileges.lib.php:1328 +#, php-format +msgid "You have revoked the privileges for %s" +msgstr "您已移除 %s 的權限" + +#: libraries/server_privileges.lib.php:1388 +msgid "Database for user" +msgstr "使用者資料庫" + +#: libraries/server_privileges.lib.php:1392 +msgid "Create database with same name and grant all privileges" +msgstr "建立與使用者同名的資料庫並授予所有權限" + +#: libraries/server_privileges.lib.php:1398 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "給以 帳號_ 開頭的資料庫 (username\\_%) 授予所有權限" + +#: libraries/server_privileges.lib.php:1406 +#, php-format +msgid "Grant all privileges on database "%s"" +msgstr "授予資料庫“%s”的所有權限" + +#: libraries/server_privileges.lib.php:1498 +#, php-format +msgid "Users having access to "%s"" +msgstr "使用者可以訪問“%s”" + +#: libraries/server_privileges.lib.php:1509 +#: libraries/server_privileges.lib.php:2291 +#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2758 main.php:212 +#: server_status.php:1288 +msgid "User" +msgstr "使用者" + +#: libraries/server_privileges.lib.php:1513 +#: libraries/server_privileges.lib.php:2130 +#: libraries/server_privileges.lib.php:2299 +msgid "Grant" +msgstr "授權" + +#: libraries/server_privileges.lib.php:1547 +#, fuzzy +#| msgid "View %s has been dropped" +msgid "User has been added." +msgstr "已刪除 view %s" + +#: libraries/server_privileges.lib.php:1607 +#: libraries/server_privileges.lib.php:1764 +#: libraries/server_privileges.lib.php:2378 +msgid "Any" +msgstr "任意" + +#: libraries/server_privileges.lib.php:1622 +msgid "global" +msgstr "全域" + +#: libraries/server_privileges.lib.php:1628 +msgid "database-specific" +msgstr "按資料庫指定" + +#: libraries/server_privileges.lib.php:1630 +msgid "wildcard" +msgstr "萬用字元" + +#: libraries/server_privileges.lib.php:1670 server_privileges.php:166 +msgid "No user found." +msgstr "未找到使用者" + +#: libraries/server_privileges.lib.php:1698 +#: libraries/server_privileges.lib.php:2757 +msgid "Edit Privileges" +msgstr "編輯權限" + +#: libraries/server_privileges.lib.php:1709 +msgid "Revoke" +msgstr "移除" + +#: libraries/server_privileges.lib.php:1729 +#, fuzzy +#| msgid "Export" +msgid "Export all" +msgstr "匯出" + +#: libraries/server_privileges.lib.php:1846 +msgid "... keep the old one." +msgstr "... 保留舊使用者" + +#: libraries/server_privileges.lib.php:1847 +msgid "... delete the old one from the user tables." +msgstr "... 從使用者資料表中刪除舊使用者" + +#: libraries/server_privileges.lib.php:1848 +msgid "" +"... revoke all active privileges from the old one and delete it afterwards." +msgstr "... 移除舊使用者的所有權限,然後刪除舊使用者" + +#: libraries/server_privileges.lib.php:1849 +msgid "" +"... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "... 從使用者資料表中刪除舊使用者,然後重新載入權限" + +#: libraries/server_privileges.lib.php:1859 +msgid "Change Login Information / Copy User" +msgstr "修改登錄資訊/複製使用者" + +#: libraries/server_privileges.lib.php:1865 +msgid "Create a new user with the same privileges and ..." +msgstr "建立具有相同權限的新使用者然後 ..." + +#: libraries/server_privileges.lib.php:2134 +msgid "Column-specific privileges" +msgstr "按欄位指定權限" + +#: libraries/server_privileges.lib.php:2185 +msgid "Add privileges on the following database" +msgstr "在下列資料庫新增權限" + +#: libraries/server_privileges.lib.php:2204 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "要使用萬用字元 _ 和 % 本身,應使用用 \\ 轉義" + +#: libraries/server_privileges.lib.php:2224 +msgid "Add privileges on the following table" +msgstr "在下列資料表新增權限" + +#: libraries/server_privileges.lib.php:2447 +msgid "Remove selected users" +msgstr "刪除選中的使用者" + +#: libraries/server_privileges.lib.php:2451 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "移除使用者所有權限,然後刪除使用者" + +#: libraries/server_privileges.lib.php:2455 +#: libraries/server_privileges.lib.php:2459 +#: libraries/server_privileges.lib.php:2460 +msgid "Drop the databases that have the same names as the users." +msgstr "刪除與使用者同名的資料庫" + +#: libraries/server_privileges.lib.php:2585 +msgid "No users selected for deleting!" +msgstr "沒有選擇要刪除的使用者!" + +#: libraries/server_privileges.lib.php:2588 +msgid "Reloading the privileges" +msgstr "重新載入權限" + +#: libraries/server_privileges.lib.php:2606 +msgid "The selected users have been deleted successfully." +msgstr "已成功刪除選中的使用者" + +#: libraries/server_privileges.lib.php:2672 +#, php-format +msgid "You have updated the privileges for %s." +msgstr "您已更新了 %s 的權限" + +#: libraries/server_privileges.lib.php:2695 +#, fuzzy +#| msgid "Privileges" +msgid "Privileges for all users" +msgstr "權限" + +#: libraries/server_privileges.lib.php:2708 +#, fuzzy, php-format +#| msgid "Privileges" +msgid "Privileges for %s" +msgstr "權限" + +#: libraries/server_privileges.lib.php:2812 +#, fuzzy +#| msgid "User overview" +msgid "Users overview" +msgstr "查看使用者" + +#: libraries/server_privileges.lib.php:2883 +#, php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." +msgstr "" +"注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表" +"內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" +"權限%s" + +#: libraries/server_privileges.lib.php:2925 +msgid "The selected user was not found in the privilege table." +msgstr "在權限表內找不到選中的使用者" + +#: libraries/server_privileges.lib.php:3138 +msgid "You have added a new user." +msgstr "您已新增了一個新使用者" + #: libraries/server_synchronize.lib.php:1546 server_synchronize.php:1353 msgid "Source database" msgstr "來源資料庫" @@ -8842,11 +9312,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:325 sql.php:1140 sql.php:1157 +#: libraries/sql_query_form.lib.php:325 sql.php:1146 sql.php:1163 msgid "Bookmark this SQL query" msgstr "將此 SQL 查詢加爲書籤" -#: libraries/sql_query_form.lib.php:331 sql.php:1151 +#: libraries/sql_query_form.lib.php:331 sql.php:1157 msgid "Let every user access this bookmark" msgstr "讓所有使用者均可訪問此書籤" @@ -9119,12 +9589,6 @@ msgstr "查看版本" msgid "Protocol version" msgstr "協定版本" -#: main.php:212 server_privileges.php:1716 server_privileges.php:1874 -#: server_privileges.php:2016 server_privileges.php:2439 -#: server_status.php:1288 -msgid "User" -msgstr "使用者" - #: main.php:217 #, fuzzy #| msgid "Server socket" @@ -9643,436 +10107,20 @@ msgstr "" msgid "disabled" msgstr "已關閉" -#: server_privileges.php:97 server_privileges.php:450 -msgid "Includes all privileges except GRANT." -msgstr "除了授權 (GRANT) 以外的所有權限" - -#: server_privileges.php:98 server_privileges.php:315 -#: server_privileges.php:740 -msgid "Allows altering the structure of existing tables." -msgstr "允許修改現有資料表的結構" - -#: server_privileges.php:99 server_privileges.php:373 -#: server_privileges.php:746 -msgid "Allows altering and dropping stored routines." -msgstr "允許修改或刪除 Procedure" - -#: server_privileges.php:100 server_privileges.php:283 -#: server_privileges.php:739 -msgid "Allows creating new databases and tables." -msgstr "允許建立新資料庫和資料表" - -#: server_privileges.php:101 server_privileges.php:369 -#: server_privileges.php:745 -msgid "Allows creating stored routines." -msgstr "允許建立 stored routines." - -#: server_privileges.php:102 server_privileges.php:739 -msgid "Allows creating new tables." -msgstr "允許建立新資料表" - -#: server_privileges.php:103 server_privileges.php:327 -#: server_privileges.php:743 -msgid "Allows creating temporary tables." -msgstr "允許建立臨時表" - -#: server_privileges.php:104 server_privileges.php:377 -#: server_privileges.php:779 -msgid "Allows creating, dropping and renaming user accounts." -msgstr "允許建立、刪除和重命名使用者帳號" - -#: server_privileges.php:105 server_privileges.php:343 -#: server_privileges.php:356 server_privileges.php:751 -#: server_privileges.php:755 -msgid "Allows creating new views." -msgstr "允許建立 views." - -#: server_privileges.php:106 server_privileges.php:279 -#: server_privileges.php:731 -msgid "Allows deleting data." -msgstr "允許刪除資料" - -#: server_privileges.php:107 server_privileges.php:287 -#: server_privileges.php:742 -msgid "Allows dropping databases and tables." -msgstr "允許刪除資料庫和資料表" - -#: server_privileges.php:108 server_privileges.php:742 -msgid "Allows dropping tables." -msgstr "允許刪除資料表" - -#: server_privileges.php:109 server_privileges.php:347 -#: server_privileges.php:759 -msgid "Allows to set up events for the event scheduler" -msgstr "允許爲事件觸發器設定事件" - -#: server_privileges.php:110 server_privileges.php:381 -#: server_privileges.php:747 -msgid "Allows executing stored routines." -msgstr "允許運行 Procedure" - -#: server_privileges.php:111 server_privileges.php:303 -#: server_privileges.php:734 -msgid "Allows importing data from and exporting data into files." -msgstr "允許從檔案中匯入資料以及將資料匯出至檔案" - -#: server_privileges.php:112 server_privileges.php:765 -msgid "" -"Allows adding users and privileges without reloading the privilege tables." -msgstr "允許新增使用者和權限,而不允許重新載入權限表" - -#: server_privileges.php:113 server_privileges.php:311 -#: server_privileges.php:741 -msgid "Allows creating and dropping indexes." -msgstr "允許建立和刪除索引" - -#: server_privileges.php:114 server_privileges.php:271 -#: server_privileges.php:660 server_privileges.php:729 -msgid "Allows inserting and replacing data." -msgstr "允許插入和替換資料" - -#: server_privileges.php:115 server_privileges.php:331 -#: server_privileges.php:774 -msgid "Allows locking tables for the current thread." -msgstr "允許鎖定目前程序的表" - -#: server_privileges.php:116 server_privileges.php:838 -#: server_privileges.php:840 -msgid "Limits the number of new connections the user may open per hour." -msgstr "限制使用者每小時開啟的新連線數" - -#: server_privileges.php:117 server_privileges.php:826 -#: server_privileges.php:828 -msgid "Limits the number of queries the user may send to the server per hour." -msgstr "限制使用者每小時可發送到伺服器的查詢數" - -#: server_privileges.php:118 server_privileges.php:832 -#: server_privileges.php:834 -msgid "" -"Limits the number of commands that change any table or database the user may " -"execute per hour." -msgstr "限制使用者每小時可執行的修改任何資料表或資料庫的命令數" - -#: server_privileges.php:119 server_privileges.php:844 -#: server_privileges.php:846 -msgid "Limits the number of simultaneous connections the user may have." -msgstr "限制該使用者的同時連線數" - -#: server_privileges.php:120 server_privileges.php:299 -#: server_privileges.php:769 -msgid "Allows viewing processes of all users" -msgstr "允許查看所有使用者的程序" - -#: server_privileges.php:121 server_privileges.php:307 -#: server_privileges.php:670 server_privileges.php:775 -msgid "Has no effect in this MySQL version." -msgstr "在此版本的 MySQL 中無效" - -#: server_privileges.php:122 server_privileges.php:291 -#: server_privileges.php:770 -msgid "Allows reloading server settings and flushing the server's caches." -msgstr "允許重新載入伺服器設定並重新整理伺服器的快取" - -#: server_privileges.php:123 server_privileges.php:339 -#: server_privileges.php:777 -msgid "Allows the user to ask where the slaves / masters are." -msgstr "使用者有權詢問附屬者/控制者在哪裏" - -#: server_privileges.php:124 server_privileges.php:335 -#: server_privileges.php:778 -msgid "Needed for the replication slaves." -msgstr "replication slaves所需" - -#: server_privileges.php:125 server_privileges.php:267 -#: server_privileges.php:655 server_privileges.php:728 -msgid "Allows reading data." -msgstr "允許讀取資料" - -#: server_privileges.php:126 server_privileges.php:319 -#: server_privileges.php:772 -msgid "Gives access to the complete list of databases." -msgstr "允許訪問完整的資料庫列表" - -#: server_privileges.php:127 server_privileges.php:360 -#: server_privileges.php:365 server_privileges.php:744 -msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "允許執行 SHOW CREATE VIEW 查詢" - -#: server_privileges.php:128 server_privileges.php:295 -#: server_privileges.php:771 -msgid "Allows shutting down the server." -msgstr "允許關閉伺服器" - -#: server_privileges.php:129 server_privileges.php:323 -#: server_privileges.php:768 -msgid "" -"Allows connecting, even if maximum number of connections is reached; " -"required for most administrative operations like setting global variables or " -"killing threads of other users." -msgstr "" -"允許在達到最大連線數時連線,對於大多數像設定全域變數或中止其它使用者程序這樣" -"的管理操作是必需的" - -#: server_privileges.php:130 server_privileges.php:351 -#: server_privileges.php:760 -msgid "Allows creating and dropping triggers" -msgstr "允許建立和刪除 triggers" - -#: server_privileges.php:131 server_privileges.php:275 -#: server_privileges.php:665 server_privileges.php:730 -msgid "Allows changing data." -msgstr "允許修改資料" - -#: server_privileges.php:132 server_privileges.php:440 -msgid "No privileges." -msgstr "無權限" - -#: server_privileges.php:499 server_privileges.php:500 -msgctxt "None privileges" -msgid "None" -msgstr "無" - -#: server_privileges.php:644 server_privileges.php:791 -#: server_privileges.php:2086 server_privileges.php:2092 -msgid "Table-specific privileges" -msgstr "按表指定權限" - -#: server_privileges.php:646 server_privileges.php:799 -#: server_privileges.php:1878 -msgid "Note: MySQL privilege names are expressed in English" -msgstr "注意:MySQL 權限名稱會以英文顯示" - -#: server_privileges.php:724 -msgid "Administration" -msgstr "管理" - -#: server_privileges.php:788 server_privileges.php:1877 -msgid "Global privileges" -msgstr "全域權限" - -#: server_privileges.php:790 server_privileges.php:2086 -msgid "Database-specific privileges" -msgstr "按資料庫指定權限" - -#: server_privileges.php:822 -msgid "Resource limits" -msgstr "資源限制" - -#: server_privileges.php:823 -msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "注意:若將這些選項設爲 0(零) 即不限制" - -#: server_privileges.php:901 -msgid "Login Information" -msgstr "登錄資訊" - -#: server_privileges.php:1000 -msgid "Do not change the password" -msgstr "保持原密碼" - -#: server_privileges.php:1053 server_privileges.php:2582 -msgid "No user found." -msgstr "未找到使用者" - -#: server_privileges.php:1097 +#: server_privileges.php:209 #, php-format msgid "The user %s already exists!" msgstr "使用者 %s 己存在!" -#: server_privileges.php:1181 -msgid "You have added a new user." -msgstr "您已新增了一個新使用者" - -#: server_privileges.php:1405 -#, php-format -msgid "You have updated the privileges for %s." -msgstr "您已更新了 %s 的權限" - -#: server_privileges.php:1427 -#, php-format -msgid "You have revoked the privileges for %s" -msgstr "您已移除 %s 的權限" - -#: server_privileges.php:1463 -#, php-format -msgid "The password for %s was changed successfully." -msgstr "%s 的密碼已修改" - -#: server_privileges.php:1483 +#: server_privileges.php:308 #, php-format msgid "Deleting %s" msgstr "正在刪除 %s" -#: server_privileges.php:1497 -msgid "No users selected for deleting!" -msgstr "沒有選擇要刪除的使用者!" - -#: server_privileges.php:1500 -msgid "Reloading the privileges" -msgstr "重新載入權限" - -#: server_privileges.php:1518 -msgid "The selected users have been deleted successfully." -msgstr "已成功刪除選中的使用者" - -#: server_privileges.php:1553 +#: server_privileges.php:355 msgid "The privileges were reloaded successfully." msgstr "已成功重新載入權限" -#: server_privileges.php:1564 server_privileges.php:2015 -msgid "Edit Privileges" -msgstr "編輯權限" - -#: server_privileges.php:1573 -msgid "Revoke" -msgstr "移除" - -#: server_privileges.php:1589 -#, fuzzy -#| msgid "Export" -msgid "Export all" -msgstr "匯出" - -#: server_privileges.php:1608 server_privileges.php:1901 -#: server_privileges.php:2532 -msgid "Any" -msgstr "任意" - -#: server_privileges.php:1695 -#, fuzzy -#| msgid "Privileges" -msgid "Privileges for all users" -msgstr "權限" - -#: server_privileges.php:1708 -#, fuzzy, php-format -#| msgid "Privileges" -msgid "Privileges for %s" -msgstr "權限" - -#: server_privileges.php:1739 -#, fuzzy -#| msgid "User overview" -msgid "Users overview" -msgstr "查看使用者" - -#: server_privileges.php:1879 server_privileges.php:2091 -#: server_privileges.php:2443 -msgid "Grant" -msgstr "授權" - -#: server_privileges.php:1970 -msgid "Remove selected users" -msgstr "刪除選中的使用者" - -#: server_privileges.php:1973 -msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "移除使用者所有權限,然後刪除使用者" - -#: server_privileges.php:1974 server_privileges.php:1975 -#: server_privileges.php:1976 -msgid "Drop the databases that have the same names as the users." -msgstr "刪除與使用者同名的資料庫" - -#: server_privileges.php:1997 -#, php-format -msgid "" -"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " -"tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." -msgstr "" -"注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表" -"內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" -"權限%s" - -#: server_privileges.php:2050 -msgid "The selected user was not found in the privilege table." -msgstr "在權限表內找不到選中的使用者" - -#: server_privileges.php:2092 -msgid "Column-specific privileges" -msgstr "按欄位指定權限" - -#: server_privileges.php:2298 -msgid "Add privileges on the following database" -msgstr "在下列資料庫新增權限" - -#: server_privileges.php:2316 -msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "要使用萬用字元 _ 和 % 本身,應使用用 \\ 轉義" - -#: server_privileges.php:2319 -msgid "Add privileges on the following table" -msgstr "在下列資料表新增權限" - -#: server_privileges.php:2378 -msgid "Change Login Information / Copy User" -msgstr "修改登錄資訊/複製使用者" - -#: server_privileges.php:2381 -msgid "Create a new user with the same privileges and ..." -msgstr "建立具有相同權限的新使用者然後 ..." - -#: server_privileges.php:2383 -msgid "... keep the old one." -msgstr "... 保留舊使用者" - -#: server_privileges.php:2384 -msgid "... delete the old one from the user tables." -msgstr "... 從使用者資料表中刪除舊使用者" - -#: server_privileges.php:2385 -msgid "" -"... revoke all active privileges from the old one and delete it afterwards." -msgstr "... 移除舊使用者的所有權限,然後刪除舊使用者" - -#: server_privileges.php:2386 -msgid "" -"... delete the old one from the user tables and reload the privileges " -"afterwards." -msgstr "... 從使用者資料表中刪除舊使用者,然後重新載入權限" - -#: server_privileges.php:2411 -msgid "Database for user" -msgstr "使用者資料庫" - -#: server_privileges.php:2413 -msgid "Create database with same name and grant all privileges" -msgstr "建立與使用者同名的資料庫並授予所有權限" - -#: server_privileges.php:2415 -msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "給以 帳號_ 開頭的資料庫 (username\\_%) 授予所有權限" - -#: server_privileges.php:2419 -#, php-format -msgid "Grant all privileges on database "%s"" -msgstr "授予資料庫“%s”的所有權限" - -#: server_privileges.php:2435 -#, php-format -msgid "Users having access to "%s"" -msgstr "使用者可以訪問“%s”" - -#: server_privileges.php:2544 -msgid "global" -msgstr "全域" - -#: server_privileges.php:2546 -msgid "database-specific" -msgstr "按資料庫指定" - -#: server_privileges.php:2548 -msgid "wildcard" -msgstr "萬用字元" - -#: server_privileges.php:2590 -#, fuzzy -#| msgid "View %s has been dropped" -msgid "User has been added." -msgstr "已刪除 view %s" - #: server_replication.php:82 msgid "Unknown error" msgstr "未知錯誤" @@ -11765,39 +11813,39 @@ msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元" msgid "Wrong data" msgstr "沒有資料庫" -#: sql.php:271 +#: sql.php:275 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用書籤 \"%s\" 作爲預設的查詢" -#: sql.php:430 +#: sql.php:434 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "您真的要" -#: sql.php:826 +#: sql.php:802 msgid "Showing as PHP code" msgstr "顯示爲 PHP 程式碼" -#: sql.php:831 +#: sql.php:807 msgid "Validated SQL" msgstr "已校驗的 SQL" -#: sql.php:975 +#: sql.php:966 msgid "SQL result" msgstr "SQL 查詢結果" -#: sql.php:980 +#: sql.php:971 msgid "Generated by" msgstr "產生者" -#: sql.php:1113 +#: sql.php:1119 #, php-format msgid "Problems with indexes of table `%s`" msgstr "資料表 `%s` 的索引存在問題" -#: sql.php:1145 +#: sql.php:1151 msgid "Label" msgstr "標籤" @@ -13666,6 +13714,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "最大同時連線數" +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "PHP array" +#~ msgstr "PHP 陣列" + #~ msgid "" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." diff --git a/prefs_manage.php b/prefs_manage.php index c15311598e..6de37a9033 100644 --- a/prefs_manage.php +++ b/prefs_manage.php @@ -21,7 +21,9 @@ require 'libraries/config/user_preferences.forms.php'; PMA_userprefs_pageinit(); $error = ''; -if (isset($_POST['submit_export']) && filter_input(INPUT_POST, 'export_type') == 'text_file') { +if (isset($_POST['submit_export']) + && filter_input(INPUT_POST, 'export_type') == 'text_file' +) { // export to JSON file PMA_Response::getInstance()->disable(); $filename = 'phpMyAdmin-config-' . urlencode(PMA_getenv('HTTP_HOST')) . '.json'; @@ -78,7 +80,8 @@ if (isset($_POST['submit_export']) && filter_input(INPUT_POST, 'export_type') == if (! is_array($config)) { $error = __('Could not import configuration'); } else { - // sanitize input values: treat them as though they came from HTTP POST request + // sanitize input values: treat them as though + // they came from HTTP POST request $form_display = new FormDisplay(); foreach ($forms as $formset_id => $formset) { foreach ($formset as $form_name => $form) { @@ -192,7 +195,9 @@ if (isset($_POST['submit_export']) && filter_input(INPUT_POST, 'export_type') == if ($result === true) { $params = array(); if ($_SESSION['PMA_Theme_Manager']->theme->getId() != 'original') { - $GLOBALS['PMA_Config']->removeCookie($_SESSION['PMA_Theme_Manager']->getThemeCookieName()); + $GLOBALS['PMA_Config']->removeCookie( + $_SESSION['PMA_Theme_Manager']->getThemeCookieName() + ); unset($_SESSION['PMA_Theme_Manager']); unset($_SESSION['PMA_Theme']); $params['reload_left_frame'] = true; diff --git a/querywindow.php b/querywindow.php index 62d5854e9b..0f872994d7 100644 --- a/querywindow.php +++ b/querywindow.php @@ -124,14 +124,14 @@ $scripts->addFile('common.js'); $scripts->addFile('querywindow.js'); if (PMA_isValid($_REQUEST['auto_commit'], 'identical', 'true')) { - $scripts->addEvent('load','PMA_queryAutoCommit'); + $scripts->addEvent('load', 'PMA_queryAutoCommit'); } if (PMA_isValid($_REQUEST['init'])) { - $scripts->addEvent('load','PMA_querywindowResize'); + $scripts->addEvent('load', 'PMA_querywindowResize'); } // always set focus to the textarea if ($querydisplay_tab == 'sql' || $querydisplay_tab == 'full') { - $scripts->addEvent('load','PMA_querywindowSetFocus'); + $scripts->addEvent('load', 'PMA_querywindowSetFocus'); } echo '
'; diff --git a/schema_export.php b/schema_export.php index 26d2c6e6ae..ac399a2131 100644 --- a/schema_export.php +++ b/schema_export.php @@ -56,7 +56,11 @@ PMA_DBI_select_db($db); $path = PMA_securePath(ucfirst($export_type)); if (!file_exists('libraries/schema/' . $path . '_Relation_Schema.class.php')) { - PMA_Export_Relation_Schema::dieSchema($_POST['chpage'], $export_type, __('File doesn\'t exist')); + PMA_Export_Relation_Schema::dieSchema( + $_POST['chpage'], + $export_type, + __('File doesn\'t exist') + ); } require "libraries/schema/".$path."_Relation_Schema.class.php"; $obj_schema = eval("new PMA_".$path."_Relation_Schema();"); diff --git a/scripts/advisor2po b/scripts/advisor2po index 4cce5e7d45..b7f73b394d 100644 --- a/scripts/advisor2po +++ b/scripts/advisor2po @@ -16,7 +16,8 @@ function add_message($rules, $idx, $type) { global $messages, $locations; // Get message text if ($type == 'justification') { - $msg = Advisor::splitJustification($rules['rules'][$idx])[0]; + $msgs = Advisor::splitJustification($rules['rules'][$idx]); + $msg = $msgs[0]; } else { $msg = $rules['rules'][$idx][$type]; } diff --git a/server_binlog.php b/server_binlog.php index ee616f35c3..e3d25dcd07 100644 --- a/server_binlog.php +++ b/server_binlog.php @@ -29,7 +29,9 @@ if (! isset($_REQUEST['pos'])) { $pos = (int) $_REQUEST['pos']; } -if (! isset($_REQUEST['log']) || ! array_key_exists($_REQUEST['log'], $binary_logs)) { +if (! isset($_REQUEST['log']) + || ! array_key_exists($_REQUEST['log'], $binary_logs) +) { $_REQUEST['log'] = ''; } else { $url_params['log'] = $_REQUEST['log']; diff --git a/setup/lib/ConfigGenerator.class.php b/setup/lib/ConfigGenerator.class.php index 4db2f7385c..8dc359bb7c 100644 --- a/setup/lib/ConfigGenerator.class.php +++ b/setup/lib/ConfigGenerator.class.php @@ -142,9 +142,9 @@ class ConfigGenerator $ret .= implode(', ', $retv); } else { // more than 4 values - value per line - $imax = count($retv)-1; - for ($i = 0; $i <= $imax; $i++) { - $ret .= ($i < $imax ? ($i > 0 ? ',' : '') : '') . $crlf . ' ' . $retv[$i]; + $imax = count($retv); + for ($i = 0; $i < $imax; $i++) { + $ret .= ($i > 0 ? ',' : '') . $crlf . ' ' . $retv[$i]; } } $ret .= ')'; diff --git a/sql.php b/sql.php index 5adb0f936a..5c2344e681 100644 --- a/sql.php +++ b/sql.php @@ -74,6 +74,10 @@ if (isset($_SESSION['profiling'])) { $scripts->addFile('canvg/canvg.js'); } +if (!isset($_SESSION['is_multi_query'])) { + $_SESSION['is_multi_query'] = false; +} + /** * Defines the url to return to in case of error in a sql statement */ @@ -911,12 +915,16 @@ if ((0 == $num_rows && 0 == $unlim_num_rows) || $is_affected) { if (!empty($sql_data) && ($sql_data['valid_queries'] > 1)) { + $_SESSION['is_multi_query'] = true; + echo getTableHtmlForMultipleQueries( $displayResultsObject, $db, $sql_data, $goto, $pmaThemeImage, $text_dir, $printview, $url_query, $disp_mode, $sql_limit_to_append ); } else { + + $_SESSION['is_multi_query'] = false; $displayResultsObject->setProperties( $unlim_num_rows, $fields_meta, $is_count, $is_export, $is_func, @@ -1082,6 +1090,8 @@ $(makeProfilingChart); if (!empty($sql_data) && ($sql_data['valid_queries'] > 1) || $is_procedure) { + $_SESSION['is_multi_query'] = true; + echo getTableHtmlForMultipleQueries( $displayResultsObject, $db, $sql_data, $goto, $pmaThemeImage, $text_dir, $printview, $url_query, $disp_mode, $sql_limit_to_append @@ -1089,6 +1099,8 @@ $(makeProfilingChart); } else { + $_SESSION['is_multi_query'] = false; + $displayResultsObject->setProperties( $unlim_num_rows, $fields_meta, $is_count, $is_export, $is_func, $is_analyse, $num_rows, $fields_cnt, $querytime, $pmaThemeImage, $text_dir, @@ -1164,6 +1176,8 @@ $(makeProfilingChart); } } // end rows returned +$_SESSION['is_multi_query'] = false; + /** * Displays the footer */ @@ -1312,53 +1326,64 @@ function getTableHtmlForMultipleQueries( do { - // Initialize needed params related to each query + $analyzed_sql = array(); + $is_affected = false; - // Use query can change the database - if (stripos($sql_data['valid_sql'][$sql_no], "use ")) { - $db = PMA_getNewDatabase($sql_data['valid_sql'][$sql_no], $databases_array); - } - - $table = PMA_getTableNameBySQL($sql_data['valid_sql'][$sql_no], $tables_array); $result = PMA_DBI_store_result(); - $fields_meta = PMA_DBI_get_fields_meta($result); + $fields_meta = ($result !== false) ? PMA_DBI_get_fields_meta($result) : array(); $fields_cnt = count($fields_meta); - $parsed_sql = PMA_SQP_parse($sql_data['valid_sql'][$sql_no]); - - $analyzed_sql = PMA_SQP_analyze($parsed_sql); - $is_select = isset($analyzed_sql[0]['queryflags']['select_from']); - $unlim_num_rows = PMA_Table::countRecords($db, $table, $force_exact = true); - $showtable = PMA_Table::sGetStatusInfo($db, $table, null, true); - $url_query = PMA_generate_common_url($db, $table); - - list($is_group, $is_func, $is_count, $is_export, $is_analyse, - $is_explain, $is_delete, $is_affected, $is_insert, $is_replace, - $is_show, $is_maint) - = PMA_getDisplayPropertyParams( - $sql_data['valid_sql'][$sql_no], $is_select - ); - - // Handle remembered sorting order, only for single table query - if ($GLOBALS['cfg']['RememberSorting'] - && ! ($is_count || $is_export || $is_func || $is_analyse) - && isset($analyzed_sql[0]['select_expr']) - && (count($analyzed_sql[0]['select_expr']) == 0) - && isset($analyzed_sql[0]['queryflags']['select_from']) - && count($analyzed_sql[0]['table_ref']) == 1 - ) { - PMA_handleSortOrder($db, $table, $analyzed_sql, $sql_data['valid_sql'][$sql_no]); - } - // Do append a "LIMIT" clause? - if (($_SESSION['tmp_user_values']['max_rows'] != 'all') - && ! ($is_count || $is_export || $is_func || $is_analyse) - && isset($analyzed_sql[0]['queryflags']['select_from']) - && ! isset($analyzed_sql[0]['queryflags']['offset']) - && empty($analyzed_sql[0]['limit_clause']) - ) { - $sql_data['valid_sql'][$sql_no] = PMA_getSqlWithLimitClause( - $sql_data['valid_sql'][$sql_no], $analyzed_sql, $sql_limit_to_append - ); + // Initialize needed params related to each query in multiquery statement + if (isset($sql_data['valid_sql'][$sql_no])) { + + // 'Use' query can change the database + if (stripos($sql_data['valid_sql'][$sql_no], "use ")) { + $db = PMA_getNewDatabase($sql_data['valid_sql'][$sql_no], $databases_array); + } + $parsed_sql = PMA_SQP_parse($sql_data['valid_sql'][$sql_no]); + $table = PMA_getTableNameBySQL($sql_data['valid_sql'][$sql_no], $tables_array); + + $analyzed_sql = PMA_SQP_analyze($parsed_sql); + $is_select = isset($analyzed_sql[0]['queryflags']['select_from']); + $unlim_num_rows = PMA_Table::countRecords($db, $table, $force_exact = true); + $showtable = PMA_Table::sGetStatusInfo($db, $table, null, true); + $url_query = PMA_generate_common_url($db, $table); + + list($is_group, $is_func, $is_count, $is_export, $is_analyse, + $is_explain, $is_delete, $is_affected, $is_insert, $is_replace, + $is_show, $is_maint) + = PMA_getDisplayPropertyParams( + $sql_data['valid_sql'][$sql_no], $is_select + ); + + // Handle remembered sorting order, only for single table query + if ($GLOBALS['cfg']['RememberSorting'] + && ! ($is_count || $is_export || $is_func || $is_analyse) + && isset($analyzed_sql[0]['select_expr']) + && (count($analyzed_sql[0]['select_expr']) == 0) + && isset($analyzed_sql[0]['queryflags']['select_from']) + && count($analyzed_sql[0]['table_ref']) == 1 + ) { + PMA_handleSortOrder($db, $table, $analyzed_sql, $sql_data['valid_sql'][$sql_no]); + } + + // Do append a "LIMIT" clause? + if (($_SESSION['tmp_user_values']['max_rows'] != 'all') + && ! ($is_count || $is_export || $is_func || $is_analyse) + && isset($analyzed_sql[0]['queryflags']['select_from']) + && ! isset($analyzed_sql[0]['queryflags']['offset']) + && empty($analyzed_sql[0]['limit_clause']) + ) { + $sql_data['valid_sql'][$sql_no] = PMA_getSqlWithLimitClause( + $sql_data['valid_sql'][$sql_no], $analyzed_sql, $sql_limit_to_append + ); + } + + // Set the needed properties related to executing sql query + $displayResultsObject->__set('_db', $db); + $displayResultsObject->__set('_table', $table); + $displayResultsObject->__set('_goto', $goto); + } if (! $is_affected) { @@ -1367,41 +1392,37 @@ function getTableHtmlForMultipleQueries( $num_rows = @PMA_DBI_affected_rows(); } + if (isset($sql_data['valid_sql'][$sql_no])) { + + $displayResultsObject->__set('_sql_query', $sql_data['valid_sql'][$sql_no]); + $displayResultsObject->setProperties( + $unlim_num_rows, $fields_meta, $is_count, $is_export, $is_func, + $is_analyse, $num_rows, $fields_cnt, $querytime, $pmaThemeImage, $text_dir, + $is_maint, $is_explain, $is_show, $showtable, $printview, $url_query + ); + + } + if ($num_rows == 0) { continue; } - - // Set the needed properties related to executing sql query - $displayResultsObject->__set('_db', $db); - $displayResultsObject->__set('_table', $table); - $displayResultsObject->__set('_goto', $goto); - $displayResultsObject->__set('_sql_query', $sql_data['valid_sql'][$sql_no]); - $displayResultsObject->setProperties( - $unlim_num_rows, $fields_meta, $is_count, $is_export, $is_func, - $is_analyse, $num_rows, $fields_cnt, $querytime, $pmaThemeImage, $text_dir, - $is_maint, $is_explain, $is_show, $showtable, $printview, $url_query - ); - // With multiple results, operations are limied $disp_mode = 'nnnn000000'; $is_limited_display = true; - + // Collect the tables $table_html .= $displayResultsObject->getTable( $result, $disp_mode, $analyzed_sql, $is_limited_display ); - $sql_no++; - + // Free the result to save the memory PMA_DBI_free_result($result); - if (! PMA_DBI_more_results()) { - break; - } + $sql_no++; + + } while (PMA_DBI_more_results() && PMA_DBI_next_result()); - } while (PMA_DBI_next_result()); - return $table_html; } diff --git a/tbl_get_field.php b/tbl_get_field.php deleted file mode 100644 index 8d6d80aa3c..0000000000 --- a/tbl_get_field.php +++ /dev/null @@ -1,52 +0,0 @@ -checkParameters( - array('db', 'table', 'where_clause', 'transform_key') -); - -/* Select database */ -if (!PMA_DBI_select_db($db)) { - $common_functions->mysqlDie( - sprintf(__('\'%s\' database does not exist.'), htmlspecialchars($db)), - '', '' - ); -} - -/* Check if table exists */ -if (!PMA_DBI_get_columns($db, $table)) { - $common_functions->mysqlDie(__('Invalid table name')); -} - -/* Grab data */ -$sql = 'SELECT ' . $common_functions->backquote($transform_key) . ' FROM ' . $common_functions->backquote($table) . ' WHERE ' . $where_clause . ';'; -$result = PMA_DBI_fetch_value($sql); - -/* Check return code */ -if ($result === false) { - $common_functions->mysqlDie(__('MySQL returned an empty result set (i.e. zero rows).'), $sql); -} - -/* Avoid corrupting data */ -@ini_set('url_rewriter.tags', ''); - -PMA_downloadHeader( - $table . '-' . $transform_key . '.bin', - PMA_detectMIME($result), - strlen($result) -); -echo $result; -?> diff --git a/tbl_gis_visualization.php b/tbl_gis_visualization.php index 73ea8210ab..3f05989c77 100644 --- a/tbl_gis_visualization.php +++ b/tbl_gis_visualization.php @@ -90,11 +90,14 @@ if (isset($_REQUEST['saveToFile'])) { exit(); } -$svg_support = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER <= 8) ? false : true; +$svg_support = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER <= 8) + ? false : true; $format = $svg_support ? 'svg' : 'png'; // get the chart and settings after chart generation -$visualization = PMA_GIS_visualizationResults($data, $visualizationSettings, $format); +$visualization = PMA_GIS_visualizationResults( + $data, $visualizationSettings, $format +); /** * Displays the page diff --git a/tbl_indexes.php b/tbl_indexes.php index 2f5fd72fe2..d569f7443f 100644 --- a/tbl_indexes.php +++ b/tbl_indexes.php @@ -22,7 +22,7 @@ foreach (PMA_DBI_get_columns_full($db, $table) as $row) { $tmp[2] = substr( preg_replace('@([^,])\'\'@', '\\1\\\'', ',' . $tmp[2]), 1 ); - $fields[$row['Field']] = $tmp[1] . '(' + $fields[$row['Field']] = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')'; } else { $fields[$row['Field']] = $row['Type']; @@ -50,39 +50,41 @@ if (isset($_REQUEST['do_save_data'])) { $error = false; // $sql_query is the one displayed in the query box - $sql_query = 'ALTER TABLE ' . $common_functions->backquote($db) . '.' . $common_functions->backquote($table); + $sql_query = 'ALTER TABLE ' . $common_functions->backquote($db) + . '.' . $common_functions->backquote($table); // Drops the old index if (! empty($_REQUEST['old_index'])) { if ($_REQUEST['old_index'] == 'PRIMARY') { $sql_query .= ' DROP PRIMARY KEY,'; } else { - $sql_query .= ' DROP INDEX ' + $sql_query .= ' DROP INDEX ' . $common_functions->backquote($_REQUEST['old_index']) . ','; } } // end if // Builds the new one switch ($index->getType()) { - case 'PRIMARY': - if ($index->getName() == '') { - $index->setName('PRIMARY'); - } elseif ($index->getName() != 'PRIMARY') { - $error = PMA_Message::error(__( - 'The name of the primary key must be "PRIMARY"!')); - } - $sql_query .= ' ADD PRIMARY KEY'; - break; - case 'FULLTEXT': - case 'UNIQUE': - case 'INDEX': - case 'SPATIAL': - if ($index->getName() == 'PRIMARY') { - $error = PMA_Message::error(__('Can\'t rename index to PRIMARY!')); - } - $sql_query .= ' ADD ' . $index->getType() . ' ' - . ($index->getName() ? $common_functions->backquote($index->getName()) : ''); - break; + case 'PRIMARY': + if ($index->getName() == '') { + $index->setName('PRIMARY'); + } elseif ($index->getName() != 'PRIMARY') { + $error = PMA_Message::error( + __('The name of the primary key must be "PRIMARY"!') + ); + } + $sql_query .= ' ADD PRIMARY KEY'; + break; + case 'FULLTEXT': + case 'UNIQUE': + case 'INDEX': + case 'SPATIAL': + if ($index->getName() == 'PRIMARY') { + $error = PMA_Message::error(__('Can\'t rename index to PRIMARY!')); + } + $sql_query .= ' ADD ' . $index->getType() . ' ' + . ($index->getName() ? $common_functions->backquote($index->getName()) : ''); + break; } // end switch $index_fields = array(); @@ -103,8 +105,9 @@ if (isset($_REQUEST['do_save_data'])) { if (! $error) { PMA_DBI_query($sql_query); - $message = PMA_Message::success(__( - 'Table %1$s has been altered successfully')); + $message = PMA_Message::success( + __('Table %1$s has been altered successfully') + ); $message->addParam($table); if ($GLOBALS['is_ajax_request'] == true) { @@ -161,8 +164,8 @@ if (isset($_REQUEST['index']) && is_array($_REQUEST['index'])) { ?>
onsubmit="if (typeof(this.elements['index[Key_name]'].disabled) != 'undefined') { this.elements['index[Key_name]'].disabled = false}"> @@ -249,16 +252,16 @@ foreach ($index->getColumns() as $column) { $field_type) { - if (($index->getType() != 'FULLTEXT' + if (($index->getType() != 'FULLTEXT' || preg_match('/(char|text)/i', $field_type)) - && ($index->getType() != 'SPATIAL' + && ($index->getType() != 'SPATIAL' || in_array($field_type, $spatial_types)) ) { echo '' . "\n"; } @@ -285,7 +288,7 @@ for ($i = 0; $i < $add_fields; $i++) { $field_type) { echo '' . "\n"; } // end foreach $fields diff --git a/tbl_move_copy.php b/tbl_move_copy.php index 5309fa689d..1947144bf8 100644 --- a/tbl_move_copy.php +++ b/tbl_move_copy.php @@ -58,13 +58,17 @@ if (PMA_isValid($_REQUEST['new_name'])) { } else { $message = PMA_Message::success(__('Table %s has been copied to %s.')); } - $old = $common_functions->backquote($db) . '.' . $common_functions->backquote($table); + $old = $common_functions->backquote($db) . '.' + . $common_functions->backquote($table); $message->addParam($old); - $new = $common_functions->backquote($_REQUEST['target_db']) . '.' . $common_functions->backquote($_REQUEST['new_name']); + $new = $common_functions->backquote($_REQUEST['target_db']) . '.' + . $common_functions->backquote($_REQUEST['new_name']); $message->addParam($new); /* Check: Work on new table or on old table? */ - if (isset($_REQUEST['submit_move']) || PMA_isValid($_REQUEST['switch_to_new'])) { + if (isset($_REQUEST['submit_move']) + || PMA_isValid($_REQUEST['switch_to_new']) + ) { $db = $_REQUEST['target_db']; $table = $_REQUEST['new_name']; } diff --git a/tbl_relation.php b/tbl_relation.php index 96e7942a0e..21106a297a 100644 --- a/tbl_relation.php +++ b/tbl_relation.php @@ -5,11 +5,14 @@ * * includes phpMyAdmin relations and InnoDB relations * - * @todo fix name handling: currently names with dots (.) are not properly handled for internal relations (but foreign keys relations are correct) + * @todo fix name handling: currently names with dots (.) are not properly handled + * for internal relations (but foreign keys relations are correct) * @todo foreign key constraints require both fields being of equal type and size * @todo check foreign fields to be from same type and size, all other makes no sense - * @todo add an link to create an index required for constraints, or an option to do automatically - * @todo if above todos are fullfilled we can add all fields meet requirements in the select dropdown + * @todo add an link to create an index required for constraints, + * or an option to do automatically + * @todo if above todos are fullfilled we can add all fields meet requirements + * in the select dropdown * @package PhpMyAdmin */ @@ -108,7 +111,9 @@ function PMA_backquote_split($text) if (false === $first_backquote || false === $second_backquote) { break; } - $elements[] = substr($text, $first_backquote, $second_backquote - $first_backquote + 1); + $elements[] = substr( + $text, $first_backquote, $second_backquote - $first_backquote + 1 + ); $pos = $second_backquote + 1; } return($elements); @@ -361,15 +366,15 @@ if ($cfgRelation['relwork'] // same engine. if ($common_functions->isForeignKeySupported($tbl_storage_engine)) { - $tab_query = 'SHOW TABLE STATUS FROM ' . $common_functions->backquote($db); + $tab_query = 'SHOW TABLE STATUS FROM ' . $common_functions->backquote($db); // [0] of the row is the name // [1] is the type } else { - $tab_query = 'SHOW TABLES FROM ' . $common_functions->backquote($db); + $tab_query = 'SHOW TABLES FROM ' . $common_functions->backquote($db); // [0] of the row is the name } - $tab_rs = PMA_DBI_query($tab_query, null, PMA_DBI_QUERY_STORE); + $tab_rs = PMA_DBI_query($tab_query, null, PMA_DBI_QUERY_STORE); $selectboxall[] = ''; $selectboxall_foreign[] = ''; @@ -377,7 +382,10 @@ if ($cfgRelation['relwork'] $current_table = new PMA_Table($curr_table[0], $db); // explicitely ask for non-quoted list of indexed columns - $selectboxall = array_merge($selectboxall, $current_table->getUniqueColumns($backquoted = false)); + $selectboxall = array_merge( + $selectboxall, + $current_table->getUniqueColumns($backquoted = false) + ); // if foreign keys are supported, collect all keys from other // tables of the same engine @@ -387,7 +395,10 @@ if ($cfgRelation['relwork'] ) { // explicitely ask for non-quoted list of indexed columns // need to obtain backquoted values to support dots inside values - $selectboxall_foreign = array_merge($selectboxall_foreign, $current_table->getIndexedColumns($backquoted = true)); + $selectboxall_foreign = array_merge( + $selectboxall_foreign, + $current_table->getIndexedColumns($backquoted = true) + ); } } // end while over tables } // end if diff --git a/tbl_structure.php b/tbl_structure.php index 92ad9e1473..c84c9cf56a 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -65,7 +65,8 @@ if (! empty($submit_mult) && isset($_REQUEST['selected_fld'])) { // what is this htmlspecialchars() for?? //$sql_query .= ' FROM ' . backquote(htmlspecialchars($table)); - $sql_query .= ' FROM ' . $common_functions->backquote($db) . '.' . $common_functions->backquote($table); + $sql_query .= ' FROM ' . $common_functions->backquote($db) + . '.' . $common_functions->backquote($table); include 'sql.php'; exit; } else { @@ -733,7 +734,7 @@ if (! $tbl_is_view && 'ARCHIVE' != $tbl_storage_engine ) { echo $common_functions->getDivForSliderEffect('indexes', __('Indexes')); - + /** * Display indexes */ diff --git a/tbl_tracking.php b/tbl_tracking.php index 962ce22738..da28b99b7b 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -55,10 +55,10 @@ if (isset($_REQUEST['report_export'])) { /** * Filters tracking entries * - * @param array the entries to filter - * @param string "from" date - * @param string "to" date - * @param string users + * @param array $data the entries to filter + * @param string $filter_ts_from "from" date + * @param string $filter_ts_to "to" date + * @param string $filter_users users * * @return array filtered entries */ diff --git a/test/classes/PMA_DBQbe_test.php b/test/classes/PMA_DBQbe_test.php new file mode 100644 index 0000000000..55ffb4a1b7 --- /dev/null +++ b/test/classes/PMA_DBQbe_test.php @@ -0,0 +1,400 @@ +object = $this->getMockForAbstractClass('PMA_DBQbe', array('pma')); + } + + /** + * Tears down the fixture, for example, closes a network connection. + * This method is called after a test is executed. + * + * @access protected + * @return void + */ + protected function tearDown() + { + unset($this->object); + } + + /** + * Call protected functions by making the visibitlity to public. + * + * @param string $name method name + * @param array $params parameters for the invocation + * + * @return the output from the protected method. + */ + private function _callProtectedFunction($name, $params) + { + $class = new ReflectionClass('PMA_DBQbe'); + $method = $class->getMethod($name); + $method->setAccessible(true); + return $method->invokeArgs($this->object, $params); + } + + /** + * Test for getCommonFunctions + */ + public function testGetCommonFunctions(){ + $this->assertTrue($this->object->getCommonFunctions() instanceof PMA_CommonFunctions); + } + + /** + * Test for _getSortSelectCell + */ + public function testGetSortSelectCell(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getSortSelectCell', + array(1) + ), + '' + ); + } + + /** + * Test for _getSortRow + */ + public function testGetSortRow(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getSortRow', + array() + ), + 'Sort:' + ); + } + + /** + * Test for _getShowRow + */ + public function testGetShowRow(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getShowRow', + array() + ), + 'Show:' + ); + } + + /** + * Test for _getCriteriaInputboxRow + */ + public function testGetCriteriaInputboxRow(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getCriteriaInputboxRow', + array() + ), + 'Criteria:' + ); + } + + /** + * Test for _getFootersOptions + */ + public function testGetFootersOptions(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getFootersOptions', + array('row') + ), + '
Add/Delete criteria rows:
' + ); + } + + /** + * Test for _getTableFooters + */ + public function testGetTableFooters(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getTableFooters', + array() + ), + '
Add/Delete criteria rows:
Add/Delete columns:
' + ); + } + + /** + * Test for _getAndOrColCell + */ + public function testGetAndOrColCell(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getAndOrColCell', + array(1) + ), + 'Or:  And:
Ins  Del' + ); + } + + /** + * Test for _getModifyColumnsRow + */ + public function testGetModifyColumnsRow(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getModifyColumnsRow', + array() + ), + 'Modify:Or:  And:
Ins  DelOr:  And:
Ins  DelOr:  And:
Ins  Del' + ); + } + + /** + * Test for _getInsDelAndOrCell + */ + public function testGetInsDelAndOrCell(){ + $GLOBALS['cell_align_right'] = 'cellAlign'; + $this->assertEquals( + $this->_callProtectedFunction( + '_getInsDelAndOrCell', + array(3, 'checked') + ), + '
Ins:And:
Del:Or:
' + ); + } + + /** + * Test for _getInputboxRow + */ + public function testGetInputboxRow(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getInputboxRow', + array(2,3) + ), + '' + ); + } + + /** + * Test for _getInsDelAndOrCriteriaRows + */ + public function testGetInsDelAndOrCriteriaRows(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getInsDelAndOrCriteriaRows', + array(2,3) + ), + '
Ins:And:
Del:Or:
' + ); + } + + /** + * Test for _getSelectClause + */ + public function testGetSelectClause(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getSelectClause', + array() + ), + '' + ); + } + + /** + * Test for _getWhereClause + */ + public function testGetWhereClause(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getWhereClause', + array() + ), + '' + ); + } + + /** + * Test for _getOrderByClause + */ + public function testGetOrderByClause(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getOrderByClause', + array() + ), + '' + ); + } + + /** + * Test for _getIndexes + */ + public function testGetIndexes(){ + if (! function_exists('PMA_DBI_get_table_indexes')) { + function PMA_DBI_get_table_indexes() + { + return array(2,3); + } + } + $this->assertEquals( + $this->_callProtectedFunction( + '_getIndexes', + array( + array('table1','table2'), + array('column1', 'column2', 'column3'), + array('column2') + ) + ), + array( + 'unique' => array(), + 'index' => array() + ) + ); + } + + /** + * Test for _getLeftJoinColumnCandidates + */ + public function test_getLeftJoinColumnCandidates(){ + if (! function_exists('PMA_DBI_select_db')) { + function PMA_DBI_select_db() + { + return 'pma'; + } + } + $this->assertEquals( + $this->_callProtectedFunction( + '_getLeftJoinColumnCandidates', + array( + array('table1','table2'), + array('column1', 'column2', 'column3'), + array('column2') + ) + ), + array( + 0 => 'column2' + ) + ); + } + + /** + * Test for _getMasterTable + */ + public function test_getMasterTable(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getMasterTable', + array( + array('table1','table2'), + array('column1', 'column2', 'column3'), + array('column2'), + array('pma') + ) + ), + 0 + ); + } + + /** + * Test for _getWhereClauseTablesAndColumns + */ + public function test_getWhereClauseTablesAndColumns(){ + $_POST['criteriaColumn'] = array('table1.id', 'table1.value', 'table1.name', 'table1.deleted'); + $this->assertEquals( + $this->_callProtectedFunction( + '_getWhereClauseTablesAndColumns', + array() + ), + array( + 'where_clause_tables' => array(), + 'where_clause_columns' => array() + ) + ); + } + + /** + * Test for _getFromClause + */ + public function testGetFromClause(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getFromClause', + array('relation') + ), + '`table1`' + ); + } + + /** + * Test for _getSQLQuery + */ + public function test_getSQLQuery(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getSQLQuery', + array('relation') + ), + 'FROM `table1` +' + ); + } +} diff --git a/test/classes/PMA_DbSearch_test.php b/test/classes/PMA_DbSearch_test.php new file mode 100644 index 0000000000..cf88afc0fb --- /dev/null +++ b/test/classes/PMA_DbSearch_test.php @@ -0,0 +1,203 @@ +object = $this->getMockForAbstractClass('PMA_DbSearch', array('pma')); + } + + /** + * Tears down the fixture, for example, closes a network connection. + * This method is called after a test is executed. + * + * @access protected + * @return void + */ + protected function tearDown() + { + unset($this->object); + } + + /** + * Call protected functions by making the visibitlity to public. + * + * @param string $name method name + * @param array $params parameters for the invocation + * + * @return the output from the protected method. + */ + private function _callProtectedFunction($name, $params) + { + $class = new ReflectionClass('PMA_DbSearch'); + $method = $class->getMethod($name); + $method->setAccessible(true); + return $method->invokeArgs($this->object, $params); + } + + /** + * Test for getCommonFunctions + */ + public function testGetCommonFunctions(){ + $this->assertTrue($this->object->getCommonFunctions() instanceof PMA_CommonFunctions); + } + + /** + * Test for _getSearchSqls + */ + public function testGetSearchSqls(){ + + $GLOBALS['db'] = 'pma'; + if (! function_exists('PMA_DBI_get_columns')) { + function PMA_DBI_get_columns() + { + return array( + 'column1', + 'column2' + ); + } + } + + $this->assertEquals( + $this->_callProtectedFunction( + '_getSearchSqls', + array('table1') + ), + array ( + 'select_columns' => 'SELECT * FROM `pma`.`table1` WHERE FALSE', + 'select_count' => 'SELECT COUNT(*) AS `count` FROM `pma`.`table1` WHERE FALSE', + 'delete' => 'DELETE FROM `pma`.`table1` WHERE FALSE' + ) + ); + } + + /** + * Test for getSearchResults + */ + public function testGetSearchResults(){ + $this->assertEquals( + $this->object->getSearchResults(), + '
Search results for "" :
' + ); + } + + /** + * Test for _getResultsRow + * @param string $each_table Tables on which search is to be performed + * @param array $newsearchsqls Contains SQL queries + * @param bool $odd_row For displaying contrasting table rows + * @param $output + * + * @dataProvider providerForTestGetResultsRow + */ + public function testGetResultsRow($each_table, $newsearchsqls, $odd_row, $output){ + + if (! function_exists('PMA_DBI_fetch_value')) { + function PMA_DBI_fetch_value() + { + return 2; + } + } + $GLOBALS['cfg']['AjaxEnable'] = true; + $this->assertEquals( + $this->_callProtectedFunction( + '_getResultsRow', + array($each_table, $newsearchsqls, $odd_row) + ), + $output + ); + } + + /** + * @return array provider for testGetResultsRow + */ + public function providerForTestGetResultsRow(){ + return array( + array( + 'table1', + array( + 'SELECT * FROM `pma`.`table1` WHERE FALSE', + 'SELECT COUNT(*) AS `count` FROM `pma`.`table1` WHERE FALSE', + 'select_count' => 2, + 'select_columns' => 'column1', + 'delete' => 'column2' + ), + true, + '2 matches in table1BrowseDelete' + ) + ); + } + + /** + * Test for getSelectionForm + */ + public function testGetSelectionForm(){ + $_SESSION[' PMA_token '] = 'token'; + $_SESSION['PMA_Theme'] = new PMA_Theme(); + $GLOBALS['pmaThemeImage'] = 'themes/dot.gif'; + $url_params = array('param1', 'param2'); + $this->assertEquals( + $this->object->getSelectionForm($url_params), + '
Search in database
Words or values to search for (wildcard: "%"):
Find: +
+ +
+ +
+ +
+
Inside tables:
Select All  / Unselect All
Inside column:

' + ); + } + + /** + * Test for _getResultDivs + */ + public function testGetResultDivs(){ + $this->assertEquals( + $this->_callProtectedFunction( + '_getResultDivs', + array() + ), + '

' + ); + } + +} From 49c110b90ef4bce97727b5f3be2e2af11a94c179 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Tue, 31 Jul 2012 16:46:37 +0530 Subject: [PATCH 35/79] remove a white sapce --- libraries/operations.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 9eaf38ea41..96238da802 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -597,7 +597,7 @@ function PMA_getHtmlForOrderTheTable($columns) . ' ' . __('(singly)') From e153b076c67e758524b12d8b13599f03b50ee95d Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Tue, 31 Jul 2012 16:53:59 +0530 Subject: [PATCH 36/79] Typo --- libraries/operations.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 96238da802..dd96cae952 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -667,7 +667,7 @@ function PMA_getHtmlForMoveTable() } /** - * Get the HTML div for Table opption + * Get the HTML div for Table option * * @param string $comment Comment * @param array $tbl_collation table collation From a7b2b663e03bc3ee34c573898afdbd7bb0e641b4 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Tue, 31 Jul 2012 21:48:14 +0530 Subject: [PATCH 37/79] further refactoring for PMA_getHtmlForTableMaintenance() --- libraries/operations.lib.php | 85 +++++++++++++++++++++++++----------- tbl_operations.php | 2 +- 2 files changed, 60 insertions(+), 27 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index dd96cae952..8d2c4e5264 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1018,6 +1018,16 @@ function PMA_getHtmlForCopytable() return $html_output; } +/** + * Get HTML snippet for table maintaince + * + * @param boolean $is_myisam_or_aria whether MYISAM | ARIA or not + * @param boolean $is_innodb whether innodb or not + * @param boolean $is_berkeleydb whether berkeleydb or not + * @param array $url_params array of URL parameters + * + * @return string $html_output + */ function PMA_getHtmlForTableMaintenance( $is_myisam_or_aria, $is_innodb, $is_berkeleydb, $url_params ) { @@ -1030,6 +1040,33 @@ function PMA_getHtmlForTableMaintenance( . ($GLOBALS['cfg']['AjaxEnable'] ? ' class="ajax"' : '') .'>'; // Note: BERKELEY (BDB) is no longer supported, starting with MySQL 5.1 + $html_output .= PMA_getListofMaintainActionLink($is_myisam_or_aria, + $is_innodb, $url_params, $is_berkeleydb + ); + + $html_output .= '' + . '' + . '
'; + + return $html_output; +} + +/** + * Get HTML 'li' having a link of maintain action + * + * @param boolean $is_myisam_or_aria whether MYISAM | ARIA or not + * @param boolean $is_innodb whether innodb or not + * @param array $url_params array of URL parameters + * @param boolean $is_berkeleydb whether berkeleydb or not + * + * @return string $html_output + */ +function PMA_getListofMaintainActionLink($is_myisam_or_aria, + $is_innodb, $url_params, $is_berkeleydb +) { + $common_functions = PMA_CommonFunctions::getInstance(); + $html_output = ''; + if ($is_myisam_or_aria || $is_innodb || $is_berkeleydb) { if ($is_myisam_or_aria || $is_innodb) { $this_url_params = array_merge( @@ -1045,14 +1082,14 @@ function PMA_getHtmlForTableMaintenance( . 'href="tbl_operations.php' . PMA_generate_common_url($this_url_params) .'">' . __('Check table') - . ''; - $html_output .= $common_functions->showMySQLDocu( - 'MySQL_Database_Administration', - 'CHECK_TABLE' - ); - $html_output .= ''; + . '' + . $common_functions->showMySQLDocu( + 'MySQL_Database_Administration', + 'CHECK_TABLE' + ) + . ''; } - + if ($is_innodb) { $this_url_params = array_merge( $url_params, @@ -1072,7 +1109,7 @@ function PMA_getHtmlForTableMaintenance( ) . ''; } - + if ($is_myisam_or_aria || $is_berkeleydb) { $this_url_params = array_merge( $url_params, @@ -1082,19 +1119,19 @@ function PMA_getHtmlForTableMaintenance( 'table_maintenance' => 'Go', ) ); - $html_output .= '
  • ' - . '' - . __('Analyze table') - . '' - . $common_functions->showMySQLDocu( - 'MySQL_Database_Administration', - 'ANALYZE_TABLE' - ) - . '
  • '; + $html_output .= '
  • ' + . '' + . __('Analyze table') + . '' + . $common_functions->showMySQLDocu( + 'MySQL_Database_Administration', + 'ANALYZE_TABLE' + ) + . '
  • '; } - + if ($is_myisam_or_aria && !PMA_DRIZZLE) { $this_url_params = array_merge( $url_params, @@ -1115,7 +1152,7 @@ function PMA_getHtmlForTableMaintenance( 'REPAIR_TABLE' ) . ''; - + } if (($is_myisam_or_aria || $is_innodb || $is_berkeleydb) && !PMA_DRIZZLE) { @@ -1127,7 +1164,7 @@ function PMA_getHtmlForTableMaintenance( 'table_maintenance' => 'Go', ) ); - + $html_output .= '
  • ' . ''; /** - * Table mainatenance + * Table maintenance */ echo PMA_getHtmlForTableMaintenance($is_myisam_or_aria, $is_innodb, $is_berkeleydb, $url_params From 0f0c2f1e2b3ece41cc1bb99a9931c8fcc7c917bc Mon Sep 17 00:00:00 2001 From: "J.M" Date: Tue, 31 Jul 2012 23:22:41 +0200 Subject: [PATCH 38/79] - [security] Fixed local path disclosure vulnerability --- ChangeLog | 39 +++++++++++++++++++++------------------ show_config_errors.php | 4 ++++ 2 files changed, 25 insertions(+), 18 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9f0581e090..610bed251c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,9 @@ phpMyAdmin - ChangeLog ====================== +3.5.2.1 (not yet released) +- [security] Fixed local path disclosure vulnerability, see PMASA-2012-3 + 3.5.2.0 (2012-07-07) - bug #3521416 [interface] JS error when editing index - bug #3521313 [core] Call to undefined function __() @@ -107,11 +110,11 @@ phpMyAdmin - ChangeLog + patch #3303195 [interface] Checkbox to have SQL input remain - patch #3472899 [export] Fixed CSV escape for the export - patch #3475424 [import] Fixed CSV escape for the import -- bug #3482734 [interface] No warning on syntax error in search form +- bug #3482734 [interface] No warning on syntax error in search form - bug #3423717 [core] Improved detection of SSL connection + FULLTEXT support for InnoDB, starting with MySQL 5.6.4 - bug #3497151 [interface] Duplicate inline query edit box -- bug #3504567 [mime] Description of the transformation missing in the tooltip +- bug #3504567 [mime] Description of the transformation missing in the tooltip 3.4.11.0 (2012-04-14) - bug #3486970 [import] Exception on XML import @@ -194,7 +197,7 @@ phpMyAdmin - ChangeLog - bug #3403165 [interface] Collation not displayed for long enum fields - bug #3399951 [export] Config for export compression not used - bug #3400690 [privileges] DB-specific privileges won't submit -- bug #3410604 [config] Configuration storage incorrect suggested table name +- bug #3410604 [config] Configuration storage incorrect suggested table name - bug #3383572 [interface] Cannot execute saved query - bug #3411535 [display] Full text button unchecks results display options - bug #3411224 [display] Broken binary column when 'Show binary contents' is not set @@ -221,7 +224,7 @@ phpMyAdmin - ChangeLog - [import] Remove native Excel import modules (xls and xlsx formats) - bug #3392920 [edit] BLOB emptied after editing another column - [security] Fixed XSS in Inline Edit on save action, see PMASA-2011-14 -- [security] Fixed XSS with db/table/column names, see PMASA-2011-14 +- [security] Fixed XSS with db/table/column names, see PMASA-2011-14 3.4.4.0 (2011-08-24) - bug #3323060 [parser] SQL parser breaks AJAX requests if query has unclosed quotes @@ -295,8 +298,8 @@ phpMyAdmin - ChangeLog - [security] Make redirector require valid token 3.4.0.0 (2011-05-11) -+ rfe #2890226 [view] Enable VIEW rename -+ rfe #838637 [privileges] Export a user's privileges ++ rfe #2890226 [view] Enable VIEW rename ++ rfe #838637 [privileges] Export a user's privileges - [core] Updated mootools to fix some glitches with Safari. + rfe #2816943 [interface] Add REGEXP ^...$ to select dialog. + rfe #2924956 [interface] Add insert ignore option to editing row. @@ -315,7 +318,7 @@ phpMyAdmin - ChangeLog + rfe #1186511 [inrerface] Add link to reload navigation frame. + rfe #2936156 [auth] Signon authentication forwards error message through session data. + rfe #2835109 [interface] Move ^1 to the end of message. -+ rfe #854911 [interface] Grey out non applicable actions in structure ++ rfe #854911 [interface] Grey out non applicable actions in structure + [interface] Allow to create new table from navigation frame (in light mode). + rfe #1025696 [browse] Add direct download of binary fields. - [browse] Properly display NULL value for BLOB. @@ -334,13 +337,13 @@ phpMyAdmin - ChangeLog + patch #2948421 [auth] HTTP Basic auth realm name, thanks to Harald Jenny - haraldj - bug #2954916 [interface] Do not insert doc links to not formatted SQL. -+ [lang] Chinese Simplified update, thanks to Shanyan Baishui - rimyxp ++ [lang] Chinese Simplified update, thanks to Shanyan Baishui - rimyxp + [lang] Turkish update, thanks to Burak Yavuz + rfe #2963310 [interface] Focus TEXTAREA "sql_query" on click on "SQL" link + [lang] Uzbek update, thanks to Orzu Samarqandiy + rfe #2958013 [import] After import, also list uploaded filename, thanks to Pavel Konnikov and Herman van Rink -+ patch #2974341 [structure] Clicking on table name in db Structure should ++ patch #2974341 [structure] Clicking on table name in db Structure should Browse the table if possible, thanks to bhdouglass - dougboybhd + patch #2975533 [search] New search operators, thanks to Martynas Mickevičius @@ -349,7 +352,7 @@ phpMyAdmin - ChangeLog - [core] Provide way for vendors to easily change paths to config files. + patch #2979922, rfe #2804874 [interface] Add inline query editing, thanks to Muhammd Adnan. - bug #2966752 [setup] Allow to configure changes tracking in setup script. -+ patch #2981165 [edit] Optionally disable the Type column, ++ patch #2981165 [edit] Optionally disable the Type column, thanks to Brian Douglass - bhdouglass + patch #2984058 [edit] Buttons for quicky creating common SQL queries, thanks to sutharshan. @@ -366,14 +369,14 @@ phpMyAdmin - ChangeLog + rfe #2964518 [interface] Allow to choose servers from configuration for synchronisation. + rfe #2988633 [relation] Improve ON DELETE/ON UPDATE drop-downs -+ rfe #2988629 [relation] Improve labels in relation view ++ rfe #2988629 [relation] Improve labels in relation view + rfe #2983207, patch #2988715 [interface] Use jQuery calendar dialog, thanks to Muhammad Adnan. + [doc] Incorporate synchronisation docs into main document. + [core] Include Content Security Policy HTTP headers. - bug #3004216 [CSS] Field attributes use inline CSS - patch #2999595, rfe #2998130 [interface] Cleanup navigation frame. -- patch #3025161 [core] Prevent sending of unnecessary cookies, +- patch #3025161 [core] Prevent sending of unnecessary cookies, thanks to Piotr Przybylski - crackpl - bug [password] Generate password only available if JS is enabled (fixed for Privileges and Change password) @@ -392,7 +395,7 @@ phpMyAdmin - ChangeLog - [interface] Fixed rendering of error/notice/info titles background. - patch #3038293 [doc] Language and grammar fixes, thanks to Isaac Bennetch - ibennetch -- patch #3038312 [export] JSON export, +- patch #3038312 [export] JSON export, thanks to Hauke Henningsen - blubberkeks152 - rfe #1494550 [interface] Editor for SET/ENUM fields. - rfe #2649375 [interface] Simplified interface to backup/restore. @@ -400,10 +403,10 @@ phpMyAdmin - ChangeLog - [relations] Dropped WYSIWYG-PDF configuration variable. - rfe #806035, #686260 [relations] Export relations to Dia, SVG and others + [interface] Added charts to status tab, profiling page and query results -+ [interface] AJAXification on various pages ++ [interface] AJAXification on various pages - [core] Remove last remaining parts of profiling code which was removed in 2006. - bug #3042665 [parser] Add workaround for MySQL way of handling backtick. -- bug #3056610 [interface] Removed modification options for information_schema +- bug #3056610 [interface] Removed modification options for information_schema + patch #3055886 [config] Add Left frame table filter visibility config option, thanks to eesau - [core] Force generating of new session on login + rfe #1105678 [interface] Drop page-break-before as it is useless for smaller @@ -418,7 +421,7 @@ phpMyAdmin - ChangeLog thanks to garas - garas - bug #3123433 [interface] Avoid double escaping of MySQL errors. - [interface] Use less noisy message and remove disable link on server charts and database statistics. -+ rfe #3141330 [relation] When displaying results, show a link to the foreign ++ rfe #3141330 [relation] When displaying results, show a link to the foreign table even when phpMyAdmin configuration storage is not active - bug #3141327 [relation] Foreign key input options - [export] Better handling of export to PHP array. @@ -458,8 +461,8 @@ phpMyAdmin - ChangeLog - patch #3147400 [structure] Aria table size printed as unknown, thanks to erickoh75 - erickoh75 - patch #3150164 [structure] Ordering by size gives incorrect results, - thanks to Madhura Jayaratne - madhuracj -- bug #3153409 [core] 0 row(s) affected + thanks to Madhura Jayaratne - madhuracj +- bug #3153409 [core] 0 row(s) affected - bug #3155842 [core] Edit relational page and page number - [security] Minor security fixes, see PMASA-2010-9 and PMASA-2010-10 - [lang] German update, thanks to to jannicars@users.sourceforge.net. diff --git a/show_config_errors.php b/show_config_errors.php index d541c3ce2c..04ee739c71 100644 --- a/show_config_errors.php +++ b/show_config_errors.php @@ -6,6 +6,10 @@ * @package PhpMyAdmin */ +// we need the common loader for the PMA_no_cache_header function +define('PMA_MINIMUM_COMMON', 1); +require './libraries/common.inc.php'; + $GLOBALS['now'] = gmdate('D, d M Y H:i:s') . ' GMT'; PMA_no_cache_header(); header('Content-Type: text/html; charset=utf-8'); From 90449e6ba69e234a3f43a521b8a7e41f3257e818 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Wed, 1 Aug 2012 07:20:37 +0530 Subject: [PATCH 39/79] further refactoring for PMA_getListofMaintainActionLink() --- libraries/operations.lib.php | 204 ++++++++++++++++------------------- 1 file changed, 90 insertions(+), 114 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 8d2c4e5264..a085fd5219 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1019,7 +1019,7 @@ function PMA_getHtmlForCopytable() } /** - * Get HTML snippet for table maintaince + * Get HTML snippet for table maintence * * @param boolean $is_myisam_or_aria whether MYISAM | ARIA or not * @param boolean $is_innodb whether innodb or not @@ -1069,140 +1069,116 @@ function PMA_getListofMaintainActionLink($is_myisam_or_aria, if ($is_myisam_or_aria || $is_innodb || $is_berkeleydb) { if ($is_myisam_or_aria || $is_innodb) { - $this_url_params = array_merge( + $params = array( + 'sql_query' => 'CHECK TABLE ' + . $common_functions->backquote($GLOBALS['table']), + 'table_maintenance' => 'Go', + ); + $html_output .= PMA_getMaitainActionlink( + 'Check table', + $params, $url_params, - array( - 'sql_query' => 'CHECK TABLE ' - . $common_functions->backquote($GLOBALS['table']), - 'table_maintenance' => 'Go', - ) - ); - $html_output .= '
  • ' - . '' - . __('Check table') - . '' - . $common_functions->showMySQLDocu( - 'MySQL_Database_Administration', - 'CHECK_TABLE' - ) - . '
  • '; + 'CHECK_TABLE' + ); } - if ($is_innodb) { - $this_url_params = array_merge( + $params = array( + 'sql_query' => 'ALTER TABLE ' + . $common_functions->backquote($GLOBALS['table']) + . ' ENGINE = InnoDB;' + ); + $html_output .= PMA_getMaitainActionlink( + 'Defragment table', + $params, $url_params, - array('sql_query' => 'ALTER TABLE ' - . $common_functions->backquote($GLOBALS['table']) - . ' ENGINE = InnoDB;' - ) - ); - $html_output .= '
  • ' - . '' - . __('Defragment table') - . '' - . $common_functions->showMySQLDocu( - 'Table_types', - 'InnoDB_File_Defragmenting' - ) - . '
  • '; + 'InnoDB_File_Defragmenting', + 'Table_types' + ); } - if ($is_myisam_or_aria || $is_berkeleydb) { - $this_url_params = array_merge( + $params = array( + 'sql_query' => 'ANALYZE TABLE ' + . $common_functions->backquote($GLOBALS['table']), + 'table_maintenance' => 'Go', + ); + $html_output .= PMA_getMaitainActionlink( + 'Analyze table', + $params, $url_params, - array( - 'sql_query' => 'ANALYZE TABLE ' - . $common_functions->backquote($GLOBALS['table']), - 'table_maintenance' => 'Go', - ) - ); - $html_output .= '
  • ' - . '' - . __('Analyze table') - . '' - . $common_functions->showMySQLDocu( - 'MySQL_Database_Administration', - 'ANALYZE_TABLE' - ) - . '
  • '; + 'ANALYZE_TABLE' + ); } - if ($is_myisam_or_aria && !PMA_DRIZZLE) { - $this_url_params = array_merge( + $params = array( + 'sql_query' => 'REPAIR TABLE ' + . $common_functions->backquote($GLOBALS['table']), + 'table_maintenance' => 'Go', + ); + $html_output .= PMA_getMaitainActionlink( + 'Repair table', + $params, $url_params, - array( - 'sql_query' => 'REPAIR TABLE ' - . $common_functions->backquote($GLOBALS['table']), - 'table_maintenance' => 'Go', - ) - ); - $html_output .= '
  • ' - . '' - . __('Repair table') - . '' - . $common_functions->showMySQLDocu( - 'MySQL_Database_Administration', - 'REPAIR_TABLE' - ) - . '
  • '; - + 'REPAIR_TABLE' + ); } - if (($is_myisam_or_aria || $is_innodb || $is_berkeleydb) && !PMA_DRIZZLE) { - $this_url_params = array_merge( + $params = array( + 'sql_query' => 'OPTIMIZE TABLE ' + . $common_functions->backquote($GLOBALS['table']), + 'table_maintenance' => 'Go', + ); + $html_output .= PMA_getMaitainActionlink( + 'Optimize table', + $params, $url_params, - array( - 'sql_query' => 'OPTIMIZE TABLE ' - . $common_functions->backquote($GLOBALS['table']), - 'table_maintenance' => 'Go', - ) - ); - - $html_output .= '
  • ' - . '' - . __('Optimize table') - . '' - . $common_functions->showMySQLDocu( - 'MySQL_Database_Administration', 'OPTIMIZE_TABLE' - ) - . '
  • '; + ); } } // end MYISAM or BERKELEYDB case - $this_url_params = array_merge( - $url_params, - array( - 'sql_query' => 'FLUSH TABLE ' - . $common_functions->backquote($GLOBALS['table']), - 'message_to_show' => sprintf( - __('Table %s has been flushed'), - htmlspecialchars($GLOBALS['table']) - ), - 'reload' => 1, - ) + $params = array( + 'sql_query' => 'FLUSH TABLE ' + . $common_functions->backquote($GLOBALS['table']), + 'message_to_show' => sprintf( + __('Table %s has been flushed'), + htmlspecialchars($GLOBALS['table']) + ), + 'reload' => 1, ); - $html_output .= '
  • ' - . __('Flush the table (FLUSH)') - . '' - . $common_functions->showMySQLDocu( - 'MySQL_Database_Administration' - , 'FLUSH' - ) - . '
  • '; + $html_output .= PMA_getMaitainActionlink( + 'Flush the table (FLUSH)', + $params, + $url_params, + 'FLUSH' + ); return $html_output; } +/** + * Get maintain action HTML link + * + * @param array $params url parameters array + * @param string $link contains name of page/anchor that is being linked + * @param string $chapter chapter of "HTML, one page per chapter" documentation + * + * @return string $html_output + */ +function PMA_getMaitainActionlink($action, $params, $url_params, $link, + $chapter = 'MySQL_Database_Administration' +) { + return '
  • ' + . '' + . __($action) + . '' + . PMA_CommonFunctions::getInstance()->showMySQLDocu( + $chapter, + $link + ) + . '
  • '; +} + ?> From 83401195710de736dc6217f885313b5dad9071ae Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Wed, 1 Aug 2012 13:52:49 +0530 Subject: [PATCH 40/79] further refactoring for PMA_getTableOptionFieldset() --- libraries/operations.lib.php | 84 +++++++++++++++++++----------------- 1 file changed, 45 insertions(+), 39 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index a085fd5219..5fa3f5878c 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -800,49 +800,31 @@ function PMA_getTableOptionFieldset($comment, $tbl_collation, $tbl_storage_engin } // end if (MYISAM|ISAM) if ($is_myisam_or_aria) { - $html_output .= '' - . '' - . ''; - - $html_output .= '' - . '' - . '' - . ''; + $html_output .= getTableRow( + 'new_checksum', + 'CHECKSUM', + $checksum + ); + + $html_output .= getTableRow( + 'new_delay_key_write', + 'DELAY_KEY_WRITE', + $delay_key_write + ); } // end if (MYISAM) if ($is_aria) { - $html_output .= '' - . '' - . '' - . ''; + $html_output .= getTableRow( + 'new_transactional', + 'TRANSACTIONAL', + $transactional + ); - $html_output .= '' - . '' - . '' - . ''; + $html_output .= getTableRow( + 'new_page_checksum', + 'PAGE_CHECKSUM', + $page_checksum + ); } // end if (ARIA) if (isset($_REQUEST['auto_increment']) @@ -882,6 +864,30 @@ function PMA_getTableOptionFieldset($comment, $tbl_collation, $tbl_storage_engin return $html_output; } +/** + * Get the common HTML table row (tr) for new_checksum, new_delay_key_write, + * new_transactional and new_page_checksum + * + * @param string $attribute class, name and id attribute + * @param string $label label value + * @param string $val checksum, delay_key_write, transactional, page_checksum + * + * @return string $html_output + */ +function getTableRow($attribute, $label, $val) +{ + return '' + . '' + . '' + . ''; +} + /** * Get array of possible row formats * From 4af9a84945a303b17c7f9ec73d05e1e21e0cb093 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Wed, 1 Aug 2012 17:29:50 +0530 Subject: [PATCH 41/79] impelementation of PMA_getHtmlForDeleteDataOrTable() --- libraries/operations.lib.php | 48 ++++++++++++++++++++ tbl_operations.php | 88 +++++++++++++++--------------------- 2 files changed, 84 insertions(+), 52 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 5fa3f5878c..ec057b30eb 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1187,4 +1187,52 @@ function PMA_getMaitainActionlink($action, $params, $url_params, $link, . ''; } +/** + * Get HTML for Delete data or table (truncate table, drop table) + * + * @param array $truncate_table_url_params url parameter array for truncate table + * @param array $drop_table_url_params url parameter array for drop table + * + * @return string $html_output + */ +function PMA_getHtmlForDeleteDataOrTable( + $truncate_table_url_params, + $drop_table_url_params +) { + $html_output = '
    ' + . '
    ' + . '' . __('Delete data or table') . ''; + + $html_output .= '
      '; + + if (!empty ($truncate_table_url_params)){ + $html_output .= '
    • ' + . __('Empty the table (TRUNCATE)') . '' + . PMA_CommonFunctions::getInstance()->showMySQLDocu( + 'SQL-Syntax', 'TRUNCATE_TABLE' + ) + . '
    • '; + } + if (!empty ($drop_table_url_params)) { + $html_output .= '
    • ' + . __('Delete the table (DROP)') . '' + . PMA_CommonFunctions::getInstance()->showMySQLDocu( + 'SQL-Syntax', 'DROP_TABLE' + ) + . '
    • '; + } + $html_output .= '
    '; + + return $html_output; +} + + + ?> diff --git a/tbl_operations.php b/tbl_operations.php index c4d1afccfc..44c387bcfb 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -326,62 +326,46 @@ echo PMA_getHtmlForTableMaintenance($is_myisam_or_aria, $is_innodb, $is_berkeleydb, $url_params ); -?> - -
    -
    - - -
      -backquote($GLOBALS['table']); - $this_url_params = array_merge( - $url_params, - array( - 'sql_query' => $this_sql_query, - 'goto' => 'tbl_structure.php', - 'reload' => '1', - 'message_to_show' => sprintf(__('Table %s has been emptied'), htmlspecialchars($table)), - ) - ); - ?> -
    • > - - showMySQLDocu('SQL-Syntax', 'TRUNCATE_TABLE'); ?> -
    • -backquote($GLOBALS['table']); - $this_url_params = array_merge( - $url_params, - array( - 'sql_query' => $this_sql_query, - 'goto' => 'db_operations.php', - 'reload' => '1', - 'purge' => '1', - 'message_to_show' => sprintf(($tbl_is_view ? __('View %s has been dropped') : __('Table %s has been dropped')), htmlspecialchars($table)), - // table name is needed to avoid running - // PMA_relationsCleanupDatabase() on the whole db later - 'table' => $GLOBALS['table'], - ) + $truncate_table_url_params = array(); + $drop_table_url_params = array(); + + if (! $tbl_is_view && ! (isset($db_is_information_schema) && $db_is_information_schema)) { + $this_sql_query = 'TRUNCATE TABLE ' . $common_functions->backquote($GLOBALS['table']); + $truncate_table_url_params = array_merge( + $url_params, + array( + 'sql_query' => $this_sql_query, + 'goto' => 'tbl_structure.php', + 'reload' => '1', + 'message_to_show' => sprintf(__('Table %s has been emptied'), htmlspecialchars($table)), + ) + ); + } + if (! (isset($db_is_information_schema) && $db_is_information_schema)) { + $this_sql_query = 'DROP TABLE ' . $common_functions->backquote($GLOBALS['table']); + $drop_table_url_params = array_merge( + $url_params, + array( + 'sql_query' => $this_sql_query, + 'goto' => 'db_operations.php', + 'reload' => '1', + 'purge' => '1', + 'message_to_show' => sprintf(($tbl_is_view ? __('View %s has been dropped') : __('Table %s has been dropped')), htmlspecialchars($table)), + // table name is needed to avoid running + // PMA_relationsCleanupDatabase() on the whole db later + 'table' => $GLOBALS['table'], + ) + ); + } + echo PMA_getHtmlForDeleteDataOrTable($truncate_table_url_params, + $drop_table_url_params ); - ?> -
    • > - - showMySQLDocu('SQL-Syntax', 'DROP_TABLE'); ?> -
    • -'; + + ?> -
    -
    -
    - -
    Date: Wed, 1 Aug 2012 19:10:44 +0530 Subject: [PATCH 42/79] impelementation of PMA_getHtmlForPartitionMaintenance() --- libraries/operations.lib.php | 56 +++++++++++++++++++++++++++++++++++- tbl_operations.php | 50 +++----------------------------- 2 files changed, 59 insertions(+), 47 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index ec057b30eb..7bdae177ae 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1233,6 +1233,60 @@ function PMA_getHtmlForDeleteDataOrTable( return $html_output; } - +function PMA_getHtmlForPartitionMaintenance($partition_names, $url_params) +{ + $common_functions = PMA_CommonFunctions::getInstance(); + + $choices = array( + 'ANALYZE' => __('Analyze'), + 'CHECK' => __('Check'), + 'OPTIMIZE' => __('Optimize'), + 'REBUILD' => __('Rebuild'), + 'REPAIR' => __('Repair') + ); + + $html_output = '
    ' + . '
    ' + . PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']) + . '
    ' + . '' . __('Partition maintenance') . ''; + + $html_select = '' . "\n"; + $html_output .= sprintf(__('Partition %s'), $html_select); + + $html_output .= $common_functions->getRadioFields( + 'partition_operation', $choices, '', false + ); + $html_output .= $common_functions->showMySQLDocu( + 'partitioning_maintenance', + 'partitioning_maintenance' + ); + $this_url_params = array_merge( + $url_params, + array( + 'sql_query' => 'ALTER TABLE ' + . $common_functions->backquote($GLOBALS['table']) + . ' REMOVE PARTITIONING;' + ) + ); + $html_output .= '
    ' + . __('Remove partitioning') . ''; + + $html_output .= '
    ' + . '
    ' + . '' + . '
    ' + . '
    ' + . '
    '; + + return $html_output; +} ?> diff --git a/tbl_operations.php b/tbl_operations.php index 44c387bcfb..9783f8c155 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -364,56 +364,14 @@ if (! (isset($db_is_information_schema) && $db_is_information_schema)) { } echo '
    '; - -?> - -
    -
    - -
    - -' . "\n"; - foreach ($partition_names as $one_partition) { - $one_partition = htmlspecialchars($one_partition); - $html_select .= '' . "\n"; - } - $html_select .= '' . "\n"; - printf(__('Partition %s'), $html_select); - unset($partition_names, $one_partition, $html_select); - $choices = array( - 'ANALYZE' => __('Analyze'), - 'CHECK' => __('Check'), - 'OPTIMIZE' => __('Optimize'), - 'REBUILD' => __('Rebuild'), - 'REPAIR' => __('Repair')); - echo $common_functions->getRadioFields('partition_operation', $choices, '', false); - unset($choices); - echo $common_functions->showMySQLDocu('partitioning_maintenance', 'partitioning_maintenance'); - // I'm not sure of the best way to display that; this link does - // not depend on the Go button - $this_url_params = array_merge( - $url_params, - array( - 'sql_query' => 'ALTER TABLE ' . $common_functions->backquote($GLOBALS['table']) . ' REMOVE PARTITIONING;' - ) - ); -?> -
    - -
    -
    - -
    -
    -
    - Date: Wed, 1 Aug 2012 19:44:48 +0530 Subject: [PATCH 43/79] missing doc block --- libraries/operations.lib.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 7bdae177ae..8eed6d5f62 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1233,6 +1233,14 @@ function PMA_getHtmlForDeleteDataOrTable( return $html_output; } +/** + * Get HTML snippet for partition maintenance + * + * @param array $partition_names array of partition names for a specific db/table + * @param array $url_params url parameters + * + * @return string $html_output + */ function PMA_getHtmlForPartitionMaintenance($partition_names, $url_params) { $common_functions = PMA_CommonFunctions::getInstance(); From 6c68fc4dd7980fc72909c0e22de1dec6084d13ad Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Wed, 1 Aug 2012 19:55:31 +0530 Subject: [PATCH 44/79] function rename --- libraries/operations.lib.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 8eed6d5f62..74d6e53692 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -800,13 +800,13 @@ function PMA_getTableOptionFieldset($comment, $tbl_collation, $tbl_storage_engin } // end if (MYISAM|ISAM) if ($is_myisam_or_aria) { - $html_output .= getTableRow( + $html_output .= PMA_getTableRow( 'new_checksum', 'CHECKSUM', $checksum ); - $html_output .= getTableRow( + $html_output .= PMA_getTableRow( 'new_delay_key_write', 'DELAY_KEY_WRITE', $delay_key_write @@ -814,13 +814,13 @@ function PMA_getTableOptionFieldset($comment, $tbl_collation, $tbl_storage_engin } // end if (MYISAM) if ($is_aria) { - $html_output .= getTableRow( + $html_output .= PMA_getTableRow( 'new_transactional', 'TRANSACTIONAL', $transactional ); - $html_output .= getTableRow( + $html_output .= PMA_getTableRow( 'new_page_checksum', 'PAGE_CHECKSUM', $page_checksum @@ -874,7 +874,7 @@ function PMA_getTableOptionFieldset($comment, $tbl_collation, $tbl_storage_engin * * @return string $html_output */ -function getTableRow($attribute, $label, $val) +function PMA_getTableRow($attribute, $label, $val) { return '' . '' From a8e813536c363605dd9ca47a9bdcb9da1e13f8fb Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Wed, 1 Aug 2012 20:01:50 +0530 Subject: [PATCH 45/79] remove isset --- libraries/operations.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 74d6e53692..1611ef5dfa 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -881,7 +881,7 @@ function PMA_getTableRow($attribute, $label, $val) . '' From 69e525f9117b707cf95edfaf256f50b3ec70f96b Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Thu, 2 Aug 2012 06:02:58 +0530 Subject: [PATCH 46/79] implementation of PMA_getHtmlForReferentialIntegrityCheck() --- libraries/operations.lib.php | 51 ++++++++++++++++++++++++++++++++++++ tbl_operations.php | 43 +----------------------------- 2 files changed, 52 insertions(+), 42 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 1611ef5dfa..19e32538a3 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1297,4 +1297,55 @@ function PMA_getHtmlForPartitionMaintenance($partition_names, $url_params) return $html_output; } +function PMA_getHtmlForReferentialIntegrityCheck($foreign, $url_params) +{ + $common_functions = PMA_CommonFunctions::getInstance(); + + $html_output = '
    ' + . '
    ' + . '' . __('Check referential integrity:') . ''; + + $html_output .= '
      ' . '"\n"'; + + foreach ($foreign AS $master => $arr) { + $join_query = 'SELECT ' . $common_functions->backquote( + $GLOBALS['table']) . '.* FROM ' + . $common_functions->backquote($GLOBALS['table']) . ' LEFT JOIN ' + . $common_functions->backquote($arr['foreign_table']); + if ($arr['foreign_table'] == $GLOBALS['table']) { + $foreign_table = $GLOBALS['table'] . '1'; + $join_query .= ' AS ' . $common_functions->backquote($foreign_table); + } else { + $foreign_table = $arr['foreign_table']; + } + $join_query .= ' ON ' + . $common_functions->backquote($GLOBALS['table']) . '.' + . $common_functions->backquote($master) + . ' = ' . $common_functions->backquote($foreign_table) . '.' + . $common_functions->backquote($arr['foreign_field']) + . ' WHERE ' + . $common_functions->backquote($foreign_table) . '.' + . $common_functions->backquote($arr['foreign_field']) + . ' IS NULL AND ' + . $common_functions->backquote($GLOBALS['table']) . '.' + . $common_functions->backquote($master) + . ' IS NOT NULL'; + $this_url_params = array_merge( + $url_params, + array('sql_query' => $join_query) + ); + + $html_output .= '
    • ' + . '' + . $master . ' -> ' . $arr['foreign_table'] . '.' + . $arr['foreign_field'] + . '
    • ' . "\n"; + } // foreach $foreign + $html_output .= '
    '; + + return $html_output; +} + ?> diff --git a/tbl_operations.php b/tbl_operations.php index 9783f8c155..08e577365c 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -384,48 +384,7 @@ if ($cfgRelation['relwork'] && ! $is_innodb) { $foreign = PMA_getForeigners($GLOBALS['db'], $GLOBALS['table']); if ($foreign) { - ?> - -
    -
    - -
      - $arr) { - $join_query = 'SELECT ' . $common_functions->backquote($GLOBALS['table']) . '.* FROM ' - . $common_functions->backquote($GLOBALS['table']) . ' LEFT JOIN ' - . $common_functions->backquote($arr['foreign_table']); - if ($arr['foreign_table'] == $GLOBALS['table']) { - $foreign_table = $GLOBALS['table'] . '1'; - $join_query .= ' AS ' . $common_functions->backquote($foreign_table); - } else { - $foreign_table = $arr['foreign_table']; - } - $join_query .= ' ON ' - . $common_functions->backquote($GLOBALS['table']) . '.' . $common_functions->backquote($master) - . ' = ' . $common_functions->backquote($foreign_table) . '.' . $common_functions->backquote($arr['foreign_field']) - . ' WHERE ' - . $common_functions->backquote($foreign_table) . '.' . $common_functions->backquote($arr['foreign_field']) - . ' IS NULL AND ' - . $common_functions->backquote($GLOBALS['table']) . '.' . $common_functions->backquote($master) - . ' IS NOT NULL'; - $this_url_params = array_merge( - $url_params, - array('sql_query' => $join_query) - ); - echo '
    • ' - . '' . $master . ' -> ' . $arr['foreign_table'] . '.' . $arr['foreign_field'] - . '
    • ' . "\n"; - } // foreach $foreign - unset($foreign_table, $join_query); - ?> -
    -
    -
    - Date: Fri, 3 Aug 2012 03:50:58 +0530 Subject: [PATCH 47/79] missing doc comment --- libraries/operations.lib.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 19e32538a3..285a2a3e30 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1297,6 +1297,15 @@ function PMA_getHtmlForPartitionMaintenance($partition_names, $url_params) return $html_output; } +/** + * Get the HTML for Referential Integrity check + * + * @param array $foreign all Relations to foreign tables for a given table + * or optionally a given column in a table + * @param array $url_params array of url parameters + * + * @return string $html_output + */ function PMA_getHtmlForReferentialIntegrityCheck($foreign, $url_params) { $common_functions = PMA_CommonFunctions::getInstance(); From 059cb239bb7632e2f66e9d2db40ebcfbf76a6c9f Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Fri, 3 Aug 2012 05:04:29 +0530 Subject: [PATCH 48/79] fix - Bad ajax response when adding a user without a host --- libraries/server_privileges.lib.php | 20 ++++++++++---------- server_privileges.php | 3 ++- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/libraries/server_privileges.lib.php b/libraries/server_privileges.lib.php index 498ce1e770..d7ccb5fc15 100644 --- a/libraries/server_privileges.lib.php +++ b/libraries/server_privileges.lib.php @@ -1742,7 +1742,7 @@ function PMA_getStandardLinks($conditional_class) * @return array $extra_data */ function PMA_getExtraDataForAjaxBehavior($password, $link_export, $sql_query, - $link_edit, $dbname_is_wildcard + $link_edit, $dbname_is_wildcard, $hostname, $username ) { if (strlen($sql_query)) { $extra_data['sql_query'] @@ -1756,14 +1756,14 @@ function PMA_getExtraDataForAjaxBehavior($password, $link_export, $sql_query, $new_user_string = ''."\n" . ' ' + . htmlspecialchars($username) + . '&#27;' . htmlspecialchars($hostname) . '" />' . '' . "\n" . '' . "\n" - . '' . htmlspecialchars($_REQUEST['hostname']) . '' . "\n"; + : htmlspecialchars($username) ) . '' . "\n" + . '' . htmlspecialchars($hostname) . '' . "\n"; $new_user_string .= ''; @@ -1791,15 +1791,15 @@ function PMA_getExtraDataForAjaxBehavior($password, $link_export, $sql_query, $new_user_string .= '' . sprintf($link_edit, - urlencode($_REQUEST['username']), - urlencode($_REQUEST['hostname']), + urlencode($username), + urlencode($hostname), '', '' ) . '' . "\n"; $new_user_string .= '' . sprintf($link_export, - urlencode($_REQUEST['username']), - urlencode($_REQUEST['hostname']), + urlencode($username), + urlencode($hostname), (isset($_GET['initial']) ? $_GET['initial'] : '') ) . '' . "\n"; @@ -1812,7 +1812,7 @@ function PMA_getExtraDataForAjaxBehavior($password, $link_export, $sql_query, * Generate the string for this alphabet's initial, to update the user * pagination */ - $new_user_initial = strtoupper(substr($_REQUEST['username'], 0, 1)); + $new_user_initial = strtoupper(substr($username, 0, 1)); $new_user_initial_string = '' . $new_user_initial . ''; diff --git a/server_privileges.php b/server_privileges.php index 0ade132140..95211eabd0 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -379,7 +379,8 @@ if ($GLOBALS['is_ajax_request'] $isPass = true; } $extra_data = PMA_getExtraDataForAjaxBehavior($isPass, $link_export, - (isset($sql_query) ? $sql_query : ''), $link_edit, $dbname_is_wildcard + (isset($sql_query) ? $sql_query : ''), $link_edit, $dbname_is_wildcard, + $hostname, $username ); if ($message instanceof PMA_Message) { From c50053eda4fcbffb21f79ec6e8e230c2399cc6e0 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Fri, 3 Aug 2012 05:32:11 +0530 Subject: [PATCH 49/79] further refactoring for PMA_getHtmlForDeleteDataOrTable() --- libraries/operations.lib.php | 48 ++++++++++++++++++++++-------------- 1 file changed, 29 insertions(+), 19 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 285a2a3e30..360c90ff02 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1206,33 +1206,43 @@ function PMA_getHtmlForDeleteDataOrTable( $html_output .= '
      '; if (!empty ($truncate_table_url_params)){ - $html_output .= '
    • ' - . __('Empty the table (TRUNCATE)') . '' - . PMA_CommonFunctions::getInstance()->showMySQLDocu( - 'SQL-Syntax', 'TRUNCATE_TABLE' - ) - . '
    • '; + $html_output .= PMA_getDeleteDataOrTablelink( + $truncate_table_url_params, 'TRUNCATE_TABLE' + ); } if (!empty ($drop_table_url_params)) { - $html_output .= '
    • ' - . __('Delete the table (DROP)') . '' - . PMA_CommonFunctions::getInstance()->showMySQLDocu( - 'SQL-Syntax', 'DROP_TABLE' - ) - . '
    • '; + $html_output .= PMA_getDeleteDataOrTablelink( + $drop_table_url_params, 'DROP_TABLE' + ); } $html_output .= '

    '; return $html_output; } +/** + * Get the HTML link for Truncate table and Drop table + * + * @param array $url_params url parameter array for delete data or table + * @param string $syntax TRUNCATE_TABLE or DROP_TABLE + * + * @return String html output + */ +function PMA_getDeleteDataOrTablelink($url_params, $syntax) +{ + return '
  • ' + . __('Empty the table (TRUNCATE)') . '' + . PMA_CommonFunctions::getInstance()->showMySQLDocu( + 'SQL-Syntax', $syntax + ) + . '
  • '; +} + /** * Get HTML snippet for partition maintenance * From 3c42744ed2780ed1dc2ea875109a58bd6bdb8548 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Fri, 3 Aug 2012 05:45:24 +0530 Subject: [PATCH 50/79] remove php notice --- libraries/operations.lib.php | 2 +- tbl_operations.php | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 360c90ff02..7e4fe2ca25 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -686,7 +686,7 @@ function PMA_getHtmlForMoveTable() * @return string $html_output */ function PMA_getTableOptionDiv($comment, $tbl_collation, $tbl_storage_engine, - $is_myisam_or_aria, $is_isam, $pack_keys, $delay_key_write, $auto_increment, + $is_myisam_or_aria, $is_isam, $pack_keys, $auto_increment, $delay_key_write, $transactional, $page_checksum, $is_innodb, $is_pbxt, $is_aria ) { $html_output = '
    '; diff --git a/tbl_operations.php b/tbl_operations.php index 08e577365c..bcba972afb 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -307,9 +307,14 @@ if (strstr($show_comment, '; InnoDB free') === false) { // in >5.0.4, >4.1.12 and >4.0.11, so I decided not to // check for version -echo PMA_getTableOptionDiv($comment, $tbl_collation, $tbl_storage_engine, - $is_myisam_or_aria, $is_isam, $pack_keys, $delay_key_write, $auto_increment, - $transactional, $page_checksum, $is_innodb, $is_pbxt, $is_aria +echo PMA_getTableOptionDiv( + $comment, $tbl_collation, $tbl_storage_engine, + $is_myisam_or_aria, $is_isam, $pack_keys, + $auto_increment, + (empty($delay_key_write) ? '0' : '1'), + ((isset($transactional) && $transactional == '0') ? '0' : '1'), + ((isset($page_checksum)) ? $page_checksum : ''), + $is_innodb, $is_pbxt, $is_aria ); /** From 4bc2c7e0cb8df932eeefc4dc1fc74daa5fbb21a4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 3 Aug 2012 22:01:26 +0530 Subject: [PATCH 51/79] Checking whether $criteriaValues is empty should be done before calling _getEnumWhereClause() --- libraries/TableSearch.class.php | 58 +++++++++++++++------------------ 1 file changed, 27 insertions(+), 31 deletions(-) diff --git a/libraries/TableSearch.class.php b/libraries/TableSearch.class.php index be354cadea..2132b1d065 100644 --- a/libraries/TableSearch.class.php +++ b/libraries/TableSearch.class.php @@ -445,38 +445,34 @@ EOT; */ private function _getEnumWhereClause($criteriaValues, $func_type) { - $where = ''; $common_functions = PMA_CommonFunctions::getInstance(); - if (! empty($criteriaValues)) { - if (! is_array($criteriaValues)) { - $criteriaValues = explode(',', $criteriaValues); - } - $enum_selected_count = count($criteriaValues); - if ($func_type == '=' && $enum_selected_count > 1) { - $func_type = 'IN'; - $parens_open = '('; - $parens_close = ')'; - - } elseif ($func_type == '!=' && $enum_selected_count > 1) { - $func_type = 'NOT IN'; - $parens_open = '('; - $parens_close = ')'; - - } else { - $parens_open = ''; - $parens_close = ''; - } - $enum_where = '\'' - . $common_functions->sqlAddSlashes($criteriaValues[0]) . '\''; - for ($e = 1; $e < $enum_selected_count; $e++) { - $enum_where .= ', \'' - . $common_functions->sqlAddSlashes($criteriaValues[$e]) . '\''; - } - - $where = ' ' . $func_type . ' ' . $parens_open - . $enum_where . $parens_close; + if (! is_array($criteriaValues)) { + $criteriaValues = explode(',', $criteriaValues); } - return $where; + $enum_selected_count = count($criteriaValues); + if ($func_type == '=' && $enum_selected_count > 1) { + $func_type = 'IN'; + $parens_open = '('; + $parens_close = ')'; + + } elseif ($func_type == '!=' && $enum_selected_count > 1) { + $func_type = 'NOT IN'; + $parens_open = '('; + $parens_close = ')'; + + } else { + $parens_open = ''; + $parens_close = ''; + } + $enum_where = '\'' + . $common_functions->sqlAddSlashes($criteriaValues[0]) . '\''; + for ($e = 1; $e < $enum_selected_count; $e++) { + $enum_where .= ', \'' + . $common_functions->sqlAddSlashes($criteriaValues[$e]) . '\''; + } + + return ' ' . $func_type . ' ' . $parens_open + . $enum_where . $parens_close; } /** @@ -564,7 +560,7 @@ EOT; $criteriaValues = ''; $where = $backquoted_name . ' ' . $func_type; - } elseif (strncasecmp($types, 'enum', 4) == 0) { + } elseif (strncasecmp($types, 'enum', 4) == 0 && ! empty($criteriaValues)) { $where = $backquoted_name; $where .= $this->_getEnumWhereClause($criteriaValues, $func_type); From 965d525cf888ea4b31ed7b66697032a74d3be8f1 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 3 Aug 2012 22:02:49 +0530 Subject: [PATCH 52/79] Coding style fixes --- libraries/TableSearch.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/TableSearch.class.php b/libraries/TableSearch.class.php index 2132b1d065..13351c6cb1 100644 --- a/libraries/TableSearch.class.php +++ b/libraries/TableSearch.class.php @@ -103,7 +103,6 @@ class PMA_TableSearch * @param string $db Database name * @param string $table Table name * @param string $searchType Whether normal or zoom search - * */ public function __construct($db, $table, $searchType) { @@ -134,6 +133,7 @@ class PMA_TableSearch * Gets all the columns of a table along with their types, collations * and whether null or not. * + * @return void */ private function _loadTableInfo() { From 3bf16a9f51011d588789af5e8d78f67d652def43 Mon Sep 17 00:00:00 2001 From: Ashiyane Digital Security Team Date: Fri, 3 Aug 2012 00:13:02 +0200 Subject: [PATCH 53/79] Translated using Weblate. --- po/fa.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/fa.po b/po/fa.po index 801c21951f..c2bdf28804 100644 --- a/po/fa.po +++ b/po/fa.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-04 13:42+0200\n" -"PO-Revision-Date: 2012-07-22 18:50+0200\n" +"PO-Revision-Date: 2012-08-03 00:13+0200\n" "Last-Translator: Ashiyane Digital Security Team \n" -"Language-Team: persian \n" +"Language-Team: Persian \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1677 @@ -2444,7 +2444,7 @@ msgstr "خطای ناشناخته به هنگام آپلود." #: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +msgstr "فایل آپلود شده بیش از upload_max_size قرار دستور در فایل php.ini اجرا" #: libraries/File.class.php:281 msgid "" From b02670136fdf80659e7dc6544f05aba837f2edd1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 3 Aug 2012 13:03:59 -0400 Subject: [PATCH 54/79] 3.5.2.1 release --- Documentation.html | 4 ++-- README | 2 +- libraries/Config.class.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation.html b/Documentation.html index b2d63dd03f..2ef68212e8 100644 --- a/Documentation.html +++ b/Documentation.html @@ -9,7 +9,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 - phpMyAdmin 3.5.2 - Documentation + phpMyAdmin 3.5.2.1 - Documentation @@ -17,7 +17,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 diff --git a/README b/README index 64abf10474..234d78db36 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 3.5.2 +Version 3.5.2.1 A set of PHP-scripts to manage MySQL over the web. diff --git a/libraries/Config.class.php b/libraries/Config.class.php index dd37bb241f..e37ff5e8c4 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -98,7 +98,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '3.5.2'); + $this->set('PMA_VERSION', '3.5.2.1'); /** * @deprecated */ From 4b133e277f1e7116ff30b2d0000019d1d58749d8 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 3 Aug 2012 13:05:05 -0400 Subject: [PATCH 55/79] 3.5.2.1 release date --- ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 610bed251c..059c87e895 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ phpMyAdmin - ChangeLog ====================== -3.5.2.1 (not yet released) +3.5.2.1 (2012-08-03) - [security] Fixed local path disclosure vulnerability, see PMASA-2012-3 3.5.2.0 (2012-07-07) From 3110bacb81c283a1f0b669c6c8fd419898dee2fb Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 3 Aug 2012 13:06:28 -0400 Subject: [PATCH 56/79] 3.5.2.1 release date --- ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 20fd3c9d0f..137e7b1290 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,7 +13,7 @@ phpMyAdmin - ChangeLog - bug #3541966 [config] Error in generated configuration arrray - bug #3553551 [GUI] Invalid HTML code in multi submits confirmation form -3.5.2.1 (not yet released) +3.5.2.1 (2012-08-03) - [security] Fixed local path disclosure vulnerability, see PMASA-2012-3 3.5.2.0 (2012-07-07) From c9fe3105123455f41829e82bce7e18b4ac3e05a7 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Sat, 4 Aug 2012 12:39:58 +0200 Subject: [PATCH 57/79] Fixed docblock --- libraries/Response.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Response.class.php b/libraries/Response.class.php index c341acc614..d10aecb0e0 100644 --- a/libraries/Response.class.php +++ b/libraries/Response.class.php @@ -136,7 +136,7 @@ class PMA_Response * Returns true or false depending on whether * we are servicing an ajax request * - * @return void + * @return bool */ public function isAjax() { From 968cea0809f0a1ddafdd54c3001fb97da5861860 Mon Sep 17 00:00:00 2001 From: shanyan baishui Date: Sat, 4 Aug 2012 06:39:44 +0200 Subject: [PATCH 58/79] Translated using Weblate. --- po/zh_CN.po | 93 +++++++++++++++++++++++++++++++---------------------- 1 file changed, 55 insertions(+), 38 deletions(-) diff --git a/po/zh_CN.po b/po/zh_CN.po index ee1862ec52..a6ad4c27a6 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -4,15 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-07-27 10:40+0200\n" -"PO-Revision-Date: 2012-07-23 19:45+0200\n" +"PO-Revision-Date: 2012-08-04 06:39+0200\n" "Last-Translator: shanyan baishui \n" -"Language-Team: chinese_simplified \n" +"Language-Team: Chinese (China) " +"\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 #: libraries/DisplayResults.class.php:794 @@ -1877,7 +1878,7 @@ msgstr "点击下箭头以设置显示的字段" msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." -msgstr "" +msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除链接相关功能可能无法正常使用。" #: js/messages.php:356 msgid "" @@ -3650,7 +3651,7 @@ msgstr "您应升级到 %s %s 或更高版本。" #: libraries/common.inc.php:1076 msgid "GLOBALS overwrite attempt" -msgstr "" +msgstr "企图覆盖 GLOBALS" #: libraries/common.inc.php:1083 msgid "possible exploit" @@ -12364,10 +12365,9 @@ msgid "Query caching method" msgstr "查询缓存模式" #: libraries/advisory_rules.txt:156 -#, fuzzy #| msgid "Query caching method" msgid "Suboptimal caching method." -msgstr "查询缓存模式" +msgstr "最佳缓存模式。" #: libraries/advisory_rules.txt:157 msgid "" @@ -12449,6 +12449,10 @@ msgid "" "using this formula: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" msgstr "" +"大量碎片很可能会增加 Qcache_lowmem_prunes 。这可能由 {query_cache_size} " +"过小而导致大量查询缓存低内存清理。刷新查询缓存 (可能锁住查询缓存很长时间) 可以临时解决这个问题。仔细调整 " +"{query_cache_min_res_unit} 到一个更小的值将会有所帮助,如您可以使用下列公式来计算并设置您查询缓存大小平均值: (查询缓存大小 " +"- 查询缓存剩余大小) / 查询缓存中的查询数量" #: libraries/advisory_rules.txt:179 #, php-format @@ -12459,25 +12463,23 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:181 -#, fuzzy #| msgid "Query cache used" msgid "Query cache low memory prunes" -msgstr "已用查询缓存" +msgstr "查询缓存低内存清理" #: libraries/advisory_rules.txt:184 -#, fuzzy #| msgid "The amount of free memory for query cache." msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." -msgstr "查询缓存中空闲的内存总数。" +msgstr "在查询缓存内存过低时会清理已缓存的查询。" #: libraries/advisory_rules.txt:185 msgid "" "You might want to increase {query_cache_size}, however keep in mind that the " "overhead of maintaining the cache is likely to increase with its size, so do " "this in small increments and monitor the results." -msgstr "" +msgstr "您可能需要增加 {query_cache_size},但请注意增加它可能会导致的维护开销,所以请慢慢增加并观察结果。" #: libraries/advisory_rules.txt:186 #, php-format @@ -12494,7 +12496,7 @@ msgstr "查询缓存最大值" msgid "" "The query cache size is above 128 MiB. Big query caches may cause " "significant overhead that is required to maintain the cache." -msgstr "" +msgstr "查询缓存超过 128 MB 。过大的查询缓存可能会引起额外的维护开销。" #: libraries/advisory_rules.txt:192 msgid "" @@ -12514,7 +12516,7 @@ msgstr "查询缓存结果最小大小" #: libraries/advisory_rules.txt:198 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." -msgstr "" +msgstr "查询缓存结果最大大小已设为默认值 1 MB 。" #: libraries/advisory_rules.txt:199 msgid "" @@ -12527,6 +12529,9 @@ msgid "" "(often invalidated due to table updates) increasing {query_cache_limit} " "might reduce efficiency." msgstr "" +"修改 {query_cache_limit} (通常是增加) 可能提升效率。该变量决定可能要插入到查询缓存中查询结果的最大大小。若多数超过 1 MB " +"的查询结果能很好的缓存 (多读、少写) 则增加 {query_cache_limit} 将会提升效率。若多数超过 1 MB 的查询结果不能很好的缓存 " +"(通常因为表更新而失效) 增加 {query_cache_limit} 将会降低效率。" #: libraries/advisory_rules.txt:200 msgid "query_cache_limit is set to 1 MiB" @@ -12671,13 +12676,13 @@ msgid "" msgstr "这说明很多查询都需要全表扫描。请在合适的地方添加索引。" #: libraries/advisory_rules.txt:252 -#, fuzzy, php-format +#, php-format #| msgid "" #| "Rate of reading fixed position average: %s, this value should be less " #| "than 1 per hour" msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" -msgstr "固定位置读取率: %s,该值应低于 1 每小时" +msgstr "下一行读取率: %s,该值应低于 1 每小时" #: libraries/advisory_rules.txt:255 msgid "tmp_table_size vs. max_heap_table_size" @@ -12693,7 +12698,7 @@ msgid "" "value of either to determine the maximum size of in-memory tables. So if you " "wish to increase the in-memory table limit you will have to increase the " "other value as well." -msgstr "" +msgstr "若您故意改变了其中一个值: 服务器使用较低的值来确定内存表的最大大小。如果您想增加内存表的大小您应该同时修改另一个值。" #: libraries/advisory_rules.txt:260 #, php-format @@ -12720,6 +12725,10 @@ msgid "" "mentioned in the beginning of an Article by the Pythian Group" msgstr "" +"增加 {max_heap_table_size} 和 {tmp_table_size} " +"可能会有帮助。但有些临时表总是会写入硬盘,和这些变量无关。要避免这些,您需要重写您的查询来避免 Pythian " +"小组的文章开头所提到的这些条件 (临时表内: 具有 BLOB 或 TEXT 字段或具有大于 512 字节的字段)" #: libraries/advisory_rules.txt:267 #, php-format @@ -12742,15 +12751,19 @@ msgid "" "mentioned in the MySQL Documentation" msgstr "" +"增加 {max_heap_table_size} 和 {tmp_table_size} " +"可能会有帮助。但有些临时表总是会写入硬盘,和这些变量无关。要避免这些,您需要重写您的查询来避免 MySQL 文档中所提到的这些条件 (临时表内: 具有 BLOB 或 TEXT 字段或具有大于 512 字节的字段)" #: libraries/advisory_rules.txt:274 -#, fuzzy, php-format +#, php-format #| msgid "" #| "Temporary tables average: %s, this value should be less than 1 per hour." msgid "" "Rate of temporary tables being written to disk: %s, this value should be " "less than 1 per hour" -msgstr "临时表创建率: %s,该值应低于 1 每小时" +msgstr "临时表硬盘写入率: %s,该值应低于 1 每小时" #: libraries/advisory_rules.txt:289 msgid "MyISAM key buffer size" @@ -12771,36 +12784,35 @@ msgid "key_buffer_size is 0" msgstr "key_buffer_size 为 0" #: libraries/advisory_rules.txt:296 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" -msgstr "排序缓存大小" +msgstr "最大 %% MyISAM 索引缓存从未使用" #: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." -msgstr "排序缓存大小" +msgstr "MyISAM 索引缓存 %% 使用率低。" #: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 msgid "" "You may need to decrease the size of {key_buffer_size}, re-examine your " "tables to see if indexes have been removed, or examine queries and " "expectations about what indexes are being used." -msgstr "" +msgstr "您可能需要减小 {key_buffer_size} 的大小,重新检查您的表是否删除了索引或检查查询期望使用的索引。" #: libraries/advisory_rules.txt:301 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" -msgstr "排序缓存大小" +msgstr "最大 %% MyISAM 索引缓存从未使用: %s%%,该值应高于 95%%" #: libraries/advisory_rules.txt:304 -#, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" -msgstr "排序缓存大小" +msgstr "MyISAM 索引缓存使用百分比" #: libraries/advisory_rules.txt:309 #, php-format @@ -13022,6 +13034,8 @@ msgid "" "source-of-aborted_connects/\">This article might help you track down the " "source." msgstr "" +"连接通常因为无法被授权而中止。这篇文章对您追踪来源可能有所帮助。" #: libraries/advisory_rules.txt:397 #, php-format @@ -13033,12 +13047,12 @@ msgid "Rate of aborted connections" msgstr "已中止连接的比例" #: libraries/advisory_rules.txt:404 -#, fuzzy, php-format +#, php-format #| msgid "" #| "Aborted client rate is at %s, this value should be less than 1 per hour" msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" -msgstr "客户端取消率为 %s,此值应低于 1 每小时" +msgstr "已中止连接率为 %s,该值应低于 1 每小时" #: libraries/advisory_rules.txt:406 msgid "Percentage of aborted clients" @@ -13098,7 +13112,7 @@ msgid "" msgstr "InnoDB 日志文件大小不合适,此关系到 InnoDB 缓冲池。" #: libraries/advisory_rules.txt:433 -#, fuzzy, php-format +#, php-format #| msgid "" #| "It is usually sufficient to set innodb_log_file_size to 25%% of the size " #| "of {innodb_buffer_pool_size}. A very big innodb_log_file_size slows down " @@ -13120,13 +13134,11 @@ msgid "" "fine. See also this blog entry" msgstr "" -"通常将 innodb_log_file_size 设置为 {innodb_buffer_pool_size} 的 25%% 已经足" -"够。过大的 innodb_log_file_size 将会严重减慢数据库崩溃后的恢复时间。参见这篇文章。您首先需要关闭服务器,移除 InnoDB 日志" -"文件,然后在 my.cnf 中设置新的值,最后启动服务器,并检查错误日志确定一切都正" -"常。参见这篇博客" +"在一个 InnoDB 表写入很多的系统上您应该将 innodb_log_file_size 设为 {innodb_buffer_pool_size} 的 " +"25%% 。因为该值越大,当数据库崩溃时恢复的时间就越长,所以该值不应高于 256 MB 。请注意您不能简单的修改该变量的值。您需要关闭服务器,删除 " +"InnoDB 日志文件,在 my.cnf 中设置新的值,启动服务器,一切正常后再检查错误日志。参见这篇博客" #: libraries/advisory_rules.txt:434 #, php-format @@ -13200,6 +13212,8 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" +"您当前的 InnoDB 缓冲池使用了内存的 %s%% 。此规则在您分配少于 60%% 时被触发,然而这也可能因为您没有太多 InnoDB " +"表所以这样足够或者服务器上还运行了其它服务。" #: libraries/advisory_rules.txt:452 msgid "MyISAM concurrent inserts" @@ -13215,6 +13229,9 @@ msgid "" "writers for a given table. See also MySQL Documentation" msgstr "" +"设置 {concurrent_insert} 为 1 可以减少在相同表上的读取和写入冲突。参见 MySQL " +"文档" #: libraries/advisory_rules.txt:457 msgid "concurrent_insert is set to 0" From 762f1e1e2fa3756bfd53f51cd5a1b74fd2e718c3 Mon Sep 17 00:00:00 2001 From: renwar kurd Date: Sat, 4 Aug 2012 12:39:26 +0200 Subject: [PATCH 59/79] Translated using Weblate. --- po/ckb.po | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/po/ckb.po b/po/ckb.po index 9bd58a81f8..bf70db52fd 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -8,15 +8,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-07-27 10:40+0200\n" -"PO-Revision-Date: 2012-07-04 20:30+0200\n" -"Last-Translator: Hunar kirkuk \n" -"Language-Team: none\n" +"PO-Revision-Date: 2012-08-04 12:39+0200\n" +"Last-Translator: renwar kurd \n" +"Language-Team: Kurdish Sorani " +"\n" "Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 #: libraries/DisplayResults.class.php:794 @@ -39,6 +40,8 @@ msgid "" "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" +"ئەمو پەڕەیە ناتوانرێت تازە بکرێتەوە، لەوانەیە پەڕە کۆنەکەت داخستبێت، یان " +"ڕێکخستنی پاراستنی وێبگەڕەکەت وا ڕیکخراوە کە ڕی لە تازەکردنەوە بگریت" #: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3387 #: libraries/CommonFunctions.class.php:3394 @@ -376,7 +379,7 @@ msgstr "" #: db_operations.php:658 msgid "Edit or export relational schema" -msgstr "" +msgstr "دەستکاری کردن یان هەناردنی پەیوەندی نەخشە" #: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 #: libraries/Menu.class.php:201 libraries/config/messages.inc.php:514 @@ -447,7 +450,7 @@ msgstr "دەبێت لانیکەم ١ خانە هەڵبژێریت بۆ پیشان #: db_qbe.php:59 #, php-format msgid "Switch to %svisual builder%s" -msgstr "" +msgstr "گۆڕین بۆ %svisual builder%s" #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:80 #: libraries/plugins/auth/AuthenticationConfig.class.php:95 @@ -514,7 +517,7 @@ msgstr "سەرجەم" #: db_structure.php:638 libraries/StorageEngine.class.php:352 #, php-format msgid "%s is the default storage engine on this MySQL server." -msgstr "" +msgstr "%s بیرگەی بزوێنەری سەرەکیە لەسەر ڕاژەکاری MySQL" #: db_structure.php:686 db_structure.php:698 db_structure.php:699 #: libraries/DisplayResults.class.php:4851 @@ -568,7 +571,7 @@ msgstr "بەتاڵ" #: server_databases.php:302 tbl_structure.php:149 tbl_structure.php:150 #: tbl_structure.php:581 msgid "Drop" -msgstr "" +msgstr "فڕیدان" #: db_structure.php:711 tbl_operations.php:632 msgid "Check table" @@ -604,7 +607,7 @@ msgstr "فەرهەنگی زانیاریەکان" #: db_tracking.php:76 msgid "Tracked tables" -msgstr "" +msgstr "شوێنکەوتەی خشتە" #: db_tracking.php:81 libraries/Menu.class.php:178 #: libraries/config/messages.inc.php:508 @@ -659,7 +662,7 @@ msgstr "پیشاندان" #: db_tracking.php:98 js/messages.php:34 msgid "Delete tracking data for this table" -msgstr "" +msgstr "سڕینەوە داتا شوێنکەوتووەکان لەم خشتەیەدا" #: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" @@ -675,7 +678,7 @@ msgstr "وەشانەکان" #: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 msgid "Tracking report" -msgstr "" +msgstr "ڕاپۆرتە شوێنکەتووەکان" #: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 msgid "Structure snapshot" @@ -683,7 +686,7 @@ msgstr "" #: db_tracking.php:185 msgid "Untracked tables" -msgstr "" +msgstr "خشتە شوێن نەکەوتوەکان" #: db_tracking.php:204 tbl_structure.php:680 msgid "Track table" From b3f5413f4c91bfcfb4732d9c05b6eb3a5bb3ad9e Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Fri, 3 Aug 2012 20:24:54 +0200 Subject: [PATCH 60/79] Translated using Weblate. --- po/tr.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/po/tr.po b/po/tr.po index 604788fa14..db25d4f013 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,15 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-07-27 10:40+0200\n" -"PO-Revision-Date: 2012-07-27 17:50+0200\n" +"PO-Revision-Date: 2012-08-03 20:24+0200\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: turkish \n" +"Language-Team: Turkish " +"\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 #: libraries/DisplayResults.class.php:794 @@ -1600,7 +1601,7 @@ msgstr "Kullanılan değişken / formül" #: js/messages.php:227 msgid "Test" -msgstr "Sınama" +msgstr "Deneme" #: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 #: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 @@ -13223,7 +13224,7 @@ msgstr "tmp_table_size 'a karşı max_heap_table_size" #: libraries/advisory_rules.txt:258 msgid "tmp_table_size and max_heap_table_size are not the same." -msgstr "tmp_table_size ve max_heap_table_size aynı şey değildir." +msgstr "tmp_table_size ve max_heap_table_size aynı değiller." #: libraries/advisory_rules.txt:259 msgid "" From 8625fc6edd06fdfa5a8bb79e2bc7a78aa7cdc921 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 4 Aug 2012 20:24:18 +0530 Subject: [PATCH 61/79] missing function parameters --- server_privileges.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server_privileges.php b/server_privileges.php index be249ce59a..26114a00f2 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -388,7 +388,8 @@ if ($GLOBALS['is_ajax_request'] $extra_data = PMA_getExtraDataForAjaxBehavior( $isPass, $link_export, (isset($sql_query) ? $sql_query : ''), - $link_edit, $dbname_is_wildcard + $link_edit, $dbname_is_wildcard, + $hostname, $username ); if ($message instanceof PMA_Message) { From 626e6376a7bec57261595cce20492c2dcd5d2797 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 4 Aug 2012 22:06:52 +0530 Subject: [PATCH 62/79] remove duplicate code --- libraries/operations.lib.php | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 7e4fe2ca25..cdc888ad5b 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -117,15 +117,11 @@ function PMA_getHtmlForDropDatabaseLink($db) $html_output .= __('Remove database') . ''; $html_output .= '' - . '
    '; + $html_output .= PMA_getDeleteDataOrTablelink( + $this_url_params, + 'DROP_DATABASE', + __('Drop the database (DROP)'), + 'drop_db_anchor'); return $html_output; } @@ -1207,12 +1203,18 @@ function PMA_getHtmlForDeleteDataOrTable( if (!empty ($truncate_table_url_params)){ $html_output .= PMA_getDeleteDataOrTablelink( - $truncate_table_url_params, 'TRUNCATE_TABLE' + $truncate_table_url_params, + 'TRUNCATE_TABLE', + __('Empty the table (TRUNCATE)'), + 'truncate_tbl_anchor' ); } if (!empty ($drop_table_url_params)) { $html_output .= PMA_getDeleteDataOrTablelink( - $drop_table_url_params, 'DROP_TABLE' + $drop_table_url_params, + 'DROP_TABLE', + __('Delete the table (DROP)'), + 'drop_tbl_anchor' ); } $html_output .= '
    '; @@ -1221,22 +1223,23 @@ function PMA_getHtmlForDeleteDataOrTable( } /** - * Get the HTML link for Truncate table and Drop table + * Get the HTML link for Truncate table, Drop table and Drop db * * @param array $url_params url parameter array for delete data or table - * @param string $syntax TRUNCATE_TABLE or DROP_TABLE + * @param string $syntax TRUNCATE_TABLE or DROP_TABLE or DROP_DATABASE + * @param string $link link to be shown * * @return String html output */ -function PMA_getDeleteDataOrTablelink($url_params, $syntax) +function PMA_getDeleteDataOrTablelink($url_params, $syntax, $link, $id) { return '
  • ' - . __('Empty the table (TRUNCATE)') . '' + . $link . '' . PMA_CommonFunctions::getInstance()->showMySQLDocu( 'SQL-Syntax', $syntax ) From 7e3924e318dc1b5a71da4a778fc5a484c3d5c84d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 4 Aug 2012 22:15:04 +0530 Subject: [PATCH 63/79] [interface] Designer sometimes places tables on the top menu --- ChangeLog | 1 + pmd_general.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 137e7b1290..00919acfc1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ phpMyAdmin - ChangeLog - bug #3547825 [edit] BLOB download no longer works - bug #3541966 [config] Error in generated configuration arrray - bug #3553551 [GUI] Invalid HTML code in multi submits confirmation form +[interface] Designer sometimes places tables on the top menu 3.5.2.1 (2012-08-03) - [security] Fixed local path disclosure vulnerability, see PMASA-2012-3 diff --git a/pmd_general.php b/pmd_general.php index 7f62bf227c..696c09885f 100644 --- a/pmd_general.php +++ b/pmd_general.php @@ -189,8 +189,8 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) { px; - top: px; + left: px; + top: px; visibility: ; "> From b00ae196dbd7b645fabc1a0223e58e43eb8278a5 Mon Sep 17 00:00:00 2001 From: shanyan baishui Date: Sat, 4 Aug 2012 06:39:43 +0200 Subject: [PATCH 64/79] Translated using Weblate. --- po/zh_CN.po | 76 +++++++++++++++++++++++++++++++++++------------------ 1 file changed, 51 insertions(+), 25 deletions(-) diff --git a/po/zh_CN.po b/po/zh_CN.po index 92149f7a64..8861c9a550 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -4,15 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-04 13:42+0200\n" -"PO-Revision-Date: 2012-07-23 19:45+0200\n" +"PO-Revision-Date: 2012-08-04 06:39+0200\n" "Last-Translator: shanyan baishui \n" -"Language-Team: chinese_simplified \n" +"Language-Team: Chinese (China) " +"\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1677 @@ -1974,7 +1975,7 @@ msgstr "点击下箭头以设置显示的字段" msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." -msgstr "" +msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除链接相关功能可能无法正常使用。" #: js/messages.php:355 msgid "" @@ -6544,7 +6545,7 @@ msgstr "未找到用于 GIS 可视化的数据。" #: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 msgid "GLOBALS overwrite attempt" -msgstr "" +msgstr "企图覆盖 GLOBALS" #: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:57 msgid "SQL result" @@ -11725,7 +11726,7 @@ msgstr "查询缓存模式" #: po/advisory_rules.php:76 msgid "Suboptimal caching method." -msgstr "" +msgstr "最佳缓存模式。" #: po/advisory_rules.php:77 msgid "" @@ -11804,6 +11805,10 @@ msgid "" "using this formula: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" msgstr "" +"大量碎片很可能会增加 Qcache_lowmem_prunes 。这可能由 {query_cache_size} " +"过小而导致大量查询缓存低内存清理。刷新查询缓存 (可能锁住查询缓存很长时间) 可以临时解决这个问题。仔细调整 " +"{query_cache_min_res_unit} 到一个更小的值将会有所帮助,如您可以使用下列公式来计算并设置您查询缓存大小平均值: (查询缓存大小 " +"- 查询缓存剩余大小) / 查询缓存中的查询数量" #: po/advisory_rules.php:93 #, php-format @@ -11815,22 +11820,21 @@ msgstr "" #: po/advisory_rules.php:95 msgid "Query cache low memory prunes" -msgstr "" +msgstr "查询缓存低内存清理" #: po/advisory_rules.php:96 -#, fuzzy #| msgid "The amount of free memory for query cache." msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." -msgstr "查询缓存中空闲的内存总数。" +msgstr "在查询缓存内存过低时会清理已缓存的查询。" #: po/advisory_rules.php:97 msgid "" "You might want to increase {query_cache_size}, however keep in mind that the " "overhead of maintaining the cache is likely to increase with its size, so do " "this in small increments and monitor the results." -msgstr "" +msgstr "您可能需要增加 {query_cache_size},但请注意增加它可能会导致的维护开销,所以请慢慢增加并观察结果。" #: po/advisory_rules.php:98 #, php-format @@ -11847,7 +11851,7 @@ msgstr "查询缓存最大值" msgid "" "The query cache size is above 128 MiB. Big query caches may cause " "significant overhead that is required to maintain the cache." -msgstr "" +msgstr "查询缓存超过 128 MB 。过大的查询缓存可能会引起额外的维护开销。" #: po/advisory_rules.php:102 msgid "" @@ -11868,7 +11872,7 @@ msgstr "查询缓存结果最小大小" #: po/advisory_rules.php:106 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." -msgstr "" +msgstr "查询缓存结果最大大小已设为默认值 1 MB 。" #: po/advisory_rules.php:107 msgid "" @@ -11881,6 +11885,9 @@ msgid "" "(often invalidated due to table updates) increasing {query_cache_limit} " "might reduce efficiency." msgstr "" +"修改 {query_cache_limit} (通常是增加) 可能提升效率。该变量决定可能要插入到查询缓存中查询结果的最大大小。若多数超过 1 MB " +"的查询结果能很好的缓存 (多读、少写) 则增加 {query_cache_limit} 将会提升效率。若多数超过 1 MB 的查询结果不能很好的缓存 " +"(通常因为表更新而失效) 增加 {query_cache_limit} 将会降低效率。" #: po/advisory_rules.php:108 msgid "query_cache_limit is set to 1 MiB" @@ -12028,7 +12035,7 @@ msgstr "这说明很多查询都需要全表扫描。请在合适的地方添加 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" -msgstr "" +msgstr "下一行读取率: %s,该值应低于 1 每小时" #: po/advisory_rules.php:145 msgid "tmp_table_size vs. max_heap_table_size" @@ -12044,7 +12051,7 @@ msgid "" "value of either to determine the maximum size of in-memory tables. So if you " "wish to increase the in-memory table limit you will have to increase the " "other value as well." -msgstr "" +msgstr "若您故意改变了其中一个值: 服务器使用较低的值来确定内存表的最大大小。如果您想增加内存表的大小您应该同时修改另一个值。" #: po/advisory_rules.php:148 #, php-format @@ -12071,6 +12078,10 @@ msgid "" "mentioned in the beginning of an Article by the Pythian Group" msgstr "" +"增加 {max_heap_table_size} 和 {tmp_table_size} " +"可能会有帮助。但有些临时表总是会写入硬盘,和这些变量无关。要避免这些,您需要重写您的查询来避免 Pythian " +"小组的文章开头所提到的这些条件 (临时表内: 具有 BLOB 或 TEXT 字段或具有大于 512 字节的字段)" #: po/advisory_rules.php:153 #, php-format @@ -12095,13 +12106,17 @@ msgid "" "mentioned in the MySQL Documentation" msgstr "" +"增加 {max_heap_table_size} 和 {tmp_table_size} " +"可能会有帮助。但有些临时表总是会写入硬盘,和这些变量无关。要避免这些,您需要重写您的查询来避免 MySQL 文档中所提到的这些条件 (临时表内: 具有 BLOB 或 TEXT 字段或具有大于 512 字节的字段)" #: po/advisory_rules.php:158 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " "less than 1 per hour" -msgstr "" +msgstr "临时表硬盘写入率: %s,该值应低于 1 每小时" #: po/advisory_rules.php:160 msgid "MyISAM key buffer size" @@ -12122,36 +12137,35 @@ msgid "key_buffer_size is 0" msgstr "key_buffer_size 为 0" #: po/advisory_rules.php:165 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" -msgstr "排序缓存大小" +msgstr "最大 %% MyISAM 索引缓存从未使用" #: po/advisory_rules.php:166 po/advisory_rules.php:171 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." -msgstr "排序缓存大小" +msgstr "MyISAM 索引缓存 %% 使用率低。" #: po/advisory_rules.php:167 po/advisory_rules.php:172 msgid "" "You may need to decrease the size of {key_buffer_size}, re-examine your " "tables to see if indexes have been removed, or examine queries and " "expectations about what indexes are being used." -msgstr "" +msgstr "您可能需要减小 {key_buffer_size} 的大小,重新检查您的表是否删除了索引或检查查询期望使用的索引。" #: po/advisory_rules.php:168 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" -msgstr "排序缓存大小" +msgstr "最大 %% MyISAM 索引缓存从未使用: %s%%,该值应高于 95%%" #: po/advisory_rules.php:170 -#, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" -msgstr "排序缓存大小" +msgstr "MyISAM 索引缓存使用百分比" #: po/advisory_rules.php:173 #, php-format @@ -12374,6 +12388,8 @@ msgid "" "source-of-aborted_connects/\">This article might help you track down the " "source." msgstr "" +"连接通常因为无法被授权而中止。这篇文章对您追踪来源可能有所帮助。" #: po/advisory_rules.php:233 #, php-format @@ -12389,7 +12405,7 @@ msgstr "已中止连接的比例" #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" -msgstr "" +msgstr "已中止连接率为 %s,该值应低于 1 每小时" #: po/advisory_rules.php:240 #| msgid "Format of imported file" @@ -12460,6 +12476,11 @@ msgid "" "fine. See also this blog entry" msgstr "" +"在一个 InnoDB 表写入很多的系统上您应该将 innodb_log_file_size 设为 {innodb_buffer_pool_size} 的 " +"25%% 。因为该值越大,当数据库崩溃时恢复的时间就越长,所以该值不应高于 256 MB 。请注意您不能简单的修改该变量的值。您需要关闭服务器,删除 " +"InnoDB 日志文件,在 my.cnf 中设置新的值,启动服务器,一切正常后再检查错误日志。参见这篇博客" #: po/advisory_rules.php:258 #, php-format @@ -12533,6 +12554,8 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" +"您当前的 InnoDB 缓冲池使用了内存的 %s%% 。此规则在您分配少于 60%% 时被触发,然而这也可能因为您没有太多 InnoDB " +"表所以这样足够或者服务器上还运行了其它服务。" #: po/advisory_rules.php:270 msgid "MyISAM concurrent inserts" @@ -12548,6 +12571,9 @@ msgid "" "writers for a given table. See also MySQL Documentation" msgstr "" +"设置 {concurrent_insert} 为 1 可以减少在相同表上的读取和写入冲突。参见 MySQL " +"文档" #: po/advisory_rules.php:273 msgid "concurrent_insert is set to 0" From 9fe91fbec21dc025cfa1e722595da62972793240 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Fri, 3 Aug 2012 20:24:54 +0200 Subject: [PATCH 65/79] Translated using Weblate. --- po/tr.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/tr.po b/po/tr.po index 344f077ab2..71aaa3128c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-04 13:42+0200\n" -"PO-Revision-Date: 2012-07-26 02:11+0200\n" +"PO-Revision-Date: 2012-08-03 20:24+0200\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1677 @@ -1736,7 +1736,7 @@ msgstr "Kullanılan değişken / formül" #: js/messages.php:231 msgid "Test" -msgstr "Sınama" +msgstr "Deneme" #: js/messages.php:236 pmd_general.php:382 pmd_general.php:419 #: pmd_general.php:539 pmd_general.php:587 pmd_general.php:663 @@ -12625,7 +12625,7 @@ msgstr "tmp_table_size 'a karşı max_heap_table_size" #: po/advisory_rules.php:146 msgid "tmp_table_size and max_heap_table_size are not the same." -msgstr "tmp_table_size ve max_heap_table_size aynı şey değildir." +msgstr "tmp_table_size ve max_heap_table_size aynı değiller." #: po/advisory_rules.php:147 msgid "" From 2f0b535fa6cd502cdee9b31000fd45189b920a42 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sat, 4 Aug 2012 22:32:22 +0530 Subject: [PATCH 66/79] Typo in function name --- libraries/operations.lib.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index cdc888ad5b..42c4db8224 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1076,7 +1076,7 @@ function PMA_getListofMaintainActionLink($is_myisam_or_aria, . $common_functions->backquote($GLOBALS['table']), 'table_maintenance' => 'Go', ); - $html_output .= PMA_getMaitainActionlink( + $html_output .= PMA_getMaintainActionlink( 'Check table', $params, $url_params, @@ -1089,7 +1089,7 @@ function PMA_getListofMaintainActionLink($is_myisam_or_aria, . $common_functions->backquote($GLOBALS['table']) . ' ENGINE = InnoDB;' ); - $html_output .= PMA_getMaitainActionlink( + $html_output .= PMA_getMaintainActionlink( 'Defragment table', $params, $url_params, @@ -1103,7 +1103,7 @@ function PMA_getListofMaintainActionLink($is_myisam_or_aria, . $common_functions->backquote($GLOBALS['table']), 'table_maintenance' => 'Go', ); - $html_output .= PMA_getMaitainActionlink( + $html_output .= PMA_getMaintainActionlink( 'Analyze table', $params, $url_params, @@ -1116,7 +1116,7 @@ function PMA_getListofMaintainActionLink($is_myisam_or_aria, . $common_functions->backquote($GLOBALS['table']), 'table_maintenance' => 'Go', ); - $html_output .= PMA_getMaitainActionlink( + $html_output .= PMA_getMaintainActionlink( 'Repair table', $params, $url_params, @@ -1129,7 +1129,7 @@ function PMA_getListofMaintainActionLink($is_myisam_or_aria, . $common_functions->backquote($GLOBALS['table']), 'table_maintenance' => 'Go', ); - $html_output .= PMA_getMaitainActionlink( + $html_output .= PMA_getMaintainActionlink( 'Optimize table', $params, $url_params, @@ -1148,7 +1148,7 @@ function PMA_getListofMaintainActionLink($is_myisam_or_aria, 'reload' => 1, ); - $html_output .= PMA_getMaitainActionlink( + $html_output .= PMA_getMaintainActionlink( 'Flush the table (FLUSH)', $params, $url_params, @@ -1167,7 +1167,7 @@ function PMA_getListofMaintainActionLink($is_myisam_or_aria, * * @return string $html_output */ -function PMA_getMaitainActionlink($action, $params, $url_params, $link, +function PMA_getMaintainActionlink($action, $params, $url_params, $link, $chapter = 'MySQL_Database_Administration' ) { return '
  • ' From fa61beb385f8a2b6389857c2d03ba0e58af0cfe7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 4 Aug 2012 22:42:07 +0530 Subject: [PATCH 67/79] Coding style fixes --- pmd_general.php | 146 ++++++++++++++++++++++++++---------------------- 1 file changed, 79 insertions(+), 67 deletions(-) diff --git a/pmd_general.php b/pmd_general.php index f6379dbe77..690107e50a 100644 --- a/pmd_general.php +++ b/pmd_general.php @@ -48,27 +48,27 @@ $scripts->addFile('pmd/ajax.js'); $scripts->addFile('pmd/history.js'); $scripts->addFile('pmd/move.js'); $scripts->addFile('pmd/iecanvas.js', true); -$scripts->addCode(' - var server = "' . PMA_escapeJsString($server) . '"; +$scripts->addCode( + 'var server = "' . PMA_escapeJsString($server) . '"; var db = "' . PMA_escapeJsString($db) . '"; - var token = "' . PMA_escapeJsString($token) . '"; -'); + var token = "' . PMA_escapeJsString($token) . '";' +); if (isset($_REQUEST['query'])) { - $scripts->addCode(' - $(function() { - $(".trigger").click(function() { - $(".panel").toggle("fast"); - $(this).toggleClass("active"); - return false; - }); - }); - '); + $scripts->addCode( + '$(function() { + $(".trigger").click(function() { + $(".panel").toggle("fast"); + $(this).toggleClass("active"); + return false; + }); + });' + ); } -$scripts->addCode(' - $(function() { +$scripts->addCode( + '$(function() { Main(); - }); -'); + });' +); $scripts->addCode($script_tabs); $scripts->addCode($script_contr); $scripts->addCode($script_display_field); @@ -78,55 +78,66 @@ require 'libraries/db_info.inc.php'; ?>
    From c5f0f8618226a16720e7c73ecb5073082790db87 Mon Sep 17 00:00:00 2001 From: Chanaka Indrajith Date: Sun, 5 Aug 2012 01:39:48 +0530 Subject: [PATCH 68/79] Support for transformations inside VIEWs created using create view link --- view_create.php | 109 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) diff --git a/view_create.php b/view_create.php index 2764adb77c..76e4d88c1d 100644 --- a/view_create.php +++ b/view_create.php @@ -63,6 +63,113 @@ if (isset($_REQUEST['createview'])) { } if (PMA_DBI_try_query($sql_query)) { + + // If different column names defined for VIEW + $view_columns = array(); + if (isset($_REQUEST['view']['column_names'])) { + $view_columns = explode(',', $_REQUEST['view']['column_names']); + } + + $column_map = array(); + // Select query which give results for VIEW + $real_source_result = PMA_DBI_try_query($_REQUEST['view']['as']); + + if ($real_source_result !== false) { + + $real_source_fields_meta = PMA_DBI_get_fields_meta($real_source_result); + + if (count($real_source_fields_meta) > 0) { + + for ($i=0; $itable; + $map['refering_column'] = $real_source_fields_meta[$i]->name; + + if (count($view_columns) > 1) { + $map['real_column'] = $view_columns[$i]; + } + + $column_map[] = $map; + + } + + } + + } + unset($real_source_result); + + // Get the existing transformation details of the same database + // from pma_column_info table + $pma_transformation_sql = 'SELECT * FROM ' + . $common_functions->backquote($cfgRelation['db']) . '.' + . $common_functions->backquote($cfgRelation['column_info']) + . ' WHERE `db_name` = \'' + . $common_functions->sqlAddSlashes($GLOBALS['db']) . '\''; + + $pma_tranformation_data = PMA_DBI_try_query($pma_transformation_sql); + + if ($pma_tranformation_data !== false) { + + // Need to store new transformation details for VIEW + $new_transformations_sql = 'INSERT INTO ' + . $common_functions->backquote($cfgRelation['db']) . '.' + . $common_functions->backquote($cfgRelation['column_info']) + . ' (`db_name`, `table_name`, `column_name`, `comment`, ' + . '`mimetype`, `transformation`, `transformation_options`)' + . ' VALUES '; + + $column_count = 0; + $add_comma = false; + + while ($data_row = PMA_DBI_fetch_assoc($pma_tranformation_data)) { + + foreach ($column_map as $column) { + + if ($data_row['table_name'] == $column['table_name'] + && $data_row['column_name'] == $column['refering_column'] + ) { + + $new_transformations_sql .= $add_comma ? ', ' : ''; + + $new_transformations_sql .= '(' + . '\'' . $GLOBALS['db'] . '\', ' + . '\'' . $_REQUEST['view']['name'] . '\', ' + . '\''; + + $new_transformations_sql .= (isset($column['real_column'])) + ? $column['real_column'] + : $column['refering_column']; + + $new_transformations_sql .= '\', ' + . '\'' . $data_row['comment'] . '\', ' + . '\'' . $data_row['mimetype'] . '\', ' + . '\'' . $data_row['transformation'] . '\', ' + . '\'' + . $common_functions->sqlAddSlashes( + $data_row['transformation_options'] + ) + . '\')'; + + $add_comma = true; + $column_count++; + break; + + } + + } + + if ($column_count == count($column_map)) { + break; + } + + } + + // Store new transformations + PMA_DBI_try_query($new_transformations_sql); + + } + if ($GLOBALS['is_ajax_request'] != true) { $message = PMA_Message::success(); include './' . $cfg['DefaultTabDatabase']; @@ -75,7 +182,9 @@ if (isset($_REQUEST['createview'])) { ) ); } + exit; + } else { if ($GLOBALS['is_ajax_request'] != true) { $message = PMA_Message::rawError(PMA_DBI_getError()); From 9c16007d00725bdc8b4a268db3b23b367c952ff7 Mon Sep 17 00:00:00 2001 From: Aputsiaq Niels Janussen Date: Sun, 5 Aug 2012 01:36:20 +0200 Subject: [PATCH 69/79] Translated using Weblate. --- po/da.po | 128 +++++++++++++++++++++++++++---------------------------- 1 file changed, 63 insertions(+), 65 deletions(-) diff --git a/po/da.po b/po/da.po index eeec414b4d..3d47785aaf 100644 --- a/po/da.po +++ b/po/da.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-04 13:42+0200\n" -"PO-Revision-Date: 2012-07-23 04:24+0200\n" +"PO-Revision-Date: 2012-08-05 01:36+0200\n" "Last-Translator: Aputsiaq Niels Janussen \n" -"Language-Team: danish \n" +"Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1677 @@ -827,10 +827,9 @@ msgid "Enter each value in a separate field" msgstr "Indtast hver værdi i et separat felt" #: enum_editor.php:123 -#, fuzzy #| msgid "+ Add a value" msgid "Add a value" -msgstr "+ Tilføj en værdi" +msgstr "Tilføj en værdi" #: enum_editor.php:129 gis_data_editor.php:317 msgid "Output" @@ -3399,6 +3398,8 @@ msgid "" "Defines the minimum size for input fields generated for CHAR and VARCHAR " "columns" msgstr "" +"Definerer den mindste størrelse på input-felter som genereres for CHAR- og " +"VARCHAR-kolonner" #: libraries/config/messages.inc.php:35 #| msgid "Customize text input fields" @@ -3410,6 +3411,8 @@ msgid "" "Defines the maximum size for input fields generated for CHAR and VARCHAR " "columns" msgstr "" +"Definerer den maksimale størrelse på input-felter som genereres for CHAR- og " +"VARCHAR-kolonner" #: libraries/config/messages.inc.php:37 #| msgid "Maximum size for temporary sort files" @@ -4725,6 +4728,8 @@ msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host" msgstr "" +"En alternativ vært til lageropbevaring af konfiguration; lad stå tom for at " +"benytte den vært som allerede er defineret" #: libraries/config/messages.inc.php:386 #| msgid "Control user" @@ -4809,6 +4814,8 @@ msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed" msgstr "" +"Begrænser antallet af tabel-præferencer som lagres i databasen. De ældte " +"poster fjernes automatisk" #: libraries/config/messages.inc.php:403 #| msgid "Maximum number of tables displayed in table list" @@ -5182,6 +5189,7 @@ msgstr "Vis SQL-forespørgsler" msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" +"Definerer som forespørgselsboksen skal forblive på siden efter indsendelse" #: libraries/config/messages.inc.php:474 libraries/sql_query_form.lib.php:352 #| msgid "Hide query box" @@ -5557,7 +5565,7 @@ msgstr "Serveren svarer ikke." #: libraries/database_interface.lib.php:1820 msgid "Please check privileges of directory containing database." -msgstr "" +msgstr "Tjek venligst privilegier for mappen som indeholder databasen." #: libraries/database_interface.lib.php:1828 msgid "Details..." @@ -6504,7 +6512,7 @@ msgstr "" #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" -msgstr "" +msgstr "Bloggen The PrimeBase XT af Paul McCullagh" #: libraries/engines/pbxt.lib.php:130 msgid "The PrimeBase Media Streaming (PBMS) home page" @@ -7735,7 +7743,6 @@ msgid "Trigger name" msgstr "Triggernavn" #: libraries/rte/rte_triggers.lib.php:326 -#, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" @@ -8284,7 +8291,7 @@ msgstr "Datalager" #: libraries/tbl_properties.inc.php:692 msgid "PARTITION definition" -msgstr "" +msgstr "PARTITION-definition" #: libraries/tbl_select.lib.php:86 pmd_general.php:481 pmd_general.php:501 #: pmd_general.php:623 pmd_general.php:636 pmd_general.php:699 @@ -10650,7 +10657,6 @@ msgid "Using the monitor:" msgstr "Brug af monitor:" #: server_status.php:1634 -#, fuzzy #| msgid "" #| "Ok, you are good to go! Once you click 'Start monitor' your browser will " #| "refresh all displayed charts in a regular interval. You may add charts " @@ -10661,10 +10667,10 @@ msgid "" "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -"Når du klikker på 'Start monitor' vil din browser opdatere alle viste " -"diagrammer regelmæssigt. Du kan tilføje diagrammer og ændre " -"opdateringsfrekvensen under 'Indstilinger' eller fjerne diagrammer ved at " -"bruge ikonet cog på det relevante diagram. " +"Din browser vil opdatere alle viste diagrammer i et regelmæssigt interval. " +"Du kan tilføje diagrammer og ændre opdateringsfrekvensen under " +"'Indstillinger', eller fjerne hvilket som helst diagram ved at bruge ikonet " +"cog på det relevante diagram." #: server_status.php:1636 msgid "" @@ -11216,10 +11222,10 @@ msgstr "" "dette system." #: setup/lib/index.lib.php:324 -#, fuzzy #| msgid "You should use SSL connections if your web server supports it." msgid "You should use SSL connections if your database server supports it." -msgstr "Du bør bruge en SSL-forbindelse, hvis din webserver understøtter det. " +msgstr "" +"Du bør bruge SSL-forbindelser, hvis din database-server understøtter det." #: setup/lib/index.lib.php:337 msgid "You should use mysqli for performance reasons." @@ -11342,39 +11348,34 @@ msgid "Continue insertion with %s rows" msgstr "Fortsæt indsættelse med %s rækker" #: tbl_chart.php:89 -#, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" -msgstr "Søjle" +msgstr "Bjælke" #: tbl_chart.php:91 -#, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" -msgstr "Kolonnenavn" +msgstr "Kolonne" #: tbl_chart.php:93 -#, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "Linje" #: tbl_chart.php:95 -#, fuzzy #| msgid "Spline" msgctxt "Chart type" msgid "Spline" msgstr "Spline" #: tbl_chart.php:97 -#, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" -msgstr "Lagkage" +msgstr "Cirkel" #: tbl_chart.php:100 msgid "Stacked" @@ -11415,7 +11416,7 @@ msgstr "Y-værdier" #: tbl_create.php:31 #, php-format msgid "Table %s already exists!" -msgstr "" +msgstr "Tabellen %s eksisterer allerede!" #: tbl_create.php:227 #, php-format @@ -11479,10 +11480,9 @@ msgid "Add index" msgstr "Tilføj indeks" #: tbl_indexes.php:175 -#, fuzzy #| msgid "Edit mode" msgid "Edit index" -msgstr "Redigeringstilstand" +msgstr "Redigér indeks" #: tbl_indexes.php:187 msgid "Index name:" @@ -11620,10 +11620,9 @@ msgid "Check referential integrity:" msgstr "Check reference-integriteten:" #: tbl_printview.php:72 -#, fuzzy #| msgid "Show tables" msgid "Showing tables" -msgstr "Vis tabeller" +msgstr "Viser tabeller" #: tbl_printview.php:269 tbl_structure.php:780 msgid "Space usage" @@ -12309,10 +12308,10 @@ msgstr "" "sekund." #: po/advisory_rules.php:80 -#, fuzzy, php-format +#, php-format #| msgid "Query cache efficiency (%)" msgid "Query cache efficiency (%%)" -msgstr "Effektivitet (%) af forespørgselsmellemlager " +msgstr "Effektiviteten af forespørgselsmellemlager (%%)" #: po/advisory_rules.php:81 msgid "Query cache not running efficiently, it has a low hit rate." @@ -12416,7 +12415,7 @@ msgstr "" "og check resultatet." #: po/advisory_rules.php:98 -#, fuzzy, php-format +#, php-format #| msgid "" #| "The ratio of removed queries to inserted queries is %s%%. The lower this " #| "value is, the better (This rules firing limit: 0.1%)" @@ -12425,7 +12424,7 @@ msgid "" "value is, the better (This rules firing limit: 0.1%%)" msgstr "" "Andelen af fjernede forespørgsler til indsatte forespørgsler er %s%%. Jo " -"mindre denne værdi er des bedre. (Denne regel aktiveres ved 0,1%)" +"mindre denne værdi er des bedre. (Denne regels aktiveringsgrænse: 0.1%%)" #: po/advisory_rules.php:100 msgid "Query cache max size" @@ -12533,7 +12532,6 @@ msgid "There are lots of rows being sorted." msgstr "Der er mange rækker, der sorteres." #: po/advisory_rules.php:122 -#, fuzzy #| msgid "" #| "there is nothing wrong with a high amount of row sorting, you might t to " #| "e sure that the queries which require a lot of sorting use exed fields " @@ -12544,9 +12542,10 @@ msgid "" "indexed columns in the ORDER BY clause, as this will result in much faster " "sorting" msgstr "" -"Selvom der intet er galt med en stor del rækkesorteringer, så bør " -"forespørgsler, som har brug for meget sortering bruge indekserede felter i " -"ORDER BY, da dette vil resultere i en meget hurtigere sortering." +"Selvom der intet er galt med en stor del rækkesorteringer, så bør du " +"eventuelt sikre, at forespørgsler som kræver meget sortering bruger " +"indekserede kolonner i klausulen ORDER BY, da dette vil resultere i en meget " +"hurtigere sortering" #: po/advisory_rules.php:123 #, php-format @@ -12562,7 +12561,6 @@ msgid "There are too many joins without indexes." msgstr "Der er for mange joins uden indeks." #: po/advisory_rules.php:127 -#, fuzzy #| msgid "" #| "eans that joins are doing full table scans. Adding indexes for the lds ng " #| "used in the join conditions will greatly speed up table joins" @@ -12571,8 +12569,8 @@ msgid "" "columns being used in the join conditions will greatly speed up table joins" msgstr "" "Dette betyder, at joins foretager en fuld tabelskanning. Oprettelse af " -"indeks for felter, der bruges i join-betingelserne vil forøge hastigheden af " -"joins." +"indeks for kolonner, der bruges i join-betingelserne vil forøge hastigheden " +"af tabel-joins" #: po/advisory_rules.php:128 #, php-format @@ -12728,7 +12726,6 @@ msgid "Temp disk rate" msgstr "Frekvens af midlertidig disk" #: po/advisory_rules.php:157 -#, fuzzy #| msgid "" #| "sing {max_heap_table_size} and {tmp_table_size} might help. However e " #| "porary tables are always being written to disk, independent of value of " @@ -12750,12 +12747,12 @@ msgstr "" "skrives nogle midlertidige tabeller altid til disk uafhængig af disse " "variable. For at undgå disse skal man omskrive sine forespørgsler for at " "undgå disse betingelser (inden for en midlertidig tabel: Tilstedeværelse af " -"BLOB eller TEXT felter eller et felt større end 512 bytes) som nævnt i MySQL Documentation" +"BLOB eller TEXT-kolonne eller en kolonne større end 512 bytes) som nævnt i " +"MySQL Documentation" #: po/advisory_rules.php:158 -#, fuzzy, php-format +#, php-format #| msgid "" #| "f temporay tables being written to disk: %s, this value should be s than " #| "er hour" @@ -12763,8 +12760,8 @@ msgid "" "Rate of temporary tables being written to disk: %s, this value should be " "less than 1 per hour" msgstr "" -"Frekvens af midlertidige tabeller skrevet til disk: %s. Denne værdi bør være " -"mindre end 1 pr time" +"Frekvens af midlertidige tabeller som skrives til disk: %s. Denne værdi bør " +"være mindre end 1 pr time" #: po/advisory_rules.php:160 msgid "MyISAM key buffer size" @@ -12809,24 +12806,24 @@ msgstr "" "indeks der bruges." #: po/advisory_rules.php:168 -#, fuzzy, php-format +#, php-format #| msgid "" #| "max %% MyISAM key buffer ever used: %s, this value should be above 95%%" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "" -"maksimal %% MyISAM nøglebuffer nogensinde brugt: %s. Denne værdi bør være " -"over 95%%" +"maksimal %% MyISAM-nøglebuffer som nogensinde bruges: %s%%. Denne værdi bør " +"være over 95%%" #: po/advisory_rules.php:170 msgid "Percentage of MyISAM key buffer used" msgstr "Procentdel brugt af MyISAM nøglebuffer" #: po/advisory_rules.php:173 -#, fuzzy, php-format +#, php-format #| msgid "%% MyISAM key buffer used: %s, this value should be above 95%%" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "%% MyISAM nøglebuffer brugt: %s. Denne værdi bør være over 95%%" +msgstr "%% MyISAM-nøglebuffer som bruges: %s%%. Denne værdi bør være over 95%%" #: po/advisory_rules.php:175 msgid "Percentage of index reads from memory" @@ -13146,7 +13143,7 @@ msgstr "" "buffer poolen." #: po/advisory_rules.php:257 -#, fuzzy, php-format +#, php-format #| msgid "" #| "ally one a system with a lot of writes to InnoDB tables you should " #| "odb_log_file_size to 25%% of {innodb_buffer_pool_size}. However bigger s " @@ -13168,12 +13165,13 @@ msgid "" "fine. See also this blog entry" msgstr "" -"Særligt på et system med mange skrivninger til InnoDB tabeller bør " -"innodb_log_file_size sættes til 25%% af{innodb_buffer_pool_size}. Dog jo " +"Særligt på et system med mange skrivninger til InnoDB-tabeller bør " +"innodb_log_file_size sættes til 25%% af {innodb_buffer_pool_size}. Dog jo " "større værdi, jo længere er genoprettelsestiden ved databasenedbrud. Derfor " "bør værdien ikke være højere end 256 MiB. Bemærk, at man ikke bare kan ændre " -"denne værdi. Man skal lukke serveren ned, fjerne InnoDB logfiler, sætte den " -"nye værdi i my.cnf, starte serveren og checke logfiler for fejl. Se også dette blogindlæg" @@ -13195,7 +13193,7 @@ msgid "The InnoDB log file size is inadequately large." msgstr "InnoDB logfilen er utilstrækkelig stor." #: po/advisory_rules.php:262 -#, fuzzy, php-format +#, php-format #| msgid "" #| "usually sufficient to set innodb_log_file_size to 25%% of the size " #| "nodb_buffer_pool_size}. A very innodb_log_file_size slows down the overy " @@ -13221,17 +13219,17 @@ msgstr "" "størrelsen af {innodb_buffer_pool_size}. En meget høj innodb_log_file_size " "reducerer genoprettelsestiden betydeligt efter et databasenedbrud. Se også " "denne artikel.Man skal lukke serveren ned, " -"fjerne InnoDB logfiler, sætte den nye værdi i my.cnf, starte serveren og " -"checke logfiler for fejl. Se også dette blogindlæg" +"innodb_log_file_size/\">denne artikel.Man skal lukke serveren ned, fjerne " +"InnoDB-logfiler, sætte den nye værdi i my.cnf, starte serveren og tjekke at " +"alt gik godt i fejllogene. Se også dette blogindlæg" #: po/advisory_rules.php:263 -#, fuzzy, php-format +#, php-format #| msgid "Your absolute InnoD log size is %s MiB" msgid "Your absolute InnoDB log size is %s MiB" -msgstr "Din absolutte InnoDB logstørrelse er %s MiB" +msgstr "Din absolutte InnoDB-logstørrelse er %s MiB" #: po/advisory_rules.php:265 msgid "InnoDB buffer pool size" From ed96b32fbd40eea6d5b38c9961c9b981d75ac015 Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sun, 5 Aug 2012 07:29:45 +0530 Subject: [PATCH 70/79] missing html clos tags --- libraries/operations.lib.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 42c4db8224..5535dae976 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -122,6 +122,8 @@ function PMA_getHtmlForDropDatabaseLink($db) 'DROP_DATABASE', __('Drop the database (DROP)'), 'drop_db_anchor'); + $html_output .= '' + . ''; return $html_output; } From 6e09a158dff3ae01924a479457ec61a25acd6f6b Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sun, 5 Aug 2012 07:34:51 +0530 Subject: [PATCH 71/79] missing function parameter --- db_operations.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db_operations.php b/db_operations.php index 97561b1601..0bdb94f046 100644 --- a/db_operations.php +++ b/db_operations.php @@ -81,8 +81,8 @@ if (strlen($db) && (! empty($_REQUEST['db_rename']) || ! empty($_REQUEST['db_cop $tables_full, $export_sql_plugin, $move, $db ); - $views = PMA_getViewsAndCreateSqlViewStandIn( - $tables_full, $export_sql_plugin + $views = PMA_getViewsAndCreateSqlViewStandIn( + $tables_full, $export_sql_plugin, $db ); list($sql_query, $_error) = PMA_getSqlQueryForCopyTable( From ed8cc33285137c366ef637b968b4729e1795abea Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Sun, 5 Aug 2012 08:49:48 +0530 Subject: [PATCH 72/79] PMA_getQueryAndResultForReorderingTable() implementation and formatting --- libraries/operations.lib.php | 17 +++++++++++++++++ tbl_operations.php | 19 +++++++++---------- 2 files changed, 26 insertions(+), 10 deletions(-) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 5535dae976..d1196a5b46 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1372,4 +1372,21 @@ function PMA_getHtmlForReferentialIntegrityCheck($foreign, $url_params) return $html_output; } +function PMA_getQueryAndResultForReorderingTable() +{ + $common_functions = PMA_CommonFunctions::getInstance(); + + $sql_query = ' + ALTER TABLE ' . $common_functions->backquote($GLOBALS['table']) . ' + ORDER BY ' . $common_functions->backquote(urldecode($_REQUEST['order_field'])); + if (isset($_REQUEST['order_order']) && $_REQUEST['order_order'] === 'desc') { + $sql_query .= ' DESC'; + } + $sql_query .= ';'; + $result = PMA_DBI_query($sql_query); + + return array($sql_query, $result); +} + + ?> diff --git a/tbl_operations.php b/tbl_operations.php index bcba972afb..52e22eb36b 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -202,21 +202,20 @@ if (isset($_REQUEST['submitoptions'])) { * Reordering the table has been requested by the user */ if (isset($_REQUEST['submitorderby']) && ! empty($_REQUEST['order_field'])) { - $sql_query = ' - ALTER TABLE ' . $common_functions->backquote($GLOBALS['table']) . ' - ORDER BY ' . $common_functions->backquote(urldecode($_REQUEST['order_field'])); - if (isset($_REQUEST['order_order']) && $_REQUEST['order_order'] === 'desc') { - $sql_query .= ' DESC'; - } - $sql_query .= ';'; - $result = PMA_DBI_query($sql_query); + list($sql_query, $result) = PMA_getQueryAndResultForReorderingTable(); } // end if /** * A partition operation has been requested by the user */ -if (isset($_REQUEST['submit_partition']) && ! empty($_REQUEST['partition_operation'])) { - $sql_query = 'ALTER TABLE ' . $common_functions->backquote($GLOBALS['table']) . ' ' . $_REQUEST['partition_operation'] . ' PARTITION ' . $_REQUEST['partition_name'] . ';'; +if (isset($_REQUEST['submit_partition']) + && ! empty($_REQUEST['partition_operation']) +) { + $sql_query = 'ALTER TABLE ' + . $common_functions->backquote($GLOBALS['table']) . ' ' + . $_REQUEST['partition_operation'] + . ' PARTITION ' + . $_REQUEST['partition_name'] . ';'; $result = PMA_DBI_query($sql_query); } // end if From 78129140fd3d49510089c2d6311d01ffbbef5f7c Mon Sep 17 00:00:00 2001 From: Chanaka Indrajith Date: Sun, 5 Aug 2012 09:53:16 +0530 Subject: [PATCH 73/79] Code improvements related to VIEW transformations --- libraries/tbl_views.lib.php | 161 ++++++++++++++++++++++++++++++++++++ view_create.php | 105 +++-------------------- 2 files changed, 174 insertions(+), 92 deletions(-) create mode 100644 libraries/tbl_views.lib.php diff --git a/libraries/tbl_views.lib.php b/libraries/tbl_views.lib.php new file mode 100644 index 0000000000..4b94439e2e --- /dev/null +++ b/libraries/tbl_views.lib.php @@ -0,0 +1,161 @@ + 0) { + + for ($i=0; $itable; + $map['refering_column'] = $real_source_fields_meta[$i]->name; + + if (count($view_columns) > 1) { + $map['real_column'] = $view_columns[$i]; + } + + $column_map[] = $map; + + } + + } + + } + unset($real_source_result); + + return $column_map; + +} + + +/** + * Get existing data on tranformations applyed for + * columns in a particular table + * + * @param string $db Database name looking for + * + * @return mysqli_result Result of executed SQL query + */ +function PMA_getExistingTranformationData($db) +{ + + $common_functions = PMA_CommonFunctions::getInstance(); + $cfgRelation = PMA_getRelationsParam(); + + // Get the existing transformation details of the same database + // from pma_column_info table + $pma_transformation_sql = 'SELECT * FROM ' + . $common_functions->backquote($cfgRelation['db']) . '.' + . $common_functions->backquote($cfgRelation['column_info']) + . ' WHERE `db_name` = \'' + . $common_functions->sqlAddSlashes($db) . '\''; + + return PMA_DBI_try_query($pma_transformation_sql); + +} + + +/** + * Get SQL query for store new transformation details of a VIEW + * + * @param mysqli_result $pma_tranformation_data Result set of SQL execution + * @param array $column_map Details of VIEW columns + * @param string $view_name Name of the VIEW + * @param string $db Database name of the VIEW + * + * @return string $new_transformations_sql SQL query for new tranformations + */ +function PMA_getNewTransformationDataSql( + $pma_tranformation_data, $column_map, $view_name, $db +) { + + $common_functions = PMA_CommonFunctions::getInstance(); + $cfgRelation = PMA_getRelationsParam(); + + // Need to store new transformation details for VIEW + $new_transformations_sql = 'INSERT INTO ' + . $common_functions->backquote($cfgRelation['db']) . '.' + . $common_functions->backquote($cfgRelation['column_info']) + . ' (`db_name`, `table_name`, `column_name`, `comment`, ' + . '`mimetype`, `transformation`, `transformation_options`)' + . ' VALUES '; + + $column_count = 0; + $add_comma = false; + + while ($data_row = PMA_DBI_fetch_assoc($pma_tranformation_data)) { + + foreach ($column_map as $column) { + + if ($data_row['table_name'] == $column['table_name'] + && $data_row['column_name'] == $column['refering_column'] + ) { + + $new_transformations_sql .= $add_comma ? ', ' : ''; + + $new_transformations_sql .= '(' + . '\'' . $db . '\', ' + . '\'' . $view_name . '\', ' + . '\''; + + $new_transformations_sql .= (isset($column['real_column'])) + ? $column['real_column'] + : $column['refering_column']; + + $new_transformations_sql .= '\', ' + . '\'' . $data_row['comment'] . '\', ' + . '\'' . $data_row['mimetype'] . '\', ' + . '\'' . $data_row['transformation'] . '\', ' + . '\'' + . $common_functions->sqlAddSlashes( + $data_row['transformation_options'] + ) + . '\')'; + + $add_comma = true; + $column_count++; + break; + + } + + } + + if ($column_count == count($column_map)) { + break; + } + + } + + return ($column_count > 0) ? $new_transformations_sql : ''; + +} + + +?> diff --git a/view_create.php b/view_create.php index 76e4d88c1d..d5644fb275 100644 --- a/view_create.php +++ b/view_create.php @@ -64,111 +64,32 @@ if (isset($_REQUEST['createview'])) { if (PMA_DBI_try_query($sql_query)) { + require_once './libraries/tbl_views.lib.php'; + // If different column names defined for VIEW $view_columns = array(); if (isset($_REQUEST['view']['column_names'])) { $view_columns = explode(',', $_REQUEST['view']['column_names']); } - $column_map = array(); - // Select query which give results for VIEW - $real_source_result = PMA_DBI_try_query($_REQUEST['view']['as']); - - if ($real_source_result !== false) { - - $real_source_fields_meta = PMA_DBI_get_fields_meta($real_source_result); - - if (count($real_source_fields_meta) > 0) { - - for ($i=0; $itable; - $map['refering_column'] = $real_source_fields_meta[$i]->name; - - if (count($view_columns) > 1) { - $map['real_column'] = $view_columns[$i]; - } - - $column_map[] = $map; - - } - - } - - } - unset($real_source_result); - - // Get the existing transformation details of the same database - // from pma_column_info table - $pma_transformation_sql = 'SELECT * FROM ' - . $common_functions->backquote($cfgRelation['db']) . '.' - . $common_functions->backquote($cfgRelation['column_info']) - . ' WHERE `db_name` = \'' - . $common_functions->sqlAddSlashes($GLOBALS['db']) . '\''; - - $pma_tranformation_data = PMA_DBI_try_query($pma_transformation_sql); + $column_map = PMA_getColumnMap($_REQUEST['view']['as'], $view_columns); + $pma_tranformation_data = PMA_getExistingTranformationData($GLOBALS['db']); if ($pma_tranformation_data !== false) { - // Need to store new transformation details for VIEW - $new_transformations_sql = 'INSERT INTO ' - . $common_functions->backquote($cfgRelation['db']) . '.' - . $common_functions->backquote($cfgRelation['column_info']) - . ' (`db_name`, `table_name`, `column_name`, `comment`, ' - . '`mimetype`, `transformation`, `transformation_options`)' - . ' VALUES '; - - $column_count = 0; - $add_comma = false; - - while ($data_row = PMA_DBI_fetch_assoc($pma_tranformation_data)) { - - foreach ($column_map as $column) { - - if ($data_row['table_name'] == $column['table_name'] - && $data_row['column_name'] == $column['refering_column'] - ) { - - $new_transformations_sql .= $add_comma ? ', ' : ''; - - $new_transformations_sql .= '(' - . '\'' . $GLOBALS['db'] . '\', ' - . '\'' . $_REQUEST['view']['name'] . '\', ' - . '\''; - - $new_transformations_sql .= (isset($column['real_column'])) - ? $column['real_column'] - : $column['refering_column']; - - $new_transformations_sql .= '\', ' - . '\'' . $data_row['comment'] . '\', ' - . '\'' . $data_row['mimetype'] . '\', ' - . '\'' . $data_row['transformation'] . '\', ' - . '\'' - . $common_functions->sqlAddSlashes( - $data_row['transformation_options'] - ) - . '\')'; - - $add_comma = true; - $column_count++; - break; - - } - - } - - if ($column_count == count($column_map)) { - break; - } - - } + // SQL for store new transformation details of VIEW + $new_transformations_sql = PMA_getNewTransformationDataSql( + $pma_tranformation_data, $column_map, $_REQUEST['view']['name'], + $GLOBALS['db'] + ); // Store new transformations - PMA_DBI_try_query($new_transformations_sql); + if ($new_transformations_sql != '') { + PMA_DBI_try_query($new_transformations_sql); + } } + unset($pma_tranformation_data); if ($GLOBALS['is_ajax_request'] != true) { $message = PMA_Message::success(); From a3f1a92484035e77a7c40a3bd23632d47f63eb80 Mon Sep 17 00:00:00 2001 From: Aputsiaq Niels Janussen Date: Sun, 5 Aug 2012 02:30:36 +0200 Subject: [PATCH 74/79] Translated using Weblate. --- po/da.po | 142 ++++++++++++++++++++++++++++++------------------------- 1 file changed, 78 insertions(+), 64 deletions(-) diff --git a/po/da.po b/po/da.po index c1f0767520..1a23a1a72f 100644 --- a/po/da.po +++ b/po/da.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-07-27 10:40+0200\n" -"PO-Revision-Date: 2012-07-23 04:24+0200\n" +"PO-Revision-Date: 2012-08-05 02:30+0200\n" "Last-Translator: Aputsiaq Niels Janussen \n" -"Language-Team: danish \n" +"Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 #: libraries/DisplayResults.class.php:794 @@ -3450,24 +3450,32 @@ msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" +"En streng med variabel længde (%s). Den effektive, maksimale længde er " +"subjektet for din maksimale rækkestørrelse" #: libraries/Types.class.php:333 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" +"En TEXT-kolonne med en maksimal længde på 255 (2^8 - 1) tegn, lagret med et " +"præfiks på én byte, der indikerer længden af værdien i bytes" #: libraries/Types.class.php:335 libraries/Types.class.php:731 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" +"En TEXT-kolonne med en maksimal længde på 65.535 (2^16 - 1) tegn, lagret med " +"et præfiks på to bytes, der indikerer længden af værdien i bytes" #: libraries/Types.class.php:337 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" +"En TEXT-kolonne med en maksimal længde på 16.777.215 (2^24 - 1) tegn, lagret " +"med et præfiks på tre bytes, der indikerer længden af værdien i bytes" #: libraries/Types.class.php:339 msgid "" @@ -3475,12 +3483,17 @@ msgid "" "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" +"En TEXT-kolonne med en maksimal længde på 4.294.967.295 (2^32 - 1) tegn, " +"lagret med et præfiks på fire bytes, der indikerer længden af værdien i " +"bytes" #: libraries/Types.class.php:341 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" +"Ligner CHAR-typen, men lagrer binære byte-strenge i stedet for ikkebinære " +"tegnstrenge" #: libraries/Types.class.php:343 msgid "" @@ -3527,10 +3540,12 @@ msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" +"En optælling, udvalgt fra listen med op til 65.535 værdier eller den særlige " +"''-fejlværdi" #: libraries/Types.class.php:355 msgid "A single value chosen from a set of up to 64 members" -msgstr "" +msgstr "En enkelt værdi udvalgt fra et sæt på op til 64 medlemmer" #: libraries/Types.class.php:357 msgid "A type that can store a geometry of any type" @@ -4035,6 +4050,8 @@ msgid "" "Defines the minimum size for input fields generated for CHAR and VARCHAR " "columns" msgstr "" +"Definerer den mindste størrelse på input-felter som genereres for CHAR- og " +"VARCHAR-kolonner" #: libraries/config/messages.inc.php:37 msgid "Minimum size for input field" @@ -4045,6 +4062,8 @@ msgid "" "Defines the maximum size for input fields generated for CHAR and VARCHAR " "columns" msgstr "" +"Definerer den maksimale størrelse på input-felter som genereres for CHAR- og " +"VARCHAR-kolonner" #: libraries/config/messages.inc.php:39 msgid "Maximum size for input field" @@ -5377,6 +5396,8 @@ msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host" msgstr "" +"En alternativ vært til lageropbevaring af konfiguration; lad stå tom for at " +"benytte den vært som allerede er defineret" #: libraries/config/messages.inc.php:388 msgid "Control host" @@ -5460,6 +5481,8 @@ msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed" msgstr "" +"Begrænser antallet af tabel-præferencer som lagres i databasen. De ældte " +"poster fjernes automatisk" #: libraries/config/messages.inc.php:405 msgid "Maximal number of table preferences to store" @@ -5846,6 +5869,7 @@ msgstr "Vis SQL-forespørgsler" msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" +"Definerer som forespørgselsboksen skal forblive på siden efter indsendelse" #: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:377 msgid "Retain query box" @@ -6193,7 +6217,7 @@ msgstr "Serveren svarer ikke." #: libraries/database_interface.lib.php:1997 msgid "Please check privileges of directory containing database." -msgstr "" +msgstr "Tjek venligst privilegier for mappen som indeholder databasen." #: libraries/database_interface.lib.php:2006 msgid "Details..." @@ -6896,7 +6920,7 @@ msgstr "Relaterede links" #: libraries/engines/pbxt.lib.php:137 msgid "The PrimeBase XT Blog by Paul McCullagh" -msgstr "" +msgstr "Bloggen The PrimeBase XT af Paul McCullagh" #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." @@ -8523,7 +8547,6 @@ msgid "Trigger name" msgstr "Triggernavn" #: libraries/rte/rte_triggers.lib.php:334 -#, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" @@ -9490,7 +9513,7 @@ msgstr "Datalager" #: libraries/tbl_properties.inc.php:871 msgid "PARTITION definition" -msgstr "" +msgstr "PARTITION-definition" #: libraries/user_preferences.inc.php:29 msgid "Manage your settings" @@ -11289,7 +11312,6 @@ msgid "Using the monitor:" msgstr "Brug af monitor:" #: server_status.php:1704 -#, fuzzy #| msgid "" #| "Ok, you are good to go! Once you click 'Start monitor' your browser will " #| "refresh all displayed charts in a regular interval. You may add charts " @@ -11300,10 +11322,10 @@ msgid "" "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -"Når du klikker på 'Start monitor' vil din browser opdatere alle viste " -"diagrammer regelmæssigt. Du kan tilføje diagrammer og ændre " -"opdateringsfrekvensen under 'Indstilinger' eller fjerne diagrammer ved at " -"bruge ikonet cog på det relevante diagram. " +"Din browser vil opdatere alle viste diagrammer i et regelmæssigt interval. " +"Du kan tilføje diagrammer og ændre opdateringsfrekvensen under " +"'Indstillinger', eller fjerne hvilket som helst diagram ved at bruge ikonet " +"cog på det relevante diagram." #: server_status.php:1706 msgid "" @@ -11855,10 +11877,10 @@ msgstr "" "dette system." #: setup/lib/index.lib.php:344 -#, fuzzy #| msgid "You should use SSL connections if your web server supports it." msgid "You should use SSL connections if your database server supports it." -msgstr "Du bør bruge en SSL-forbindelse, hvis din webserver understøtter det. " +msgstr "" +"Du bør bruge SSL-forbindelser, hvis din database-server understøtter det." #: setup/lib/index.lib.php:359 msgid "You should use mysqli for performance reasons." @@ -11928,39 +11950,34 @@ msgid "The columns have been moved successfully." msgstr "De valgte brugere er blevet korrekt slettet." #: tbl_chart.php:83 -#, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" -msgstr "Søjle" +msgstr "Bjælke" #: tbl_chart.php:85 -#, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" -msgstr "Kolonnenavn" +msgstr "Kolonne" #: tbl_chart.php:87 -#, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "Linje" #: tbl_chart.php:89 -#, fuzzy #| msgid "Spline" msgctxt "Chart type" msgid "Spline" msgstr "Spline" #: tbl_chart.php:92 -#, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" -msgstr "Lagkage" +msgstr "Cirkel" #: tbl_chart.php:96 msgid "Stacked" @@ -11997,7 +12014,7 @@ msgstr "Y-værdier" #: tbl_create.php:31 #, php-format msgid "Table %s already exists!" -msgstr "" +msgstr "Tabellen %s eksisterer allerede!" #: tbl_create.php:230 #, php-format @@ -12061,10 +12078,9 @@ msgid "Add index" msgstr "Tilføj indeks" #: tbl_indexes.php:194 -#, fuzzy #| msgid "Edit mode" msgid "Edit index" -msgstr "Redigeringstilstand" +msgstr "Redigér indeks" #: tbl_indexes.php:206 msgid "Index name:" @@ -12202,10 +12218,9 @@ msgid "Check referential integrity:" msgstr "Check reference-integriteten:" #: tbl_printview.php:66 -#, fuzzy #| msgid "Show tables" msgid "Showing tables" -msgstr "Vis tabeller" +msgstr "Viser tabeller" #: tbl_printview.php:294 tbl_structure.php:833 msgid "Space usage" @@ -12855,10 +12870,10 @@ msgstr "" "sekund." #: libraries/advisory_rules.txt:160 -#, fuzzy, php-format +#, php-format #| msgid "Query cache efficiency (%)" msgid "Query cache efficiency (%%)" -msgstr "Effektivitet (%) af forespørgselsmellemlager " +msgstr "Effektiviteten af forespørgselsmellemlager (%%)" #: libraries/advisory_rules.txt:163 msgid "Query cache not running efficiently, it has a low hit rate." @@ -12962,7 +12977,7 @@ msgstr "" "og check resultatet." #: libraries/advisory_rules.txt:186 -#, fuzzy, php-format +#, php-format #| msgid "" #| "The ratio of removed queries to inserted queries is %s%%. The lower this " #| "value is, the better (This rules firing limit: 0.1%)" @@ -12971,7 +12986,7 @@ msgid "" "value is, the better (This rules firing limit: 0.1%%)" msgstr "" "Andelen af fjernede forespørgsler til indsatte forespørgsler er %s%%. Jo " -"mindre denne værdi er des bedre. (Denne regel aktiveres ved 0,1%)" +"mindre denne værdi er des bedre. (Denne regels aktiveringsgrænse: 0.1%%)" #: libraries/advisory_rules.txt:188 msgid "Query cache max size" @@ -13079,7 +13094,6 @@ msgid "There are lots of rows being sorted." msgstr "Der er mange rækker, der sorteres." #: libraries/advisory_rules.txt:222 -#, fuzzy #| msgid "" #| "there is nothing wrong with a high amount of row sorting, you might t to " #| "e sure that the queries which require a lot of sorting use exed fields " @@ -13090,9 +13104,10 @@ msgid "" "indexed columns in the ORDER BY clause, as this will result in much faster " "sorting" msgstr "" -"Selvom der intet er galt med en stor del rækkesorteringer, så bør " -"forespørgsler, som har brug for meget sortering bruge indekserede felter i " -"ORDER BY, da dette vil resultere i en meget hurtigere sortering." +"Selvom der intet er galt med en stor del rækkesorteringer, så bør du " +"eventuelt sikre, at forespørgsler som kræver meget sortering bruger " +"indekserede kolonner i klausulen ORDER BY, da dette vil resultere i en meget " +"hurtigere sortering" #: libraries/advisory_rules.txt:223 #, php-format @@ -13108,7 +13123,6 @@ msgid "There are too many joins without indexes." msgstr "Der er for mange joins uden indeks." #: libraries/advisory_rules.txt:230 -#, fuzzy #| msgid "" #| "eans that joins are doing full table scans. Adding indexes for the lds ng " #| "used in the join conditions will greatly speed up table joins" @@ -13117,8 +13131,8 @@ msgid "" "columns being used in the join conditions will greatly speed up table joins" msgstr "" "Dette betyder, at joins foretager en fuld tabelskanning. Oprettelse af " -"indeks for felter, der bruges i join-betingelserne vil forøge hastigheden af " -"joins." +"indeks for kolonner, der bruges i join-betingelserne vil forøge hastigheden " +"af tabel-joins" #: libraries/advisory_rules.txt:231 #, php-format @@ -13274,7 +13288,6 @@ msgid "Temp disk rate" msgstr "Frekvens af midlertidig disk" #: libraries/advisory_rules.txt:273 -#, fuzzy #| msgid "" #| "sing {max_heap_table_size} and {tmp_table_size} might help. However e " #| "porary tables are always being written to disk, independent of value of " @@ -13296,12 +13309,12 @@ msgstr "" "skrives nogle midlertidige tabeller altid til disk uafhængig af disse " "variable. For at undgå disse skal man omskrive sine forespørgsler for at " "undgå disse betingelser (inden for en midlertidig tabel: Tilstedeværelse af " -"BLOB eller TEXT felter eller et felt større end 512 bytes) som nævnt i MySQL Documentation" +"BLOB eller TEXT-kolonne eller en kolonne større end 512 bytes) som nævnt i " +"MySQL Documentation" #: libraries/advisory_rules.txt:274 -#, fuzzy, php-format +#, php-format #| msgid "" #| "f temporay tables being written to disk: %s, this value should be s than " #| "er hour" @@ -13309,8 +13322,8 @@ msgid "" "Rate of temporary tables being written to disk: %s, this value should be " "less than 1 per hour" msgstr "" -"Frekvens af midlertidige tabeller skrevet til disk: %s. Denne værdi bør være " -"mindre end 1 pr time" +"Frekvens af midlertidige tabeller som skrives til disk: %s. Denne værdi bør " +"være mindre end 1 pr time" #: libraries/advisory_rules.txt:289 msgid "MyISAM key buffer size" @@ -13355,24 +13368,24 @@ msgstr "" "indeks der bruges." #: libraries/advisory_rules.txt:301 -#, fuzzy, php-format +#, php-format #| msgid "" #| "max %% MyISAM key buffer ever used: %s, this value should be above 95%%" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "" -"maksimal %% MyISAM nøglebuffer nogensinde brugt: %s. Denne værdi bør være " -"over 95%%" +"maksimal %% MyISAM-nøglebuffer som nogensinde bruges: %s%%. Denne værdi bør " +"være over 95%%" #: libraries/advisory_rules.txt:304 msgid "Percentage of MyISAM key buffer used" msgstr "Procentdel brugt af MyISAM nøglebuffer" #: libraries/advisory_rules.txt:309 -#, fuzzy, php-format +#, php-format #| msgid "%% MyISAM key buffer used: %s, this value should be above 95%%" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "%% MyISAM nøglebuffer brugt: %s. Denne værdi bør være over 95%%" +msgstr "%% MyISAM-nøglebuffer som bruges: %s%%. Denne værdi bør være over 95%%" #: libraries/advisory_rules.txt:311 msgid "Percentage of index reads from memory" @@ -13692,7 +13705,7 @@ msgstr "" "buffer poolen." #: libraries/advisory_rules.txt:433 -#, fuzzy, php-format +#, php-format #| msgid "" #| "ally one a system with a lot of writes to InnoDB tables you should " #| "odb_log_file_size to 25%% of {innodb_buffer_pool_size}. However bigger s " @@ -13714,12 +13727,13 @@ msgid "" "fine. See also this blog entry" msgstr "" -"Særligt på et system med mange skrivninger til InnoDB tabeller bør " -"innodb_log_file_size sættes til 25%% af{innodb_buffer_pool_size}. Dog jo " +"Særligt på et system med mange skrivninger til InnoDB-tabeller bør " +"innodb_log_file_size sættes til 25%% af {innodb_buffer_pool_size}. Dog jo " "større værdi, jo længere er genoprettelsestiden ved databasenedbrud. Derfor " "bør værdien ikke være højere end 256 MiB. Bemærk, at man ikke bare kan ændre " -"denne værdi. Man skal lukke serveren ned, fjerne InnoDB logfiler, sætte den " -"nye værdi i my.cnf, starte serveren og checke logfiler for fejl. Se også dette blogindlæg" @@ -13741,7 +13755,7 @@ msgid "The InnoDB log file size is inadequately large." msgstr "InnoDB logfilen er utilstrækkelig stor." #: libraries/advisory_rules.txt:440 -#, fuzzy, php-format +#, php-format #| msgid "" #| "usually sufficient to set innodb_log_file_size to 25%% of the size " #| "nodb_buffer_pool_size}. A very innodb_log_file_size slows down the overy " @@ -13767,17 +13781,17 @@ msgstr "" "størrelsen af {innodb_buffer_pool_size}. En meget høj innodb_log_file_size " "reducerer genoprettelsestiden betydeligt efter et databasenedbrud. Se også " "denne artikel.Man skal lukke serveren ned, " -"fjerne InnoDB logfiler, sætte den nye værdi i my.cnf, starte serveren og " -"checke logfiler for fejl. Se også dette blogindlæg" +"innodb_log_file_size/\">denne artikel.Man skal lukke serveren ned, fjerne " +"InnoDB-logfiler, sætte den nye værdi i my.cnf, starte serveren og tjekke at " +"alt gik godt i fejllogene. Se også dette blogindlæg" #: libraries/advisory_rules.txt:441 -#, fuzzy, php-format +#, php-format #| msgid "Your absolute InnoD log size is %s MiB" msgid "Your absolute InnoDB log size is %s MiB" -msgstr "Din absolutte InnoDB logstørrelse er %s MiB" +msgstr "Din absolutte InnoDB-logstørrelse er %s MiB" #: libraries/advisory_rules.txt:443 msgid "InnoDB buffer pool size" From 4beb0442aee72ee1f2bfe3500acbfbc661fa7218 Mon Sep 17 00:00:00 2001 From: Chanaka Indrajith Date: Mon, 6 Aug 2012 06:43:16 +0530 Subject: [PATCH 75/79] Clear tranformation information when deleting Columns, VIEWs, Tables and Databses --- libraries/database_interface.lib.php | 27 +++++++++++++ libraries/mult_submits.inc.php | 12 ++++++ libraries/transformations.lib.php | 42 ++++++++++++++++++++ sql.php | 57 ++++++++++++++++++++++++++++ 4 files changed, 138 insertions(+) diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index 30b934a697..9902cf1e90 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -743,6 +743,33 @@ function PMA_DBI_get_tables_full($database, $table = false, } } + +/** + * Get VIEWs in a particular database + * + * @param string $db Database name to look in + * + * @return array $views Set of VIEWs inside the database + */ +function PMA_DBI_getVirtualTables($db) +{ + + $tables_full = PMA_DBI_get_tables_full($db); + $views = array(); + + foreach ($tables_full as $table=>$tmp) { + + if (PMA_Table::isView($db, $table)) { + $views[] = $table; + } + + } + + return $views; + +} + + /** * returns array with databases containing extended infos about them * diff --git a/libraries/mult_submits.inc.php b/libraries/mult_submits.inc.php index 680db4d2ac..3008805431 100644 --- a/libraries/mult_submits.inc.php +++ b/libraries/mult_submits.inc.php @@ -8,6 +8,8 @@ if (! defined('PHPMYADMIN')) { exit; } +require_once 'libraries/transformations.lib.php'; + $common_functions = PMA_CommonFunctions::getInstance(); $request_params = array( @@ -137,6 +139,7 @@ if (! empty($submit_mult) } } // end if +$views = PMA_DBI_getVirtualTables($db); /** * Displays the confirmation form if required @@ -487,6 +490,15 @@ if (!empty($submit_mult) && !empty($what)) { PMA_DBI_select_db($db); } $result = PMA_DBI_query($a_query); + + if ($query_type == 'drop_db') { + PMA_clearTransformations($selected[$i]); + } elseif ($query_type == 'drop_tbl') { + PMA_clearTransformations($db, $selected[$i]); + } else if ($query_type == 'drop_fld') { + PMA_clearTransformations($db, $table ,$selected[$i]); + } + } // end if } // end for diff --git a/libraries/transformations.lib.php b/libraries/transformations.lib.php index a653570d93..561406e0eb 100644 --- a/libraries/transformations.lib.php +++ b/libraries/transformations.lib.php @@ -365,4 +365,46 @@ function PMA_transformation_global_html_replace($buffer, $options = array()) $return = str_replace("[__BUFFER__]", $buffer, $options['string']); return $return; } + + +/** + * Delete related transformation details + * after deleting database. table or column + * + * @param string $db Database name + * @param string $table Table name + * @param string $column Column name + * + * @return boolean State of the query execution + */ +function PMA_clearTransformations($db, $table = '', $column = '') +{ + + $common_functions = PMA_CommonFunctions::getInstance(); + $cfgRelation = PMA_getRelationsParam(); + + $delete_sql = 'DELETE FROM ' + . $common_functions->backquote($cfgRelation['db']) . '.' + . $common_functions->backquote($cfgRelation['column_info']) + . ' WHERE '; + + if (($column != '') && ($table != '')) { + + $delete_sql .= '`db_name` = \'' . $db . '\' AND ' + . '`table_name` = \'' . $table . '\' AND ' + . '`column_name` = \'' . $column . '\' '; + + } else if ($table != '') { + + $delete_sql .= '`db_name` = \'' . $db . '\' AND ' + . '`table_name` = \'' . $table . '\' '; + + } else { + $delete_sql .= '`db_name` = \'' . $db . '\' '; + } + + return PMA_DBI_try_query($delete_sql); + +} + ?> diff --git a/sql.php b/sql.php index 5c2344e681..ac2e362823 100644 --- a/sql.php +++ b/sql.php @@ -766,6 +766,34 @@ if (isset($GLOBALS['show_as_php']) || ! empty($GLOBALS['validatequery'])) { // No rows returned -> move back to the calling page if ((0 == $num_rows && 0 == $unlim_num_rows) || $is_affected) { + + // Delete related tranformation information + if (!empty($analyzed_sql[0]['querytype']) + && (($analyzed_sql[0]['querytype'] == 'ALTER') + || ($analyzed_sql[0]['querytype'] == 'DROP')) + ) { + + require_once 'libraries/transformations.lib.php'; + if ($analyzed_sql[0]['querytype'] == 'ALTER') { + + if (stripos($analyzed_sql[0]['unsorted_query'], 'DROP') !== false) { + + $drop_column = PMA_getColumnNameInColumnDropSql( + $analyzed_sql[0]['unsorted_query'] + ); + + if ($drop_column != '') { + PMA_clearTransformations($db, $table, $drop_column); + } + + } + + } else if (($analyzed_sql[0]['querytype'] == 'DROP') && ($table != '')) { + PMA_clearTransformations($db, $table); + } + + } + if ($is_delete) { $message = PMA_Message::deleted_rows($num_rows); } elseif ($is_insert) { @@ -1472,5 +1500,34 @@ function PMA_getSqlWithLimitClause($full_sql_query, $analyzed_sql, $sql_limit_to return $analyzed_sql[0]['section_before_limit'] . "\n" . $sql_limit_to_append . $analyzed_sql[0]['section_after_limit']; } + + +/** + * Get column name from a drop SQL statement + * + * @param string $sql SQL query + * + * @return string $drop_column Name of the column + */ +function PMA_getColumnNameInColumnDropSql($sql) +{ + + $tmpArray1 = explode('DROP', $sql); + $str_to_check = trim($tmpArray1[1]); + + if (stripos($str_to_check, 'COLUMN') !== false) { + $tmpArray2 = explode('COLUMN', $str_to_check); + $str_to_check = trim($tmpArray2[1]); + } + + $tmpArray3 = explode(' ', $str_to_check); + $str_to_check = trim($tmpArray3[0]); + + $drop_column = str_replace(';', '', trim($str_to_check)); + $drop_column = str_replace('`', '', $drop_column); + + return $drop_column; + +} ?> From 53f96bd760ee1b1a89db397f71962152764c9a07 Mon Sep 17 00:00:00 2001 From: "J.M" Date: Mon, 6 Aug 2012 09:20:07 +0200 Subject: [PATCH 76/79] bug #3546277 [core] Call to undefined function __() when config file has wrong permissions --- ChangeLog | 3 ++- libraries/Config.class.php | 2 -- libraries/common.inc.php | 2 ++ 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 00919acfc1..452ff5e1a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,7 +12,8 @@ phpMyAdmin - ChangeLog - bug #3547825 [edit] BLOB download no longer works - bug #3541966 [config] Error in generated configuration arrray - bug #3553551 [GUI] Invalid HTML code in multi submits confirmation form -[interface] Designer sometimes places tables on the top menu +- [interface] Designer sometimes places tables on the top menu +- bug #3546277 [core] Call to undefined function __() when config file has wrong permissions 3.5.2.1 (2012-08-03) - [security] Fixed local path disclosure vulnerability, see PMASA-2012-3 diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 7244312db6..ac67f39725 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -445,8 +445,6 @@ class PMA_Config $this->checkPmaAbsoluteUri(); $this->checkFontsize(); - $this->checkPermissions(); - // Handling of the collation must be done after merging of $cfg // (from config.inc.php) so that $cfg['DefaultConnectionCollation'] // can have an effect. Note that the presence of collation diff --git a/libraries/common.inc.php b/libraries/common.inc.php index 72368b7e5d..c0d52dea43 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -618,6 +618,8 @@ require './libraries/select_lang.lib.php'; * check for errors occurred while loading configuration * this check is done here after loading language files to present errors in locale */ +$GLOBALS['PMA_Config']->checkPermissions(); + if ($GLOBALS['PMA_Config']->error_config_file) { $error = '

    ' . __('Failed to read configuration file') . '

    ' . _('This usually means there is a syntax error in it, please check any errors shown below.') From b024d858b8062b4ae0b0544dab3b9fa70207b413 Mon Sep 17 00:00:00 2001 From: Aputsiaq Niels Janussen Date: Sun, 5 Aug 2012 01:39:37 +0200 Subject: [PATCH 77/79] Translated using Weblate. --- po/da.po | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/po/da.po b/po/da.po index 3d47785aaf..0ca8df410f 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-04 13:42+0200\n" -"PO-Revision-Date: 2012-08-05 01:36+0200\n" +"PO-Revision-Date: 2012-08-05 01:39+0200\n" "Last-Translator: Aputsiaq Niels Janussen \n" "Language-Team: Danish \n" "Language: da\n" @@ -5291,7 +5291,7 @@ msgid "" "possible) or keep the text field empty" msgstr "" "Foreslå et databasenavn på formularen for "Opret database" (hvis " -"muligt) eller lad feltet være tomt " +"muligt) eller lad feltet være tomt" #: libraries/config/messages.inc.php:496 msgid "Suggest new database name" @@ -6248,7 +6248,7 @@ msgstr "" #: libraries/engines/pbms.lib.php:30 msgid "Garbage Threshold" -msgstr "Tærskel for garbage " +msgstr "Tærskel for garbage" #: libraries/engines/pbms.lib.php:31 msgid "The percentage of garbage in a repository file before it is compacted." @@ -6267,7 +6267,7 @@ msgid "" "will disable HTTP communication with the daemon." msgstr "" "Porten for PBMS stream-baseret kommunikation. Sættes denne værdi til 0 vil " -"HTTP-kommunikation med dæmonen deaktiveres. " +"HTTP-kommunikation med dæmonen deaktiveres." #: libraries/engines/pbms.lib.php:40 msgid "Repository Threshold" @@ -6281,7 +6281,7 @@ msgid "" msgstr "" "Den maksimale størrelse af en BLOB repositoryfil. Du kan bruge Kb, MB eller " "GB for at angive værdiens enhed. En værdi i bytes antages, når ingen enhed " -"angives" +"angives." #: libraries/engines/pbms.lib.php:45 msgid "Temp Blob Timeout" @@ -6307,7 +6307,7 @@ msgid "" msgstr "" "Den maksimale størrelse af en midlertidig BLOB logfil. Du kan bruge Kb, MB " "eller GB for at angive værdiens enhed. En værdi i bytes antages, når ingen " -"enhed angives" +"enhed angives." #: libraries/engines/pbms.lib.php:55 msgid "Max Keep Alive" @@ -8597,10 +8597,11 @@ msgid "" "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" -"Din PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] er mindre end cooki " -"gyldighed konfigureret i phpMyAdmin; på grund af dette vil din login session " -"udløbe tidligere end konfigureret i phpMyAdmin" +"Din PHP parameter " +"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" +"maxlifetime@_blank]session.gc_maxlifetime[/a] er mindre end cooki gyldighed " +"konfigureret i phpMyAdmin; på grund af dette vil din login session udløbe " +"tidligere end konfigureret i phpMyAdmin." #: main.php:299 msgid "" From 7e0028e4afab115a89a18c1257c6132aa123fd25 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 6 Aug 2012 21:44:16 +0530 Subject: [PATCH 78/79] bug #3540922 [edit] Error searching table with many fields --- ChangeLog | 1 + js/tbl_select.js | 34 +++++++++++++++++++++++++++++++++- tbl_select.php | 6 +++--- 3 files changed, 37 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 452ff5e1a7..b88ef558a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,7 @@ phpMyAdmin - ChangeLog - bug #3553551 [GUI] Invalid HTML code in multi submits confirmation form - [interface] Designer sometimes places tables on the top menu - bug #3546277 [core] Call to undefined function __() when config file has wrong permissions +- bug #3540922 [edit] Error searching table with many fields 3.5.2.1 (2012-08-03) - [security] Fixed local path disclosure vulnerability, see PMASA-2012-3 diff --git a/js/tbl_select.js b/js/tbl_select.js index ba144959a4..f0558dcae1 100644 --- a/js/tbl_select.js +++ b/js/tbl_select.js @@ -53,7 +53,39 @@ $(document).ready(function() { PMA_prepareForAjaxRequest($search_form); - $.post($search_form.attr('action'), $search_form.serialize(), function(response) { + var values = {}; + $search_form.find(':input').each(function() { + var $input = $(this); + if ($input.attr('type') == 'checkbox' || $input.attr('type') == 'radio') { + if ($input.is(':checked')) { + values[this.name] = $input.val(); + } + } else { + values[this.name] = $input.val(); + } + }); + var columnCount = $('select[name="param[]"] option').length; + // Submit values only for the columns that have a search criteria + for (var a = 0; a < columnCount; a++) { + if (values['fields[' + a + ']'] == '') { + delete values['fields[' + a + ']']; + delete values['func[' + a + ']']; + delete values['names[' + a + ']']; + delete values['types[' + a + ']']; + delete values['collations[' + a + ']']; + } + } + // If all columns are selected, use a single parameter to indicate that + if (values['param[]'] != null) { + if (values['param[]'].length == columnCount) { + delete values['param[]']; + values['displayAllColumns'] = true; + } + } else { + values['displayAllColumns'] = true; + } + + $.post($search_form.attr('action'), values, function(response) { PMA_ajaxRemoveMessage($msgbox); if (typeof response == 'string') { // found results diff --git a/tbl_select.php b/tbl_select.php index 81ca73403a..5e5114feee 100644 --- a/tbl_select.php +++ b/tbl_select.php @@ -33,7 +33,7 @@ $geom_types = PMA_getGISDatatypes(); /** * Not selection yet required -> displays the selection form */ -if (! isset($param) || $param[0] == '') { +if ((! isset($param) || $param[0] == '') && ! isset($displayAllColumns)) { // Gets some core libraries include_once './libraries/tbl_common.php'; //$err_url = 'tbl_select.php' . $err_url; @@ -117,7 +117,7 @@ echo PMA_generate_html_tabs(PMA_tbl_getSubTabs(), $url_params, '', 'topmenu2');
  • -